Skip to content

Commit 1386776

Browse files
authored
Merge pull request #1019 from rukai/remove_tokio_version_bounds
Remove tokio version bounds
2 parents f68197d + 568eaf4 commit 1386776

File tree

5 files changed

+21
-27
lines changed

5 files changed

+21
-27
lines changed

Cargo.lock.msrv

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ scylla = { path = "../scylla", features = [
1919
"num-bigint-04",
2020
"bigdecimal-04",
2121
] }
22-
# FIXME: Remove <1.38 once https://github.com/tokio-rs/tokio/issues/6610 is fixed
23-
tokio = { version = ">=1.34, <1.38", features = ["full"] }
22+
tokio = { version = "1.34", features = ["full"] }
2423
tracing = { version = "0.1.25", features = ["log"] }
2524
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
2625
chrono = { version = "0.4", default-features = false }

scylla-cql/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ license = "MIT OR Apache-2.0"
1313
scylla-macros = { version = "0.5.0", path = "../scylla-macros" }
1414
byteorder = "1.3.4"
1515
bytes = "1.0.1"
16-
# FIXME: Remove <1.38 once https://github.com/tokio-rs/tokio/issues/6610 is fixed
17-
tokio = { version = ">=1.34, <1.38", features = ["io-util", "time"] }
16+
tokio = { version = "1.34", features = ["io-util", "time"] }
1817
secrecy-08 = { package = "secrecy", version = "0.8", optional = true }
1918
snap = "1.0"
2019
uuid = "1.0"

scylla-proxy/Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ scylla-cql = { version = "0.2.0", path = "../scylla-cql" }
1717
byteorder = "1.3.4"
1818
bytes = "1.2.0"
1919
futures = "0.3.6"
20-
# FIXME: Remove <1.38 once https://github.com/tokio-rs/tokio/issues/6610 is fixed
21-
tokio = { version = ">=1.34, <1.38", features = [
20+
tokio = { version = "1.34", features = [
2221
"net",
2322
"time",
2423
"io-util",
@@ -37,10 +36,9 @@ rand = "0.8.5"
3736

3837
[dev-dependencies]
3938
assert_matches = "1.5.0"
40-
ntest = "0.9.0"
39+
ntest = "0.9.3"
4140
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
42-
# FIXME: Remove <1.38 once https://github.com/tokio-rs/tokio/issues/6610 is fixed
43-
tokio = { version = ">=1.34, <1.38", features = ["signal"] }
41+
tokio = { version = "1.34", features = ["signal"] }
4442

4543
[lints.rust]
4644
unreachable_pub = "warn"

scylla/Cargo.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ bytes = "1.0.1"
4747
futures = "0.3.6"
4848
hashbrown = "0.14"
4949
histogram = "0.6.9"
50-
# FIXME: Remove <1.38 once https://github.com/tokio-rs/tokio/issues/6610 is fixed
51-
tokio = { version = ">=1.34, <1.38", features = [
50+
tokio = { version = "1.34", features = [
5251
"net",
5352
"time",
5453
"io-util",
@@ -60,7 +59,7 @@ snap = "1.0"
6059
uuid = { version = "1.0", features = ["v4"] }
6160
rand = "0.8.3"
6261
thiserror = "1.0"
63-
itertools = "0.11.0"
62+
itertools = "0.13.0"
6463
tracing = "0.1.36"
6564
chrono = { version = "0.4.32", default-features = false, features = ["clock"] }
6665
openssl = { version = "0.10.32", optional = true }
@@ -73,7 +72,7 @@ async-trait = "0.1.56"
7372
serde = { version = "1.0", features = ["derive"], optional = true }
7473
serde_yaml = { version = "0.9.14", optional = true }
7574
url = { version = "2.3.1", optional = true }
76-
base64 = { version = "0.21.1", optional = true }
75+
base64 = { version = "0.22.1", optional = true }
7776
rand_pcg = "0.3.1"
7877
socket2 = { version = "0.5.3", features = ["all"] }
7978
lazy_static = "1"
@@ -83,10 +82,9 @@ num-bigint-03 = { package = "num-bigint", version = "0.3" }
8382
num-bigint-04 = { package = "num-bigint", version = "0.4" }
8483
bigdecimal-04 = { package = "bigdecimal", version = "0.4" }
8584
scylla-proxy = { version = "0.0.3", path = "../scylla-proxy" }
86-
ntest = "0.9.0"
85+
ntest = "0.9.3"
8786
criterion = "0.4" # Note: v0.5 needs at least rust 1.70.0
88-
# FIXME: Remove <1.38 once https://github.com/tokio-rs/tokio/issues/6610 is fixed
89-
tokio = { version = ">=1.34, <1.38", features = ["test-util"] }
87+
tokio = { version = "1.34", features = ["test-util"] }
9088
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
9189
assert_matches = "1.5.0"
9290
rand_chacha = "0.3.1"

0 commit comments

Comments
 (0)