-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 1.28 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
[package]
name = "ddk-node"
version = "1.0.4"
authors = ["benny b <ben@bitcoinbay.foundation>"]
description = "DDK node to facilitate DLC contracts."
license = "MIT"
repository = "https://github.com/bennyhodl/dlcdevkit"
edition = "2021"
[dependencies]
ddk = { version = "1.0.4", path = "../ddk", features = ["postgres", "kormir", "nostr"] }
ddk-manager = { version = "1.0.4", path = "../ddk-manager", features = ["use-serde"] }
ddk-payouts = { version = "1.0.4", path = "../payouts" }
ddk-dlc = { version = "1.0.4", path = "../dlc", features = ["use-serde"] }
ddk-messages = { version = "1.0.4", path = "../dlc-messages", features = [ "use-serde"] }
bitcoin = { version = "0.32.6", features = ["rand", "serde"] }
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
hex = "0.4.3"
homedir = "0.3.3"
inquire = "0.7.5"
prost = "0.12.1"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.125"
tokio = { version = "1.38.0", features = ["full"] }
tonic = "0.10.2"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
reqwest = { version = "0.12.12", features = ["json"] }
chrono = "0.4.39"
[build-dependencies]
tonic-build = "0.10.2"
[[bin]]
name = "ddk-node"
path = "./src/bin/node.rs"
[[bin]]
name = "ddk-cli"
path = "./src/bin/cli.rs"