forked from cygnet3/spdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 979 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 979 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
28
29
30
31
32
33
34
35
[workspace]
members = ["spdk-core", "backend-blindbit-v1", "spdk-wallet", "silentpayments"]
resolver = "3"
[workspace.dependencies]
# Internal workspace crates
spdk-core = { path = "spdk-core" }
silentpayments = { path = "silentpayments" }
backend-blindbit-v1 = { path = "backend-blindbit-v1"}
# Core dependencies - shared across crates
anyhow = "1.0"
bech32 = "0.9"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
bitcoin = { version = "0.32.8", features = ["serde", "rand", "base64"] }
bitcoin_hashes = "0.13.0"
rayon = "1.10.0"
itertools = "0.14.0"
futures = "0.3"
async-trait = "0.1"
log = "0.4"
hex = { version = "0.4.3", features = ["serde"] }
bdk_coin_select = "0.4.0"
reqwest = { version = "0.12.4", features = [
"json",
"rustls-tls",
"gzip",
], default-features = false }
secp256k1 = { version = "0.29.0" }
[workspace.package]
repository = "https://github.com/cygnet3/spdk"
authors = ["cygnet <cygnet3@proton.me>"]
license = "MIT"