cuprate_constants/lib.rs
1#![doc = include_str!("../README.md")]
2#![deny(missing_docs, reason = "all constants should document what they are")]
3#![no_std] // This can be removed if we eventually need `std`.
4
5mod macros;
6
7#[cfg(feature = "block")]
8pub mod block;
9#[cfg(feature = "build")]
10pub mod build;
11#[cfg(feature = "rpc")]
12pub mod rpc;