Bump to release 0.0.14
[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 = "0.0.14"
12 lightning-block-sync = { version = "0.0.14", features = [ "rpc-client" ] }
13 lightning-invoice = "0.5"
14 lightning-net-tokio = "0.0.14"
15 lightning-persister = "0.0.14"
16 lightning-background-processor = "0.0.14"
17
18 base64 = "0.13.0"
19 bitcoin = "0.26"
20 bitcoin-bech32 = "0.7"
21 bech32 = "0.7"
22 hex = "0.3"
23
24 time = "0.2"
25 rand = "0.4"
26 serde_json = { version = "1.0" }
27 tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
28
29 [profile.release]
30 panic = "abort"
31
32 [profile.dev]
33 panic = "abort"