diff --git a/Cargo.lock b/Cargo.lock index 86272b221f4..5a1e867e29d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3072,9 +3072,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.23.0" +version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46" +checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index ebd475a5794..6c5932db64a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ tar = "=0.4.38" tempfile = "=3.3.0" thiserror = "=1.0.38" threadpool = "=1.8.1" -tokio = { version = "=1.23.0", features = ["net", "signal", "io-std", "io-util", "rt-multi-thread", "macros"]} +tokio = { version = "=1.23.1", features = ["net", "signal", "io-std", "io-util", "rt-multi-thread", "macros"]} toml = "=0.5.10" tower = "=0.4.13" tower-http = { version = "=0.3.5", features = ["fs"] } @@ -90,7 +90,7 @@ claims = "=0.7.1" conduit-test = { path = "conduit-test" } hyper-tls = "=0.5.0" insta = { version = "=1.24.1", features = ["redactions", "yaml"] } -tokio = "=1.23.0" +tokio = "=1.23.1" tower-service = "=0.3.2" [build-dependencies] diff --git a/conduit-axum/Cargo.toml b/conduit-axum/Cargo.toml index c2e2fbc2a4b..7f9d3adfe96 100644 --- a/conduit-axum/Cargo.toml +++ b/conduit-axum/Cargo.toml @@ -17,11 +17,11 @@ percent-encoding = "=2.2.0" sentry-core = { version = "=0.29.1", features = ["client"] } thiserror = "=1.0.38" tracing = "=0.1.37" -tokio = { version = "=1.23.0", features = ["fs"] } +tokio = { version = "=1.23.1", features = ["fs"] } tokio-stream = "=0.1.11" [dev-dependencies] futures-util = "=0.3.25" hyper = { version = "=0.14.23", features = ["client"] } -tokio = { version = "=1.23.0", features = ["macros", "rt-multi-thread"] } +tokio = { version = "=1.23.1", features = ["macros", "rt-multi-thread"] } tracing-subscriber = "=0.3.16"