[package] name = "satsnet-rpc" version = "0.19.4" authors = ["Jacky Chen "] license = "CC0-1.0" homepage = "https://github.com/sat20-labs/rust-satsnet-rpc/" repository = "https://github.com/sat20-labs/rust-satsnet-rpc/" description = "RPC client library for the Bitcoin Core JSON-RPC API." keywords = ["crypto", "bitcoin", "bitcoin-core", "rpc"] readme = "README.md" edition = "2018" [lib] name = "bitcoincore_rpc" path = "src/lib.rs" [features] default = ["rand"] rand = ["bitcoincore-rpc-json/rand"] bitcoin_with_satsnet = ["bitcoincore-rpc-json/bitcoin_with_satsnet"] [dependencies] bitcoincore-rpc-json = { package = "satsnet-rpc-json", version = "0.19.4", path = "../json" } log = "0.4.5" jsonrpc = { version = "0.18.0", features = ["minreq_http"] } # Used for deserialization of JSON. serde = "1" serde_json = "1" [dev-dependencies] tempfile = "3.3.0" [[example]] name = "retry_client"