Support paying 0-amount offers and invoices
[ldk-sample] / Cargo.toml
1 [package]
2 name = "ldk-sample"
3 version = "0.1.0"
4 authors = ["Valentine Wallace <vwallace@protonmail.com>"]
5 license = "MIT OR Apache-2.0"
6 edition = "2018"
7
8 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10 [dependencies]
11 lightning = { version = "0.0.121", features = ["max_level_trace"] }
12 lightning-block-sync = { version = "0.0.121", features = [ "rpc-client", "tokio" ] }
13 lightning-invoice = { version = "0.29.0" }
14 lightning-net-tokio = { version = "0.0.121" }
15 lightning-persister = { version = "0.0.121" }
16 lightning-background-processor = { version = "0.0.121", features = [ "futures" ] }
17 lightning-rapid-gossip-sync = { version = "0.0.121" }
18
19 base64 = "0.13.0"
20 bitcoin = "0.30.2"
21 bitcoin-bech32 = "0.12"
22 bech32 = "0.8"
23 libc = "0.2"
24
25 chrono = { version = "0.4", default-features = false, features = ["clock"] }
26 rand = "0.4"
27 serde_json = { version = "1.0" }
28 tokio = { version = "1", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
29
30 [profile.release]
31 panic = "abort"
32
33 [profile.dev]
34 panic = "abort"