Skip to content

Commit a75a409

Browse files
committed
Pin old tokio-stream version
We are stuck on an old version of `deno` and that version wants an old version of `tokio` (v1.36.0). The latest release of `tokio-stream` is incompatible with this version since it makes use of features added since then: * `mpsc::Receiver::{is_closed,is_empty,len}` * added in `tokio` v1.37.0 * `mpsc::Receiver::{capacity,max_capacity}` * added in `tokio` v1.38.0 This change pins `tokio-stream` to the last compatible version, similar to what was done in commit `f7f6b3a73d36a1b85dc903fe047448568730a36f` (f7f6b3a).
1 parent eb1a251 commit a75a409

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Cargo.lock

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

cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ tempfile = "3.3.0"
7474
textwrap = "0.16.0"
7575
thiserror = "2.0.3"
7676
tokio = { version = "^1.0", features = ["full"] }
77+
tokio-stream = "=0.1.17"
7778
tokio-util = "=0.7.15"
7879
toml = "0.9.5"
7980
unicode-width = "0.2.0"

0 commit comments

Comments
 (0)