pryzm_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
6extern crate core;
7
8/// The version (commit hash) of the Cosmos SDK used when generating this library.
9pub const PRYZMD_VERSION: &str = include_str!("types/PRYZM_COMMIT");
10
11mod serde;
12pub mod shim;
13pub mod types;