cw_skeleton/
lib.rs

1#![doc(html_logo_url = "https://mikedotexe.s3.us-west-2.amazonaws.com/heart-eva-beylin.jpeg")]
2// #![allow(rustdoc::broken_intra_doc_links)]
3//! For an overview, see the [README here](./README.md).
4
5pub mod entry_points;
6pub mod errors;
7pub mod msgs;
8pub mod state;
9
10#[cfg(test)]
11mod tests;
12
13/// Contract name as it'll be stored according to the [cw2 dependency](https://crates.io/crates/cw2)
14pub const CONTRACT_NAME: &str = "crates.io:cw-skeleton";
15/// The version comes from the manifest file (Cargo.toml)
16pub const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");