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

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

crates/devolutions-gateway-task/Cargo.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ authors = ["Devolutions Inc. <infos@devolutions.net>"]
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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"

0 commit comments

Comments
 (0)