-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (37 loc) · 1.12 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
40
41
42
43
[package]
name = "bitcoincore-rest"
version = "4.0.2"
authors = ["Andrew Toth"]
license = "MIT"
homepage = "https://github.com/andrewtoth/rust-bitcoincore-rest/"
repository = "https://github.com/andrewtoth/rust-bitcoincore-rest/"
documentation = "https://docs.rs/bitcoincore-rest/"
description = "Rust REST client for Bitcoin Core REST API"
keywords = ["crypto", "bitcoin", "bitcoincore", "rest", "api"]
readme = "README.md"
edition = "2021"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["use-reqwest"]
use-reqwest = ["reqwest", "url"]
[dependencies]
async-trait = "0.1"
bitcoin = { version = "0.30", features = ["serde"] }
bitcoincore-rpc-json = "0.17"
bytes = "1"
http = "0.2"
reqwest = { version = "0.11", features = [
"json",
"rustls-tls",
], default-features = false, optional = true }
serde = { version = "1", features = ["derive"] }
url = { version = "2.4", optional = true }
[dev-dependencies]
bitcoind = { version = "0.33", features = ["25_1"] }
env_logger = "0.10"
serde_json = "1"
surf = "2.3"
thiserror = "1"
tokio = { version = "1.34", features = ["macros"] }