forked from LightningPeach/lpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (39 loc) · 959 Bytes
/
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
47
48
49
[workspace]
members = [
"../lpd", "bincode", "wire", "brontide", "shachain", "chainntfs", "channel", "wallet",
"routing", "bitcoin-types", "common-types",
"testenv"
]
[package]
name = "lpd"
version = "0.0.0"
description = "The implementation of a Lightning Network node"
license = "Apache-2.0"
authors = ["LightningPeach <[email protected]>"]
[lib]
name = "lpd"
[[example]]
name = "wasm-basic"
crate-type = ["cdylib"]
[[example]]
name = "wasm-runner"
[[example]]
name = "run-lnd"
[dependencies]
wire = { path = "wire", features = ["testing"] }
brontide = { path = "brontide" }
shachain = { path = "shachain" }
chainntfs = { path = "chainntfs" }
channel = { path = "channel" }
wallet = { path = "wallet" }
routing = { path = "routing" }
rand = "0.5.4"
secp256k1 = "0.9.2"
hex = "0.3.2"
hex-literal = "0.1.1"
tokio = "0.1.11"
futures = "0.1.25"
bitcoin = "0.13.2"
rust-crypto = "0.2.36"
[dev-dependencies]
serde_derive = "1.0.70"