bitcoincore_rpc_sotatek/lib.rs
1// To the extent possible under law, the author(s) have dedicated all
2// copyright and related and neighboring rights to this software to
3// the public domain worldwide. This software is distributed without
4// any warranty.
5//
6// You should have received a copy of the CC0 Public Domain Dedication
7// along with this software.
8// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
9//
10
11//! # Rust Client for Bitcoin Core API
12//!
13//! This is a client library for the Bitcoin Core JSON-RPC API.
14//!
15
16#![crate_name = "bitcoincore_rpc_sotatek"]
17#![crate_type = "rlib"]
18
19extern crate log;
20extern crate serde;
21
22pub extern crate jsonrpc;
23
24pub extern crate bitcoincore_rpc_json;
25pub use crate::json::bitcoin;
26pub use bitcoincore_rpc_json as json;
27
28mod client;
29
30pub use crate::client::*;