diff --git a/Cargo.lock b/Cargo.lock index 68f4cd9..6897d91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1634,9 +1634,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.1" +version = "1.19.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95eec79ea28c00a365f539f1961e9278fbcaf81c0ff6aaf0e93c181352446948" +checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" dependencies = [ "bytes", "libc", diff --git a/core/Cargo.toml b/core/Cargo.toml index 5300eda..b15a73a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,7 +16,7 @@ path = "./src/main.rs" [dependencies] better-panic = "0.3.0" simplelog = "0.12.0" -tokio = { version = "1.19.1", features = ["full"] } +tokio = { version = "1.19.2", features = ["full"] } log = { version = "0.4.17", features = ["max_level_debug", "release_max_level_warn"] } homedisk-database = { path = "../database" } homedisk-server = { path = "../server" } diff --git a/database/Cargo.toml b/database/Cargo.toml index e6fbbf0..49be4ac 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -13,4 +13,4 @@ rust_utilities = { version = "0.2.0", features = ["sha"] } homedisk-types = { path = "../types", features = ["database"] } [dev-dependencies] -tokio = { version = "1.19.1", features = ["full"] } +tokio = { version = "1.19.2", features = ["full"] }