persistence_std/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![forbid(unsafe_code)]
4#![warn(trivial_casts, trivial_numeric_casts, unused_import_braces)]
5
6/// The version (commit hash) of the Cosmos SDK used when generating this library.
7// pub const PERSISTENCE_VERSION: &str = include_str!("types/");
8mod serde;
9pub mod shim;
10
11#[allow(deprecated)]
12pub mod types;
13
14pub use shim::{cosmwasm_to_proto_coins, try_proto_to_cosmwasm_coins};