Skip to content

Commit 80320a0

Browse files
committed
use secure tokio version range
1 parent 6d0dc96 commit 80320a0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

actix-codec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures-core = { version = "0.3.7", default-features = false }
2020
futures-sink = { version = "0.3.7", default-features = false }
2121
memchr = "2.3"
2222
pin-project-lite = "0.2"
23-
tokio = "1.18.4"
23+
tokio = "1.23.1"
2424
tokio-util = { version = "0.7", features = ["codec", "io"] }
2525
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
2626

actix-rt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ io-uring = ["tokio-uring"]
2323
actix-macros = { version = "0.2.3", optional = true }
2424

2525
futures-core = { version = "0.3", default-features = false }
26-
tokio = { version = "1.18.4", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
26+
tokio = { version = "1.23.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
2727

2828
# runtime for `io-uring` feature
2929
[target.'cfg(target_os = "linux")'.dependencies]
3030
tokio-uring = { version = "0.4", optional = true }
3131

3232
[dev-dependencies]
33-
tokio = { version = "1.18.4", features = ["full"] }
33+
tokio = { version = "1.23.1", features = ["full"] }
3434
hyper = { version = "0.14.10", default-features = false, features = ["server", "tcp", "http1"] }

actix-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ futures-util = { version = "0.3.17", default-features = false, features = ["allo
2929
mio = { version = "0.8", features = ["os-poll", "net"] }
3030
num_cpus = "1.13"
3131
socket2 = "0.4.2"
32-
tokio = { version = "1.18.4", features = ["sync"] }
32+
tokio = { version = "1.23.1", features = ["sync"] }
3333
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
3434

3535
# runtime for `io-uring` feature
@@ -43,4 +43,4 @@ actix-rt = "2.8"
4343
bytes = "1"
4444
env_logger = "0.10"
4545
futures-util = { version = "0.3.17", default-features = false, features = ["sink", "async-await-macro"] }
46-
tokio = { version = "1.18.4", features = ["io-util", "rt-multi-thread", "macros", "fs"] }
46+
tokio = { version = "1.23.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }

actix-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ actix-utils = "3"
4646
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
4747
impl-more = "0.1"
4848
pin-project-lite = "0.2.7"
49-
tokio = "1.18.4"
49+
tokio = "1.23.1"
5050
tokio-util = "0.7"
5151
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
5252

local-channel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ futures-util = { version = "0.3.17", default-features = false }
1919
local-waker = "0.1"
2020

2121
[dev-dependencies]
22-
tokio = { version = "1.18.4", features = ["rt", "macros"] }
22+
tokio = { version = "1.23.1", features = ["rt", "macros"] }

0 commit comments

Comments
 (0)