forked from lightningdevkit/ldk-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (43 loc) · 1.27 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
[package]
name = "lnnode"
version = "0.1.0"
authors = ["Enigbe Ochekliye <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lightning = { version = "0.0.106", features = ["max_level_trace"] }
lightning-block-sync = { version = "0.0.106", features = [ "rpc-client" ] }
lightning-invoice = { version = "0.14" }
lightning-net-tokio = { version = "0.0.106" }
lightning-persister = { version = "0.0.106" }
lightning-background-processor = { version = "0.0.106" }
base64 = "0.13.0"
bitcoin = { version = "0.27", features = ["use-serde"]}
bitcoin-bech32 = "0.12"
bech32 = "0.8"
hex = "0.3"
futures = "0.3"
chrono = "0.4"
rand = "0.4"
serde_json = { version = "1.0" }
tokio = { version = "1", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
actix-web = "4.0.1"
config = "0.13.1"
serde = {version = "1", features = ["derive"]}
dotenv = "0.15.0"
clap = "3.1.8"
reqwest = { version = "0.11.10", features = ["json"]}
[profile.release]
panic = "abort"
[profile.dev]
panic = "abort"
[[bin]]
name = "lnnode"
path = "src/lib/main.rs"
[[bin]]
name = "lnnode-cli"
path = "src/bin/cli.rs"
[lib]
name = "lnnode"
path = "src/lib/main.rs"