tendermint_std_ext/
lib.rs

1//! Extensions to the [Rust standard library][std] for use by [tendermint-rs].
2//!
3//! [std]: https://doc.rust-lang.org/std/
4//! [tendermint-rs]: https://github.com/informalsystems/tendermint-rs/
5
6mod try_clone;
7
8pub use try_clone::TryClone;