[package]
edition = "2021"
rust-version = "1.75.0"
name = "bitcoind"
version = "0.37.0"
authors = [
"Riccardo Casatta <riccardo@casatta.it>",
"Tobin C. Harding <me@tobin.cc>",
]
build = "build.rs"
exclude = [
"tests",
"contrib",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utility to run a regtest bitcoind process, useful in integration testing environments"
readme = "README.md"
keywords = [
"bitcoin",
"bitcoind",
"json-rpc",
]
categories = [
"cryptography::cryptocurrencies",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/rust-bitcoin/corepc"
[package.metadata.docs.rs]
features = ["28_2"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.rbmt.lint]
features = ["latest"]
allowed_duplicates = [
"anyhow",
"base64",
"bitcoin_hashes",
"bitreq",
"linux-raw-sys",
"rustix",
"windows-sys",
]
[features]
0_17_2 = []
0_18_1 = ["0_17_2"]
0_19_1 = ["0_18_1"]
0_20_2 = ["0_19_1"]
0_21_2 = ["0_20_2"]
22_1 = ["0_21_2"]
23_2 = ["22_1"]
24_2 = ["23_2"]
25_2 = ["24_2"]
26_2 = ["25_2"]
27_0 = ["26_2"]
27_1 = ["27_0"]
27_2 = ["27_1"]
28_0 = ["27_2"]
28_1 = ["28_0"]
28_2 = ["28_1"]
29_0 = ["28_2"]
30_0 = ["29_0"]
30_2 = ["30_0"]
default = ["0_17_2"]
download = [
"anyhow",
"bitcoin_hashes",
"flate2",
"tar",
"bitreq",
"zip",
]
latest = ["30_2"]
[lib]
name = "bitcoind"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.66"
features = ["std"]
default-features = false
[dependencies.corepc-client]
version = "0.12.0"
features = ["client-sync"]
[dependencies.log]
version = "0.4"
default-features = false
[dependencies.serde_json]
version = "1.0.117"
default-features = false
[dependencies.tempfile]
version = "3"
default-features = false
[dependencies.which]
version = "3.1.1"
default-features = false
[dev-dependencies.env_logger]
version = "0.9.3"
default-features = false
[build-dependencies.anyhow]
version = "1.0.66"
optional = true
[build-dependencies.bitcoin_hashes]
version = ">= 0.13, <= 0.14"
optional = true
[build-dependencies.bitreq]
version = "0.3.0"
features = ["https"]
optional = true
[build-dependencies.flate2]
version = "1.0"
optional = true
[build-dependencies.tar]
version = "0.4"
optional = true
[build-dependencies.zip]
version = "0.6.6"
features = [
"bzip2",
"deflate",
]
optional = true
default-features = false