diff --git a/rust/Cargo.lock b/rust/Cargo.lock index c6d9c7f8d..59b7a2192 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2315,9 +2315,9 @@ dependencies = [ [[package]] name = "pin-project-lite" -version = "0.2.10" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -3396,11 +3396,10 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.29.1" +version = "1.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" +checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" dependencies = [ - "autocfg", "backtrace", "bytes", "libc", @@ -3409,7 +3408,7 @@ dependencies = [ "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2 0.4.9", + "socket2 0.5.3", "tokio-macros", "windows-sys 0.48.0", ] diff --git a/rust/connlib/libs/client/Cargo.toml b/rust/connlib/libs/client/Cargo.toml index d51af65f5..ddbcfafbe 100644 --- a/rust/connlib/libs/client/Cargo.toml +++ b/rust/connlib/libs/client/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" mock = ["libs-common/mock"] [dependencies] -tokio = { version = "1.27", default-features = false, features = ["sync"] } +tokio = { version = "1.32", default-features = false, features = ["sync"] } tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] } async-trait = { version = "0.1", default-features = false } libs-common = { path = "../common" } diff --git a/rust/connlib/libs/common/Cargo.toml b/rust/connlib/libs/common/Cargo.toml index d5bd528f9..54f564ed6 100644 --- a/rust/connlib/libs/common/Cargo.toml +++ b/rust/connlib/libs/common/Cargo.toml @@ -19,7 +19,7 @@ uuid = { version = "1.4", default-features = false, features = ["std", "v4", "se thiserror = { version = "1.0", default-features = false } tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] } serde_json = { version = "1.0", default-features = false, features = ["std"] } -tokio = { version = "1.28", default-features = false, features = ["rt", "rt-multi-thread"]} +tokio = { version = "1.32", default-features = false, features = ["rt", "rt-multi-thread"]} url = { version = "2.3.1", default-features = false } rand_core = { version = "0.6.4", default-features = false, features = ["std"] } async-trait = { version = "0.1", default-features = false } diff --git a/rust/connlib/libs/gateway/Cargo.toml b/rust/connlib/libs/gateway/Cargo.toml index 5e5f3ecc4..70c2e7526 100644 --- a/rust/connlib/libs/gateway/Cargo.toml +++ b/rust/connlib/libs/gateway/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" libs-common = { path = "../common" } async-trait = { version = "0.1", default-features = false } firezone-tunnel = { path = "../tunnel" } -tokio = { version = "1.27", default-features = false, features = ["sync"] } +tokio = { version = "1.32", default-features = false, features = ["sync"] } tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } boringtun = { workspace = true } diff --git a/rust/connlib/libs/tunnel/Cargo.toml b/rust/connlib/libs/tunnel/Cargo.toml index 3f38646c7..3dde015d8 100644 --- a/rust/connlib/libs/tunnel/Cargo.toml +++ b/rust/connlib/libs/tunnel/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] async-trait = { version = "0.1", default-features = false } -tokio = { version = "1.27", default-features = false, features = ["rt", "rt-multi-thread", "sync"] } +tokio = { version = "1.32", default-features = false, features = ["rt", "rt-multi-thread", "sync"] } thiserror = { version = "1.0", default-features = false } rand_core = { version = "0.6", default-features = false, features = ["getrandom"] } serde = { version = "1.0", default-features = false, features = ["derive", "std"] } diff --git a/rust/phoenix-channel/Cargo.toml b/rust/phoenix-channel/Cargo.toml index ce69a5af5..44537027d 100644 --- a/rust/phoenix-channel/Cargo.toml +++ b/rust/phoenix-channel/Cargo.toml @@ -15,4 +15,4 @@ rand_core = "0.6.4" url = "2.4.0" serde_json = "1.0.104" thiserror = "1.0.47" -tokio = { version = "1.28.2", features = ["net", "time"] } +tokio = { version = "1.32.0", features = ["net", "time"] } diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 03fbcb270..56471fc0c 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -12,7 +12,7 @@ hex = "0.4.3" hex-literal = "0.4.1" rand = "0.8.5" stun_codec = "0.3.1" -tokio = { version = "1.28.0", features = ["macros", "rt-multi-thread", "net", "time"] } +tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread", "net", "time"] } tracing = { version = "0.1.37", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } tracing-stackdriver = "0.7.2"