diff --git a/.changelog/unreleased/bug-fixes/1476-export-v0_37-abci-events.md b/.changelog/unreleased/bug-fixes/1476-export-v0_37-abci-events.md index 4309a55b6..c60807bef 100644 --- a/.changelog/unreleased/bug-fixes/1476-export-v0_37-abci-events.md +++ b/.changelog/unreleased/bug-fixes/1476-export-v0_37-abci-events.md @@ -1,2 +1,2 @@ - [tendermint] export `abci::event::v0_37` to construct `EventAttribute::V037` variants. - ([\#1479](https://github.com/informalsystems/tendermint-rs/pull/1479)) + ([\#1479](https://github.com/informalsystems/tendermint-rs/pull/1479), ([\#1480](https://github.com/informalsystems/tendermint-rs/pull/1480)) diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 6e70480c4..d0538a5e6 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -88,9 +88,9 @@ subtle = { version = "2", default-features = false } semver = { version = "1.0", default-features = false } # Optional dependencies -async-tungstenite = { version = "0.24", default-features = false, features = ["tokio-runtime", "tokio-rustls-native-certs"], optional = true } +async-tungstenite = { version = "0.28.1", default-features = false, features = ["tokio-runtime", "tokio-rustls-native-certs"], optional = true } futures = { version = "0.3", optional = true, default-features = false } -reqwest = { version = "0.11.20", optional = true, default-features = false, features = ["rustls-tls-native-roots"] } +reqwest = { version = "0.12.9", optional = true, default-features = false, features = ["rustls-tls-native-roots"] } structopt = { version = "0.3", optional = true, default-features = false } tokio = { version = "1.0", optional = true, default-features = false, features = ["rt-multi-thread"] } tracing = { version = "0.1", optional = true, default-features = false } diff --git a/tendermint/src/abci.rs b/tendermint/src/abci.rs index 379284ba8..9a2405861 100644 --- a/tendermint/src/abci.rs +++ b/tendermint/src/abci.rs @@ -54,6 +54,7 @@ pub use crate::v0_38::abci::response::{ }; pub use event::v0_34; +pub use event::v0_37; pub use event::{Event, EventAttribute, EventAttributeIndexExt, TypedEvent}; #[doc(inline)]