mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-25 12:06:02 +00:00
7d2d739042
* Rename the coins folder to networks Ethereum isn't a coin. It's a network. Resolves #357. * More renames of coins -> networks in orchestration * Correct paths in tests/ * cargo fmt
24 lines
525 B
Rust
24 lines
525 B
Rust
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![doc = include_str!("../README.md")]
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#[cfg(not(feature = "std"))]
|
|
extern crate alloc;
|
|
|
|
/// The bitcoin Rust library.
|
|
pub use bitcoin;
|
|
|
|
/// Cryptographic helpers.
|
|
#[cfg(feature = "hazmat")]
|
|
pub mod crypto;
|
|
#[cfg(not(feature = "hazmat"))]
|
|
pub(crate) mod crypto;
|
|
|
|
/// Wallet functionality to create transactions.
|
|
pub mod wallet;
|
|
/// A minimal asynchronous Bitcoin RPC client.
|
|
#[cfg(feature = "std")]
|
|
pub mod rpc;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|