forked from bisq-network/bisq-musig
-
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) · 686 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 686 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 = "protocol"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
bdk_electrum = { workspace = true }
bdk_wallet = { workspace = true }
dotenv = "0.15.0"
musig2 = { workspace = true }
paste = "1.0.15"
rand = { workspace = true }
rand_chacha = { workspace = true }
thiserror = { workspace = true }
# TODO move this to dev-dependencies:
testenv = { path = "../testenv" }
tracing = { workspace = true }
[dev-dependencies]
bdk_wallet = { workspace = true, features = ["test-utils"] }
const_format = { workspace = true }
tokio = { workspace = true, features = ["macros", "test-util"] }
bmp_tracing = { workspace = true }
[lints]
workspace = true