-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
47 lines (39 loc) · 1.31 KB
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
44
45
46
47
[package]
version = "0.1.0"
name = "bdk_bitcoind_client"
description = "A minimal `bitcoind` RPC client custom built for BDK"
authors = ["Bitcoin Dev Kit Developers"]
repository = "https://github.com/bitcoindevkit/bdk-bitcoind-client"
documentation = "https://docs.rs/bdk-bitcoind-client"
homepage = "https://bitcoindevkit.org"
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2024"
rust-version = "1.85.0"
[features]
default = ["30_0"]
30_0 = []
29_0 = []
28_0 = []
[dependencies]
corepc-types = { version = "0.12.0", features = ["default"]}
jsonrpc = { version = "0.19.0", features = ["bitreq_http"] }
# These pins are needed for `Cargo-minimal.lock`:
hex-conservative = { version = "0.2.1" } # blame: corepc-node
[dev-dependencies]
anyhow = { version = "1.0.66" }
bitcoind = { version = "0.37.0", features = ["download", "29_0"] }
# These pins are needed for `Cargo-minimal.lock`:
tar = { version = "0.4.43" } # blame: corepc-node
filetime = { version = "0.2.8" } # blame: corepc-node
log = { version = "0.4.14" } # blame: corepc-node
[package.metadata.rbmt.toolchains]
stable = "1.94.1"
nightly = "nightly-2026-03-18"
[package.metadata.rbmt.test]
#exclude_features = ["default"]
# Allow multiple versions of the same package in the dependency tree.
[package.metadata.rbmt.lint]
allowed_duplicates = [
"base64",
]