elys_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 ELYSD_VERSION: &str = include_str!("types/ELYS_COMMIT");
8
9mod serde;
10pub mod shim;
11
12#[allow(deprecated, unused_imports, clippy::large_enum_variant)]
13pub mod types;