-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (38 loc) · 1.25 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
[package]
name = "ddk-node"
authors = ["benny b <ben@bitcoinbay.foundation>"]
description = "DDK node to facilitate DLC contracts."
license.workspace = true
repository.workspace = true
version.workspace = true
edition.workspace = true
[dependencies]
ddk = { workspace = true, features = ["postgres", "kormir", "nostr"] }
ddk-manager = { workspace = true, features = ["std", "use-serde"] }
ddk-payouts = { workspace = true }
ddk-dlc = { workspace = true, features = ["std", "use-serde"] }
ddk-messages = { workspace = true, features = ["std", "use-serde"] }
bitcoin = { workspace = true, features = ["std", "rand", "serde"] }
anyhow = { workspace = true }
clap = { version = "4.5.9", features = ["derive"] }
hex = { workspace = true }
homedir = "0.3.3"
inquire = "0.7.5"
prost = "0.14.3"
serde = { workspace = true, features = ["std", "derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tonic = "0.14.6"
tonic-prost = "0.14.6"
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
chrono = { workspace = true }
[build-dependencies]
tonic-build = "0.14.6"
tonic-prost-build = "0.14.6"
[[bin]]
name = "ddk-node"
path = "./src/bin/node.rs"
[[bin]]
name = "ddk-cli"
path = "./src/bin/cli.rs"