-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
64 lines (48 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# cargo-features = ["bindeps"]
[workspace]
default-members = [".", "rpc", "cli"]
members = [".", "rpc", "cli"]
[package]
name = "lnpbp_nodes"
description = "Umbrella package for installing all LNP/BP nodes"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
categories = ["network-programming"]
version = "0.8.0-rc.1"
edition = "2021"
rust-version = "1.59.0"
readme = "README.md"
exclude = [".github", "Dockerfile", ".dockerignore", "doc"]
[lib]
name = "lnpbp_nodes"
[[bin]]
name = "bpd"
[[bin]]
name = "lnpd"
[[bin]]
name = "peerd"
[[bin]]
name = "channeld"
[[bin]]
name = "routed"
[[bin]]
name = "rgbd"
[[bin]]
name = "bucketd"
[[bin]]
name = "stormd"
[[bin]]
name = "transferd"
[[bin]]
name = "chatd"
[[bin]]
name = "downpourd"
[[bin]]
name = "stored"
[dependencies]
bp_node = { version = "0.8.0-alpha.2", artifact = "bin", lib = true }
lnp_node = { version = "0.8.0", artifact = "bin", lib = true, features = ["all"] }
rgb_node = { version = "0.8.0-rc.1", artifact = "bin", lib = true }
storm_node = { version = "0.8.0-beta.1", artifact = "bin", lib = true }
store_daemon = { version = "0.8.0", artifact = "bin", lib = true }