bitcoind_client/lib.rs
1//! `bitcoind_client`.
2
3#![no_std]
4
5#[macro_use]
6#[cfg(feature = "std")]
7extern crate std;
8
9#[macro_use]
10#[allow(unused_imports)]
11extern crate alloc;
12
13mod client;
14mod error;
15mod rpc;
16#[cfg(feature = "simple-http")]
17pub mod simple_http;
18pub use client::*;
19pub use error::*;
20pub use rpc::*;
21#[cfg(feature = "simple-http")]
22pub mod types;
23
24pub use corepc_types;
25pub use jsonrpc;