Skip to content

Commit ed3ac91

Browse files
build(deps): bump the tokio group with 3 updates (#1276)
1 parent b8fb03b commit ed3ac91

File tree

21 files changed

+105
-105
lines changed

21 files changed

+105
-105
lines changed

Cargo.lock

+79-79
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/devolutions-gateway-task/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ default = []
1313
named_tasks = ["tokio/tracing"]
1414

1515
[dependencies]
16-
tokio = { version = "1.43", features = ["sync", "rt", "tracing"] }
16+
tokio = { version = "1.44", features = ["sync", "rt", "tracing"] }
1717
async-trait = "0.1"

crates/devolutions-log/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ camino = "1.1"
2323

2424
# Async
2525
async-trait = "0.1"
26-
tokio = { version = "1.43", features = ["signal", "net", "io-util", "time", "rt", "rt-multi-thread", "sync", "macros", "parking_lot", "fs"] }
26+
tokio = { version = "1.44", features = ["signal", "net", "io-util", "time", "rt", "rt-multi-thread", "sync", "macros", "parking_lot", "fs"] }
2727

2828
# Logging
2929
tracing = "0.1"

crates/devolutions-pedm-shared/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }
1313
win-api-wrappers = { path = "../win-api-wrappers", optional = true }
1414
hyper = { version = "~0.14", features = ["client", "http1"], optional = true } # old version required for OpenAPI generator
1515
serde_json = { version = "1.0", optional = true }
16-
tokio = { version = "1.43", features = ["net", "sync"], optional = true }
16+
tokio = { version = "1.44", features = ["net", "sync"], optional = true }
1717
glob = { version = "0.3", optional = true }
1818
regex = { version = "1.11", optional = true }
1919
schemars = { version = "0.8", features = ["uuid1"], optional = true }

crates/devolutions-pedm-shell-ext/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publish = false
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]
14-
tokio = { version = "1.43", features = ["sync"] }
14+
tokio = { version = "1.44", features = ["sync"] }
1515
windows-core = "0.58" # necessary because of macro resolving `windows::core`. Must match `win-api-wrappers` version.
1616
devolutions-pedm-shared = { path = "../devolutions-pedm-shared", features = ["pedm_client", "desktop"] }
1717
win-api-wrappers = { path = "../win-api-wrappers" }

crates/devolutions-pedm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde = "1.0"
2323
serde_json = "1.0"
2424
sha1 = "0.10"
2525
sha2 = "0.10"
26-
tokio = { version = "1.43", features = ["net", "rt-multi-thread"] }
26+
tokio = { version = "1.44", features = ["net", "rt-multi-thread"] }
2727
tower-service = "0.3"
2828
win-api-wrappers = { path = "../win-api-wrappers" }
2929
devolutions-pedm-shared = { path = "../devolutions-pedm-shared", features = ["policy"]}

crates/jmux-proxy/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ workspace = true
1515
jmux-proto = { path = "../jmux-proto" }
1616

1717
# async
18-
tokio = { version = "1.43", features = ["net", "rt", "io-util", "macros"] }
18+
tokio = { version = "1.44", features = ["net", "rt", "io-util", "macros"] }
1919
tokio-util = { version = "0.7", features = ["codec"] }
2020
futures-util = { version = "0.3", features = ["sink"] }
2121

crates/mock-net/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ authors = ["Devolutions Inc. <[email protected]>"]
66
publish = false
77

88
[dependencies]
9-
tokio = { version = "1.43", features = ["io-util", "sync"] }
9+
tokio = { version = "1.44", features = ["io-util", "sync"] }
1010
loom = { version = "0.7", features = ["futures", "checkpoint"] }
1111

1212
[dev-dependencies]
13-
tokio = { version = "1.43", features = ["rt"] }
13+
tokio = { version = "1.44", features = ["rt"] }

crates/network-scanner-net/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tracing = "0.1"
2020
[dev-dependencies]
2121
tracing-cov-mark = { path = "../tracing-cov-mark" }
2222
tracing-subscriber = "0.3"
23-
tokio = { version = "1.43", features = [
23+
tokio = { version = "1.44", features = [
2424
"rt",
2525
"sync",
2626
"macros",

crates/network-scanner/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ network-scanner-proto = { path = "../network-scanner-proto" }
1919
parking_lot = "0.12"
2020
socket2 = "0.5"
2121
thiserror = "1"
22-
tokio = { version = "1.43", features = ["rt", "sync", "time", "fs"] }
22+
tokio = { version = "1.44", features = ["rt", "sync", "time", "fs"] }
2323
tracing = "0.1"
2424
typed-builder = "0.19"
2525
serde = "1"
@@ -33,5 +33,5 @@ netlink-packet-route = "0.19"
3333
rtnetlink = "0.14"
3434

3535
[dev-dependencies]
36-
tokio = { version = "1.43", features = ["rt", "macros", "rt-multi-thread", "tracing", "signal"] }
36+
tokio = { version = "1.44", features = ["rt", "macros", "rt-multi-thread", "tracing", "signal"] }
3737
tracing-subscriber = "0.3"

crates/proxy-http/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ workspace = true
1111

1212
[dependencies]
1313
proxy-types = { path = "../proxy-types" }
14-
tokio = { version = "1.43", features = ["io-util"] }
14+
tokio = { version = "1.44", features = ["io-util"] }
1515
pin-project-lite = "0.2"
1616
bytes = "1.6"
1717

crates/proxy-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ workspace = true
1212
proxy-socks = { path = "../proxy-socks" }
1313
proxy-http = { path = "../proxy-http" }
1414
proxy-types = { path = "../proxy-types" }
15-
tokio = { version = "1.43", features = ["rt", "net", "rt-multi-thread", "macros"] }
15+
tokio = { version = "1.44", features = ["rt", "net", "rt-multi-thread", "macros"] }

crates/proxy-socks/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ workspace = true
1111

1212
[dependencies]
1313
proxy-types = { path = "../proxy-types" }
14-
tokio = { version = "1.43", features = ["io-util"] }
14+
tokio = { version = "1.44", features = ["io-util"] }
1515

1616
[dev-dependencies]
17-
tokio = { version = "1.43", features = ["rt", "macros"] }
17+
tokio = { version = "1.44", features = ["rt", "macros"] }
1818
tokio-test = "0.4"
1919
proptest = "1.5"
2020
proxy-generators = { path = "../proxy-generators" }

crates/proxy-tester/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
publish = false
77

88
[dependencies]
9-
tokio = { version = "1.43", features = ["rt", "net"] }
9+
tokio = { version = "1.44", features = ["rt", "net"] }
1010
proxy-http = { path = "../proxy-http" }
1111
proxy-socks = { path = "../proxy-socks" }

crates/terminal-streamer/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ edition = "2021"
55

66
[dependencies]
77
anyhow = "1.0"
8-
tokio = { version = "1.43", features = ["io-util", "sync", "macros", "rt-multi-thread", "time"] }
8+
tokio = { version = "1.44", features = ["io-util", "sync", "macros", "rt-multi-thread", "time"] }
99
tracing = "0.1"
1010

1111
[lints]
1212
workspace = true
1313

1414
[dev-dependencies]
15-
tokio = { version = "1.43", features = ["fs"] }
15+
tokio = { version = "1.44", features = ["fs"] }

crates/test-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ workspace = true
1010

1111
[dependencies]
1212
transport = { path = "../transport" }
13-
tokio = { version = "1.43", features = ["io-util"] }
13+
tokio = { version = "1.44", features = ["io-util"] }
1414
tokio-tungstenite = "0.24"
1515
futures-util = "0.3"
1616
proptest = "1.5"

crates/transport/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
workspace = true
1010

1111
[dependencies]
12-
tokio = { version = "1.43", features = ["io-util", "sync", "rt", "macros", "time"] }
12+
tokio = { version = "1.44", features = ["io-util", "sync", "rt", "macros", "time"] }
1313
futures-core = "0.3"
1414
futures-sink = "0.3"
1515
futures-util = { version = "0.3", features = ["sink"] }

crates/video-streamer/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
[dependencies]
99
anyhow = "1.0"
1010
futures-util = { version = "0.3", features = ["sink"] }
11-
tokio = { version = "1.43", features = [
11+
tokio = { version = "1.44", features = [
1212
"io-util",
1313
"rt",
1414
"rt-multi-thread",
@@ -25,7 +25,7 @@ webm-iterable = "0.6"
2525

2626
[dev-dependencies]
2727
tracing-subscriber = "0.3"
28-
tokio = { version = "1.43", features = [
28+
tokio = { version = "1.44", features = [
2929
"io-util",
3030
"rt",
3131
"rt-multi-thread",

devolutions-agent/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ features = [
4040
]
4141

4242
[dependencies.tokio]
43-
version = "1.43"
43+
version = "1.44"
4444
features = [
4545
"signal",
4646
"net",

devolutions-gateway/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ argon2 = { version = "0.5", features = ["std"] }
6969
tracing = "0.1"
7070

7171
# Async, futures…
72-
tokio = { version = "1.43", features = ["signal", "net", "io-util", "time", "rt", "rt-multi-thread", "sync", "macros", "parking_lot", "fs"] }
72+
tokio = { version = "1.44", features = ["signal", "net", "io-util", "time", "rt", "rt-multi-thread", "sync", "macros", "parking_lot", "fs"] }
7373
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12", "ring"] }
7474
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "json", "stream"] }
7575
futures = "0.3"

jetsocat/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ seahorse = "2.2"
3636
humantime = "2.1"
3737

3838
# async
39-
tokio = { version = "1.43", features = ["io-std", "io-util", "net", "fs", "signal", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] }
39+
tokio = { version = "1.44", features = ["io-std", "io-util", "net", "fs", "signal", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] }
4040
tokio-tungstenite = "0.24"
4141
futures-util = "0.3"
4242
transport = { path = "../crates/transport" }
@@ -80,5 +80,5 @@ features = [
8080

8181
[dev-dependencies]
8282
test-utils = { path = "../crates/test-utils" }
83-
tokio = { version = "1.43", features = ["time"] }
83+
tokio = { version = "1.44", features = ["time"] }
8484
proptest = "1.5"

0 commit comments

Comments
 (0)