From bdfbceb6eee7505550e64b7b3132231ccb95e835 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jan 2022 16:14:31 +0100 Subject: [PATCH] build(deps): Update yamux requirement from 0.9.0 to 0.10.0 (#2435) * build(deps): Update yamux requirement from 0.9.0 to 0.10.0 Updates the requirements on [yamux](https://github.com/paritytech/yamux) to permit the latest version. - [Release notes](https://github.com/paritytech/yamux/releases) - [Changelog](https://github.com/libp2p/rust-yamux/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/yamux/commits/v0.10.0) --- updated-dependencies: - dependency-name: yamux dependency-type: direct:production ... Signed-off-by: dependabot[bot] * muxers/yamux/CHANGELOG: Add entry Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden --- muxers/yamux/CHANGELOG.md | 4 ++++ muxers/yamux/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/muxers/yamux/CHANGELOG.md b/muxers/yamux/CHANGELOG.md index a3aff449113..ef7c1dc1557 100644 --- a/muxers/yamux/CHANGELOG.md +++ b/muxers/yamux/CHANGELOG.md @@ -4,7 +4,11 @@ - Migrate to Rust edition 2021 (see [PR 2339]). +- Update to `yamux` `v0.10.0` and thus defaulting to `WindowUpdateMode::OnRead`. + See [PR 2435]. + [PR 2339]: https://github.com/libp2p/rust-libp2p/pull/2339 +[PR 2435]: https://github.com/libp2p/rust-libp2p/pull/2435 # 0.34.0 [2021-11-01] diff --git a/muxers/yamux/Cargo.toml b/muxers/yamux/Cargo.toml index 7d4cc8b3d53..3a25f9e3277 100644 --- a/muxers/yamux/Cargo.toml +++ b/muxers/yamux/Cargo.toml @@ -15,4 +15,4 @@ futures = "0.3.1" libp2p-core = { version = "0.31.0", path = "../../core", default-features = false } parking_lot = "0.11" thiserror = "1.0" -yamux = "0.9.0" +yamux = "0.10.0"