ethers-rs/ethers-core/src/lib.rs

21 lines
400 B
Rust
Raw Normal View History

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![deny(rustdoc::broken_intra_doc_links)]
#![deny(unused_crate_dependencies)]
2020-05-31 16:01:34 +00:00
pub mod types;
2020-05-23 00:01:20 +00:00
pub mod abi;
2020-05-28 14:53:22 +00:00
2020-05-31 16:01:34 +00:00
/// Various utilities
pub mod utils;
2020-05-31 16:01:34 +00:00
#[cfg(feature = "macros")]
pub mod macros;
2020-05-31 17:53:07 +00:00
// re-export rand to avoid potential confusion when there's rand version mismatches
2020-05-31 16:01:34 +00:00
pub use rand;
// re-export k256
pub use k256;