-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathCargo.toml
44 lines (39 loc) · 1.32 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
[package]
name = "lnp-cli"
description = "LNP node command-line interface"
version = "0.8.0"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"]
categories = ["network-programming", "command-line-utilities"]
edition = "2021"
rust-version = "1.59.0"
readme = "../README.md"
build = "build.rs"
[[bin]]
path = "src/main.rs"
name = "lnp-cli"
[dependencies]
amplify = "3.13.0"
lnp-core = { version = "0.8.0", default-features = false }
lnp_rpc = { version = "0.8.0", path = "../rpc" }
lightning-invoice = { version = "0.16.0", optional = true }
internet2 = "0.8.3"
microservices = { version = "0.8.10", default-features = false, features = ["cli"] }
shellexpand = "2.1"
clap = { version = "~3.1.18", features = ["derive", "env"] }
log = "0.4.14"
[build-dependencies]
amplify = "3.12.1"
clap = { version = "~3.1.18", features = ["derive", "env"] }
clap_complete = "~3.1.4"
lightning-invoice = "0.16.0"
internet2 = "0.8.0"
lnp-core = { version = "0.8.0-beta.1", default-features = false }
lnp_rpc = { version = "0.8.0-beta.1", path = "../rpc" }
configure_me_codegen = "0.4"
[features]
default = ["bolt", "bifrost"]
all = ["bolt", "bifrost"]
bolt = ["lnp-core/bolt", "lightning-invoice", "lnp_rpc/bolt"]
bifrost = ["lnp-core/bifrost", "lnp_rpc/bifrost"]