2020-06-20 13:55:07 +00:00
|
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
2021-11-23 19:23:12 +00:00
|
|
|
#![doc = include_str!("../README.md")]
|
2022-03-19 17:05:39 +00:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2023-01-27 18:14:26 +00:00
|
|
|
#![cfg_attr(not(target_arch = "wasm32"), deny(unused_crate_dependencies))]
|
2022-03-19 17:05:39 +00:00
|
|
|
|
2020-05-31 16:01:34 +00:00
|
|
|
pub mod types;
|
2020-05-23 00:01:20 +00:00
|
|
|
|
2020-05-28 09:04:12 +00:00
|
|
|
pub mod abi;
|
2020-05-28 14:53:22 +00:00
|
|
|
|
2020-05-31 16:01:34 +00:00
|
|
|
/// Various utilities
|
2020-05-31 15:31:13 +00:00
|
|
|
pub mod utils;
|
2020-05-31 16:01:34 +00:00
|
|
|
|
2021-11-08 20:08:03 +00:00
|
|
|
#[cfg(feature = "macros")]
|
2021-11-05 13:00:01 +00:00
|
|
|
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;
|
|
|
|
|
2020-10-01 08:02:21 +00:00
|
|
|
// re-export k256
|
|
|
|
pub use k256;
|