forked from bitcoindevkit/bdk-tx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 663 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 663 Bytes
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
[package]
name = "bdk_tx"
version = "0.1.0"
edition = "2021"
rust-version = "1.63"
homepage = "https://bitcoindevkit.org"
repository = "https://github.com/bitcoindevkit/bdk-tx"
license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]
miniscript = { version = "12", default-features = false }
bdk_coin_select = "0.4.0"
bdk_chain = { version = "0.21" }
[dev-dependencies]
anyhow = "1"
bdk_tx = { path = "." }
bitcoin = { version = "0.32", features = ["rand-std"] }
bdk_testenv = "0.11.1"
bdk_bitcoind_rpc = "0.18.0"
bdk_wallet = "1.2.0"
bdk_esplora = { version = "0.20.1", features = ["blocking"] }
[features]
default = ["std"]
std = ["miniscript/std"]