Merge pull request #82 from TheBlueMatt/main
[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.112", features = ["max_level_trace"] }
12 lightning-block-sync = { version = "0.0.112", features = [ "rpc-client" ] }
13 lightning-invoice = { version = "0.20" }
14 lightning-net-tokio = { version = "0.0.112" }
15 lightning-persister = { version = "0.0.112" }
16 lightning-background-processor = { version = "0.0.112" }
17 lightning-rapid-gossip-sync = { version = "0.0.112" }
18
19 base64 = "0.13.0"
20 bitcoin = "0.29.0"
21 bitcoin-bech32 = "0.12"
22 bech32 = "0.8"
23 hex = "0.3"
24 libc = "0.2"
25
26 futures = "0.3"
27 chrono = "0.4"
28 rand = "0.4"
29 serde_json = { version = "1.0" }
30 tokio = { version = "1", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
31
32 [profile.release]
33 panic = "abort"
34
35 [profile.dev]
36 panic = "abort"