Skip to content

Commit 9fa8d7f

Browse files
committed
avoid dependency on older tokios
1 parent b03fe7c commit 9fa8d7f

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

.cargo/config.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[alias]
2-
chk = "check --workspace --all-features --tests --examples --bins"
32
lint = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
43

54
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"

actix-codec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ futures-core = { version = "0.3.7", default-features = false }
2020
futures-sink = { version = "0.3.7", default-features = false }
2121
log = "0.4"
2222
pin-project-lite = "0.2"
23-
tokio = "1"
23+
tokio = "1.5.1"
2424
tokio-util = { version = "0.6", features = ["codec", "io"] }

actix-rt/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ authors = [
88
description = "Tokio-based single-threaded async runtime for the Actix ecosystem"
99
keywords = ["async", "futures", "io", "runtime"]
1010
homepage = "https://actix.rs"
11-
repository = "https://github.com/actix/actix-net"
12-
documentation = "https://docs.rs/actix-rt"
11+
repository = "https://github.com/actix/actix-net.git"
1312
categories = ["network-programming", "asynchronous"]
1413
license = "MIT OR Apache-2.0"
1514
edition = "2018"
@@ -27,11 +26,11 @@ io-uring = ["tokio-uring"]
2726
actix-macros = { version = "0.2.0", optional = true }
2827

2928
futures-core = { version = "0.3", default-features = false }
30-
tokio = { version = "1.3", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
29+
tokio = { version = "1.5.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
3130

3231
[target.'cfg(target_os = "linux")'.dependencies]
3332
tokio-uring = { version = "0.1", optional = true }
3433

3534
[dev-dependencies]
36-
tokio = { version = "1.2", features = ["full"] }
35+
tokio = { version = "1.5.1", features = ["full"] }
3736
hyper = { version = "0.14", default-features = false, features = ["server", "tcp", "http1"] }

actix-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
description = "General purpose TCP server built for the Actix ecosystem"
99
keywords = ["network", "framework", "async", "futures"]
10-
repository = "https://github.com/actix/actix-net"
10+
repository = "https://github.com/actix/actix-net.git"
1111
categories = ["network-programming", "asynchronous"]
1212
license = "MIT OR Apache-2.0"
1313
edition = "2018"
@@ -29,13 +29,13 @@ futures-core = { version = "0.3.7", default-features = false, features = ["alloc
2929
log = "0.4"
3030
mio = { version = "0.7.6", features = ["os-poll", "net"] }
3131
num_cpus = "1.13"
32-
tokio = { version = "1.2", features = ["sync"] }
32+
tokio = { version = "1.5.1", features = ["sync"] }
3333

3434
[dev-dependencies]
3535
actix-codec = "0.4.0-beta.1"
3636
actix-rt = "2.0.0"
3737

3838
bytes = "1"
39-
env_logger = "0.8"
39+
env_logger = "0.9"
4040
futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }
41-
tokio = { version = "1", features = ["io-util"] }
41+
tokio = { version = "1.5.1", features = ["io-util"] }

local-channel/Cargo.toml

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

2020
[dev-dependencies]
21-
tokio = { version = "1", features = ["rt", "macros"] }
21+
tokio = { version = "1.5.1", features = ["rt", "macros"] }

0 commit comments

Comments
 (0)