diff --git a/Cargo.lock b/Cargo.lock index ef87a89e..e81404ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1479,9 +1479,9 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "libc" -version = "0.2.148" +version = "0.2.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" +checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" [[package]] name = "libloading" @@ -1580,9 +1580,9 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" +checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" dependencies = [ "libc", "log", @@ -2392,9 +2392,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" +checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" dependencies = [ "libc", "windows-sys", @@ -2549,9 +2549,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.33.0" +version = "1.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" +checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" dependencies = [ "backtrace", "bytes", @@ -2561,16 +2561,16 @@ dependencies = [ "parking_lot 0.12.1", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.4", + "socket2 0.5.5", "tokio-macros", "windows-sys", ] [[package]] name = "tokio-macros" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index a4aa7c43..fc044ab7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ num_cpus = "1.16" ring = "0.17" data-encoding = "2.4" regex = "1.10" -tokio = {version="1.33", features=["full"]} +tokio = {version="1.34", features=["full"]} dirs = "5.0" csv = "1.3" diff --git a/crates/async-tar/Cargo.toml b/crates/async-tar/Cargo.toml index f9b32686..06352943 100644 --- a/crates/async-tar/Cargo.toml +++ b/crates/async-tar/Cargo.toml @@ -7,11 +7,11 @@ edition = "2021" [dependencies] tar="0.4" futures="0.3" -tokio={version="1.33", features=["fs"]} +tokio={version="1.34", features=["fs"]} [dev-dependencies] tempfile="3.8" bytes = "1.5" tokio-util = {version="0.7", features=["codec"]} -tokio={version="1.33", features=["macros", "rt"]} +tokio={version="1.34", features=["macros", "rt"]} diff --git a/crates/async-zip/Cargo.toml b/crates/async-zip/Cargo.toml index af3cd270..4a670fbe 100644 --- a/crates/async-zip/Cargo.toml +++ b/crates/async-zip/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] futures = "0.3" -tokio = {version="1.33", features=["full"]} +tokio = {version="1.34", features=["full"]} bytes = "1.5" chrono = "0.4" thiserror = "1.0" diff --git a/crates/file-cache/Cargo.toml b/crates/file-cache/Cargo.toml index 82c6f64b..782b5e20 100644 --- a/crates/file-cache/Cargo.toml +++ b/crates/file-cache/Cargo.toml @@ -12,7 +12,7 @@ thiserror ="1.0" log = "0.4" byteorder = "1.5" -tokio = { version="1.33", optional=true, features=[ "rt", "fs"] } +tokio = { version="1.34", optional=true, features=[ "rt", "fs"] } [features] @@ -21,6 +21,6 @@ asynch = ["tokio"] [dev-dependencies] env_logger = "0.10" tempfile ="3.8" -tokio = { version="1.33", features=["io-util", "macros",] } +tokio = { version="1.34", features=["io-util", "macros",] } diff --git a/crates/leaky-cauldron/Cargo.toml b/crates/leaky-cauldron/Cargo.toml index 1263ad11..96ba173c 100644 --- a/crates/leaky-cauldron/Cargo.toml +++ b/crates/leaky-cauldron/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] [dev-dependencies] -tokio={version="1.33", features=["macros", "test-util", "rt-multi-thread"]} \ No newline at end of file +tokio={version="1.34", features=["macros", "test-util", "rt-multi-thread"]} \ No newline at end of file diff --git a/crates/websock/Cargo.toml b/crates/websock/Cargo.toml index 51e097cd..874ffdc3 100644 --- a/crates/websock/Cargo.toml +++ b/crates/websock/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] hyper = "0.14" -tokio = {version="1.33", features=["rt-multi-thread", "time"]} +tokio = {version="1.34", features=["rt-multi-thread", "time"]} futures = "0.3" log = "0.4" tokio-tungstenite = "0.20" @@ -17,4 +17,4 @@ headers = "0.3" [dev-dependencies] env_logger = "0.10" hyper = {version="0.14", features=["server", "http1", "http2", "tcp"]} -tokio = {version="1.33", features=["macros", "io-util", "fs"]} \ No newline at end of file +tokio = {version="1.34", features=["macros", "io-util", "fs"]} \ No newline at end of file