-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 924 Bytes
/
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
[package]
name = "taproot-cosigner-fun"
version = "0.1.0"
edition = "2021"
authors = ["Leonardo Comandini <[email protected]>"]
readme = "README.md"
license = "MIT"
default-run = "taproot-cosigner-fun"
[dependencies]
rocket = { version = "0.5.0-rc.2", features = ["json", "uuid"] }
schnorr_fun = { version = "0.8", features = ["serde"] }
sha2 = "0.10"
bitcoin = { version = "0.29", features = ["serde"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0" }
rand_chacha = "0.3"
rand = "0.8.5"
thiserror = "1.0"
hex = "0.4"
clap = { version = "4", features = ["derive"] }
base64 = { version = "0.13" }
bdk = { version = "0.26", features = ["all-keys", "key-value-db", "electrum"] }
ureq = { version = "2.6", features = ["json"] }
[dev-dependencies]
electrsd = { version = "0.22", features = ["bitcoind_23_0", "esplora_a33e97e1", "legacy"] }
[[bin]]
name = "cli"
path = "src/bin/cli.rs"