tendermint/
serializers.rs

1//! Serde serializers
2//!
3//! Serializers and deserializers for a transparent developer experience.
4//!
5//! CAUTION: There are no guarantees for backwards compatibility, this module should be considered
6//! an internal implementation detail which can vanish without further warning. Use at your own
7//! risk.
8pub use tendermint_proto::serializers::*;
9
10pub mod allow_empty_object;
11pub mod apphash;
12pub mod apphash_base64;
13pub mod hash;
14pub mod option_hash;
15pub mod time;