-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (47 loc) 路 1.96 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (47 loc) 路 1.96 KB
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
48
49
50
51
52
53
54
55
56
[workspace]
resolver = "2"
members = ["ddk", "dlc", "dlc-messages", "dlc-trie", "payouts", "ddk-node", "ddk-manager", "kormir", "testenv"]
[workspace.package]
version = "2.0.0-rc.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/bennyhodl/dlcdevkit"
homepage = "https://github.com/bennyhodl/dlcdevkit"
[workspace.dependencies]
# Default-features are disabled here so no-std crates (dlc, dlc-messages, dlc-trie)
# don't pull std. Std-using crates must opt in via `features = ["std"]`.
ddk = { version = "2.0.0-rc.2", path = "ddk", default-features = false }
ddk-dlc = { version = "2.0.0-rc.2", path = "dlc", default-features = false }
ddk-messages = { version = "2.0.0-rc.2", path = "dlc-messages", default-features = false }
ddk-trie = { version = "2.0.0-rc.2", path = "dlc-trie", default-features = false }
ddk-manager = { version = "2.0.0-rc.2", path = "ddk-manager", default-features = false }
ddk-payouts = { version = "2.0.0-rc.2", path = "payouts" }
kormir = { version = "2.0.0-rc.2", path = "kormir" }
# Path-only (no version): cargo strips it from the published manifests.
ddk-testenv = { path = "testenv" }
bitcoin = { version = "0.32.6", default-features = false }
lightning = { version = "0.2.2", default-features = false }
secp256k1-zkp = "0.11.0"
serde = { version = "1.0.209", default-features = false }
serde_json = "1.0.142"
# async / runtime
tokio = "1.41.1"
async-trait = "0.1.89"
futures = "0.3.31"
# error handling
anyhow = "1.0.86"
thiserror = "2.0.12"
# logging
tracing = "0.1.41"
log = "0.4.22"
# utility
hex = "0.4.3"
chrono = "0.4.39"
# dev / test
bitcoincore-rpc = "0.19.0"
bitcoincore-rpc-json = "0.19.0"
dotenvy = "0.15.7"
# Managed regtest backends for integration tests. `download` fetches the
# bitcoind / electrs binaries at build time into OUT_DIR.
bitcoind = { version = "0.41.0", default-features = false, features = ["28_2", "download"] }
electrsd = { version = "0.41.0", default-features = false, features = ["esplora_a33e97e1", "download"] }