Remove redundant `is_none()` check
[ldk-sample] / Cargo.toml
1 [package]
2 name = "ldk-tutorial-node"
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.110", features = ["max_level_trace"] }
12 lightning-block-sync = { version = "0.0.110", features = [ "rpc-client" ] }
13 lightning-invoice = { version = "0.18" }
14 lightning-net-tokio = { version = "0.0.110" }
15 lightning-persister = { version = "0.0.110" }
16 lightning-background-processor = { version = "0.0.110" }
17 lightning-rapid-gossip-sync = { version = "0.0.110" }
18
19 base64 = "0.13.0"
20 bitcoin = "0.28.1"
21 bitcoin-bech32 = "0.12"
22 bech32 = "0.8"
23 hex = "0.3"
24
25 futures = "0.3"
26 chrono = "0.4"
27 rand = "0.4"
28 serde_json = { version = "1.0" }
29 tokio = { version = "1", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
30
31 [profile.release]
32 panic = "abort"
33
34 [profile.dev]
35 panic = "abort"