Skip to content

Commit

Permalink
build(deps): bump the tokio group with 1 update (#791)
Browse files Browse the repository at this point in the history
Bumps the tokio group with 1 update: [tokio](https://github.com/tokio-rs/tokio).


Updates `tokio` from 1.36.0 to 1.37.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.36.0...tokio-1.37.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tokio
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 2, 2024
1 parent fa0f519 commit 87f11c1
Show file tree
Hide file tree
Showing 14 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/devolutions-gateway-task/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ default = []
named_tasks = ["tokio/tracing"]

[dependencies]
tokio = { version = "1.36", features = ["sync", "rt", "tracing"] }
tokio = { version = "1.37", features = ["sync", "rt", "tracing"] }
async-trait = "0.1"
2 changes: 1 addition & 1 deletion crates/jmux-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ publish = false
jmux-proto = { path = "../jmux-proto" }

# async
tokio = { version = "1.36", features = ["net", "rt", "io-util", "macros"] }
tokio = { version = "1.37", features = ["net", "rt", "io-util", "macros"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures-util = { version = "0.3", features = ["sink"] }

Expand Down
4 changes: 2 additions & 2 deletions crates/mock-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ authors = ["Devolutions Inc. <infos@devolutions.net>"]
publish = false

[dependencies]
tokio = { version = "1.36", features = ["io-util", "sync"] }
tokio = { version = "1.37", features = ["io-util", "sync"] }
loom = { version = "0.7", features = ["futures", "checkpoint"] }
lazy_static = "1.4"

[dev-dependencies]
tokio = { version = "1.36", features = ["rt"] }
tokio = { version = "1.37", features = ["rt"] }
2 changes: 1 addition & 1 deletion crates/network-scanner-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tracing = "0.1.40"
[dev-dependencies]
tracing-cov-mark = { path = "../tracing-cov-mark" }
tracing-subscriber = "0.3.18"
tokio = { version = "1.36.0", features = [
tokio = { version = "1.37.0", features = [
"rt",
"sync",
"macros",
Expand Down
4 changes: 2 additions & 2 deletions crates/network-scanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ network-scanner-proto = { path = "../network-scanner-proto" }
parking_lot = "0.12.1"
socket2 = "0.5.5"
thiserror = "1.0.57"
tokio = { version = "1.36.0", features = ["rt", "sync", "time", "fs"] }
tokio = { version = "1.37.0", features = ["rt", "sync", "time", "fs"] }
tracing = "0.1.40"
typed-builder = "0.18.1"
serde = "1.0"
Expand All @@ -31,5 +31,5 @@ netlink-packet-route = "0.19.0"
rtnetlink = "0.14.1"

[dev-dependencies]
tokio = { version = "1.36.0", features = ["rt", "macros", "rt-multi-thread", "tracing", "signal"] }
tokio = { version = "1.37.0", features = ["rt", "macros", "rt-multi-thread", "tracing", "signal"] }
tracing-subscriber = "0.3.18"
2 changes: 1 addition & 1 deletion crates/proxy-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false

[dependencies]
proxy-types = { path = "../proxy-types" }
tokio = { version = "1.36", features = ["io-util"] }
tokio = { version = "1.37", features = ["io-util"] }
pin-project-lite = "0.2"
bytes = "1.5"

Expand Down
2 changes: 1 addition & 1 deletion crates/proxy-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ publish = false
proxy-socks = { path = "../proxy-socks" }
proxy-http = { path = "../proxy-http" }
proxy-types = { path = "../proxy-types" }
tokio = { version = "1.36", features = ["rt", "net", "rt-multi-thread", "macros"] }
tokio = { version = "1.37", features = ["rt", "net", "rt-multi-thread", "macros"] }
4 changes: 2 additions & 2 deletions crates/proxy-socks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ publish = false

[dependencies]
proxy-types = { path = "../proxy-types" }
tokio = { version = "1.36", features = ["io-util"] }
tokio = { version = "1.37", features = ["io-util"] }

[dev-dependencies]
tokio = { version = "1.36", features = ["rt", "macros"] }
tokio = { version = "1.37", features = ["rt", "macros"] }
tokio-test = "0.4"
proptest = "1.3"
proxy-generators = { path = "../proxy-generators" }
2 changes: 1 addition & 1 deletion crates/proxy-tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
publish = false

[dependencies]
tokio = { version = "1.36", features = ["rt", "net"] }
tokio = { version = "1.37", features = ["rt", "net"] }
proxy-http = { path = "../proxy-http" }
proxy-socks = { path = "../proxy-socks" }
2 changes: 1 addition & 1 deletion crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false

[dependencies]
transport = { path = "../transport" }
tokio = { version = "1.36", features = ["io-util"] }
tokio = { version = "1.37", features = ["io-util"] }
tokio-tungstenite = "0.21"
futures-util = "0.3"
proptest = "1.3"
Expand Down
4 changes: 2 additions & 2 deletions crates/transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ edition = "2021"
publish = false

[dependencies]
tokio = { version = "1.36", features = ["io-util"] }
tokio = { version = "1.37", features = ["io-util"] }
futures-core = "0.3"
futures-sink = "0.3"
pin-project-lite = "0.2"

[dev-dependencies]
futures-util = "0.3"
test-utils = { path = "../test-utils" }
tokio = { version = "1.36", features = ["rt", "macros"] }
tokio = { version = "1.37", features = ["rt", "macros"] }
proptest = "1.3"
anyhow = "1.0"
2 changes: 1 addition & 1 deletion devolutions-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ tracing-appender = "0.2"
# TODO: consider `tracing-error` crate

# Async, futures…
tokio = { version = "1.36", features = ["signal", "net", "io-util", "time", "rt", "rt-multi-thread", "sync", "macros", "parking_lot", "fs"] }
tokio = { version = "1.37", features = ["signal", "net", "io-util", "time", "rt", "rt-multi-thread", "sync", "macros", "parking_lot", "fs"] }
tokio-rustls = { version = "0.24", features = ["dangerous_configuration", "tls12"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "json"] } # TODO: directly use hyper in subscriber module
futures = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions jetsocat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ seahorse = "2.2"
humantime = "2.1"

# async
tokio = { version = "1.36", features = ["io-std", "io-util", "net", "fs", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] }
tokio = { version = "1.37", features = ["io-std", "io-util", "net", "fs", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] }
tokio-tungstenite = "0.21"
futures-util = "0.3"
transport = { path = "../crates/transport" }
Expand All @@ -54,5 +54,5 @@ sysinfo = { version = "0.29", default-features = false }

[dev-dependencies]
test-utils = { path = "../crates/test-utils" }
tokio = { version = "1.36", features = ["time"] }
tokio = { version = "1.37", features = ["time"] }
proptest = "1.3"

0 comments on commit 87f11c1

Please sign in to comment.