ethers_core/lib.rs
1#![doc = include_str!("../README.md")]
2#![deny(rustdoc::broken_intra_doc_links)]
3#![cfg_attr(not(target_arch = "wasm32"), deny(unused_crate_dependencies))]
4#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
5
6pub mod types;
7
8pub mod abi;
9
10/// Various utilities
11pub mod utils;
12
13#[cfg(feature = "macros")]
14pub mod macros;
15
16// re-export rand to avoid potential confusion when there's rand version mismatches
17pub use rand;
18
19// re-export k256
20pub use k256;