From aa980433cfb3f2fe0bb0bfb27745e7a5010cc8cb Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Wed, 27 Jul 2022 16:36:49 +0300 Subject: [PATCH 1/3] Bump async-tungstenite to 0.17 --- rpc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index eab06ea54..9c03d7af9 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -82,7 +82,7 @@ subtle = { version = "2", default-features = false } # Optional dependencies async-trait = { version = "0.1", optional = true, default-features = false } -async-tungstenite = { version = "0.12", default-features = false, features = ["tokio-runtime", "tokio-rustls"], optional = true } +async-tungstenite = { version = "0.17", default-features = false, features = ["tokio-runtime", "tokio-rustls-native-certs"], optional = true } futures = { version = "0.3", optional = true, default-features = false } http = { version = "0.2", optional = true, default-features = false } hyper = { version = "0.14", optional = true, default-features = false, features = ["client", "http1", "http2"] } From 0021cd4ff4a64febaaef23f28f21c5fbc6a6596e Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Wed, 27 Jul 2022 16:50:22 +0300 Subject: [PATCH 2/3] rpc-probe: Bump async-tungstenite version to 0.17 --- tools/rpc-probe/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rpc-probe/Cargo.toml b/tools/rpc-probe/Cargo.toml index acfc67f60..08822a06a 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -17,7 +17,7 @@ description = """ all-features = true [dependencies] -async-tungstenite = { version = "0.16", features = [ "tokio-runtime", "tokio-rustls-native-certs" ] } +async-tungstenite = { version = "0.17", features = [ "tokio-runtime", "tokio-rustls-native-certs" ] } futures = "0.3" getrandom = "0.2" log = "0.4" From cf4549aad86ed7f6c040852ba5adf586be593bf4 Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Wed, 27 Jul 2022 17:07:20 +0300 Subject: [PATCH 3/3] Changelog entry for #1166 --- .../unreleased/dependencies/1165-bump-async-tungstenite.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changelog/unreleased/dependencies/1165-bump-async-tungstenite.md diff --git a/.changelog/unreleased/dependencies/1165-bump-async-tungstenite.md b/.changelog/unreleased/dependencies/1165-bump-async-tungstenite.md new file mode 100644 index 000000000..9a382010f --- /dev/null +++ b/.changelog/unreleased/dependencies/1165-bump-async-tungstenite.md @@ -0,0 +1,2 @@ +- `[rpc]` Update async-tungstenite dependency to 0.17 + ([#1165](https://github.com/informalsystems/tendermint-rs/issues/1165)).