-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (40 loc) · 1.1 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
44
45
46
47
[package]
name = "bip347-enforcer"
version = "0.1.0"
edition = "2021"
[build-dependencies]
cc = "1.0.101"
[dependencies]
anyhow = "1.0.86"
bitcoin = { version = "0.32.2", features = ["rand", "serde"] }
cfg-if = "1.0.0"
clap = { version = "4.5.7", features = ["derive"] }
futures = "0.3.30"
integer-sqrt = "0.1.5"
jsonrpsee = "0.24.3"
libc = "0.2.155"
rand = "0.8.5"
serde = "1.0.204"
serde_json = "1.0.120"
serde_path_to_error = "0.1.16"
serde_tuple = "0.5.0"
thiserror = "1.0.63"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
zeromq = "0.4.0"
[dependencies.bip300301]
git = "https://github.com/Ash-L2L/bip300301.git"
rev = "4ec0175093b072d4d0a523321b7bb35e3fc96ccf"
features = ["tracing"]
[dependencies.cusf-enforcer-mempool]
git = "https://github.com/Ash-L2L/bip300-enforcer-mempool"
rev = "5a54710dbc3d4e62269c815a63108538d030e58c"
optional = true
[dev-dependencies]
bitcoin = { version = "0.32.2", features = ["bitcoinconsensus"] }
[features]
mempool = ["dep:cusf-enforcer-mempool"]
[[bin]]
name = "gen-demo-tx"
path = "src/gen_tx.rs"