Skip to content

chore: update tokio to 1.38.2 #626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions console-subscriber/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ grpc-web = ["dep:tonic-web"]

[dependencies]
crossbeam-utils = "0.8.7"
tokio = { version = "1.34", features = ["sync", "time", "macros", "tracing"] }
tokio = { version = "1.38.2", features = ["sync", "time", "macros", "tracing"] }
tokio-stream = { version = "0.1.16", features = ["net"] }
thread_local = "1.1.4"
console-api = { version = "0.8.0", path = "../console-api", features = ["transport"] }
Expand All @@ -57,7 +57,7 @@ crossbeam-channel = "0.5"
tonic-web = { version = "0.12", optional = true }

[dev-dependencies]
tokio = { version = "1.34", features = ["full", "rt-multi-thread"] }
tokio = { version = "1.38.2", features = ["full", "rt-multi-thread"] }
tower = { version = "0.4.12", default-features = false, features = ["util"] }
futures = "0.3"
http = "1.1"
Expand Down
4 changes: 2 additions & 2 deletions console-subscriber/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ runtime][Tokio] is considered *experimental*. In order to use
```toml
[dependencies]
# ...
tokio = { version = "1.15", features = ["full", "tracing"] }
tokio = { version = "1.38.2", features = ["full", "tracing"] }
```

* The `tokio_unstable` cfg flag, which enables experimental APIs in Tokio, must
Expand Down Expand Up @@ -130,7 +130,7 @@ Other instrumentation is added in later Tokio releases:

* [Tokio v1.21.0] or later is required to use newest `task::Builder::spawn*` APIs.

* [Tokio v1.41.0] (as yet unreleased) or later is required for task future sizes and the related
* [Tokio v1.41.0] or later is required for task future sizes and the related
tokio-console lints `auto-boxed-future` and `large-future`.

[Tokio v1.0.0]: https://github.com/tokio-rs/tokio/releases/tag/tokio-1.0.0
Expand Down
2 changes: 1 addition & 1 deletion tokio-console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ eula = false
console-api = { version = "0.8.1", path = "../console-api", features = ["transport"] }
clap = { version = "~4.5.4", features = ["wrap_help", "cargo", "derive", "env"] }
clap_complete = "~4.5.2"
tokio = { version = "1.34", features = ["full", "rt-multi-thread"] }
tokio = { version = "1.38.2", features = ["full", "rt-multi-thread"] }
tonic = { version = "0.13.0", features = ["transport"] }
futures = "0.3"
ratatui = { version = "0.26.2", default-features = false, features = ["crossterm"] }
Expand Down
Loading