-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
47 lines (39 loc) · 1.36 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "ddk-node"
version = "0.0.14"
authors = ["benny b <[email protected]>"]
description = "DDK node to facilitate DLC contracts."
license = "MIT"
repository = "https://github.com/bennyhodl/dlcdevkit"
edition = "2021"
[dependencies]
ddk = { version = "0.0.14", path = "../ddk", features = ["lightning", "marketplace", "sled", "kormir"] }
ddk-manager = { version = "0.7.3", path = "../ddk-manager", features = ["use-serde"] }
ddk-payouts = { version = "0.0.14", path = "../payouts" }
dlc = { version = "0.7.1", features = ["use-serde"] }
dlc-messages = { version = "0.7.1", features = [ "use-serde"] }
# dlc = { path = "../../rust-dlc/dlc", features = ["use-serde"] }
# dlc-messages = { path = "../../rust-dlc/dlc-messages", features = [ "use-serde"] }
bitcoin = { version = "0.32.2", 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 = "0.3.18"
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"