forked from rust-bitcoin/rust-bitcoincore-rpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (32 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "bitcoincore-rpc"
version = "0.1.0"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
"Dawid Ciężarkiewicz <[email protected]>"
]
license = "CC0-1.0"
homepage = "https://github.com/stevenroose/rust-bitcoindrpc/"
repository = "https://github.com/stevenroose/rust-bitcoindrpc/"
description = "RPC client library for the Bitcoin Core JSON-RPC API."
keywords = [ "crypto", "bitcoin", "bitcoin core", "rpc" ]
readme = "README.md"
[lib]
name = "bitcoincore_rpc"
path = "src/lib.rs"
[dependencies]
bitcoincore-rpc-json = "0.1"
log = "0.4.5"
jsonrpc = "0.10"
# Used for deserialization of JSON.
serde = "1"
serde_json = "1"
hex = "0.3"
# Used for Bitcoin-specific types.
bitcoin = { version = "0.15", features = [ "serde-decimal" ] }
bitcoin-amount = { version = "0.1.4", features = [ "serde" ] }
secp256k1 = { version = "0.11", features = [ "serde" ] }
num-bigint = { version = "0.2", features = [ "serde" ] }
[patch.crates-io]
bitcoincore-rpc-json = { path = "./json" }