bitcoin_rpc_client 0.3.0

Rust client library for talking to Bitcoin Core nodes using JsonRPC.
Documentation
language: rust
cache:
  directories:
  - "$HOME/.cargo"
  - "$HOME/.cache/sccache"
rust: stable
before_script:
- rustup component add rustfmt-preview
- docker pull coblox/bitcoin-core:0.16.1-r2
- which sccache || cargo install sccache
script:
- cargo fmt -- --check
- RUSTC_WRAPPER=~/.cargo/bin/sccache cargo build --all
- RUSTC_WRAPPER=~/.cargo/bin/sccache cargo test --all