Merge pull request #37 from radixrat/main
[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.101" }
12 lightning-block-sync = { version = "0.0.101", features = [ "rpc-client" ] }
13 lightning-invoice = { version = "0.9.0" }
14 lightning-net-tokio = { version = "0.0.101" }
15 lightning-persister = { version = "0.0.101" }
16 lightning-background-processor = { version = "0.0.101" }
17
18 base64 = "0.13.0"
19 bitcoin = "0.27"
20 bitcoin-bech32 = "0.12"
21 bech32 = "0.8"
22 hex = "0.3"
23
24 futures = "0.3"
25 time = "0.2"
26 rand = "0.4"
27 serde_json = { version = "1.0" }
28 tokio = { version = "1.5", 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"