mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
13 lines
314 B
Rust
13 lines
314 B
Rust
|
#![doc = include_str!("../README.md")]
|
||
|
#![deny(missing_docs, reason = "all constants should document what they are")]
|
||
|
#![no_std] // This can be removed if we eventually need `std`.
|
||
|
|
||
|
mod macros;
|
||
|
|
||
|
#[cfg(feature = "block")]
|
||
|
pub mod block;
|
||
|
#[cfg(feature = "build")]
|
||
|
pub mod build;
|
||
|
#[cfg(feature = "rpc")]
|
||
|
pub mod rpc;
|