margined_neutron_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.
7pub const NEUTROND_VERSION: &str = include_str!("types/NEUTRON_COMMIT");
8
9mod serde;
10#[allow(deprecated)]
11pub mod shim;
12pub mod types;
13
14pub use shim::{cosmwasm_to_proto_coins, try_proto_to_cosmwasm_coins};