Skip to content

Commit

Permalink
tendermint: fix minimal-versions correctness for bytes (informalsys…
Browse files Browse the repository at this point in the history
…tems#1257)

The `tendermint` crate uses features of `bytes` introduced in version
1.2, namely a `From<Vec<u8>>` impl for `Bytes`.

See cosmos/cosmos-rust#314 for additional
context.
  • Loading branch information
tony-iqlusion authored Jan 6, 2023
1 parent f776dac commit 5020067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
bytes = { version = "1.0", default-features = false, features = ["serde"] }
bytes = { version = "1.2", default-features = false, features = ["serde"] }
ed25519 = { version = "1.3", default-features = false }
ed25519-dalek = { version = "1", default-features = false, features = ["u64_backend"] }
futures = { version = "0.3", default-features = false }
Expand Down

0 comments on commit 5020067

Please sign in to comment.