diff --git a/Cargo.lock b/Cargo.lock index 0d1aa28..bde30aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1634,9 +1634,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.18.2" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395" +checksum = "0f392c8f16bda3456c0b00c6de39cb100449b98de55ac41c6cdd2bfcf53a1245" dependencies = [ "bytes", "libc", diff --git a/core/Cargo.toml b/core/Cargo.toml index 778e682..1d75ede 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.18.2", features = ["full"] } +tokio = { version = "1.19.0", 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 001da75..105e116 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.18.2", features = ["full"] } +tokio = { version = "1.19.0", features = ["full"] }