corepc_client/lib.rs
1// SPDX-License-Identifier: CC0-1.0
2
3//! Support for connecting to Bitcoin Core via JSON-RPC.
4
5/// Re-export the `rust-bitcoin` crate.
6pub extern crate bitcoin;
7
8/// Re-export the `corepc-types` crate.
9pub extern crate types;
10
11#[cfg(feature = "client-sync")]
12#[macro_use]
13pub mod client_sync;