Bump versions to LDK 116-alpha1 and invoice 24.0-alpha1
[rust-lightning] / lightning-invoice / Cargo.toml
1 [package]
2 name = "lightning-invoice"
3 description = "Data structures to parse and serialize BOLT11 lightning invoices"
4 version = "0.24.0-alpha1"
5 authors = ["Sebastian Geisler <sgeisler@wh2.tu-dresden.de>"]
6 documentation = "https://docs.rs/lightning-invoice/"
7 license = "MIT OR Apache-2.0"
8 keywords = [ "lightning", "bitcoin", "invoice", "BOLT11" ]
9 readme = "README.md"
10 repository = "https://github.com/lightningdevkit/rust-lightning/"
11 edition = "2018"
12
13 [package.metadata.docs.rs]
14 all-features = true
15 rustdoc-args = ["--cfg", "docsrs"]
16
17 [features]
18 default = ["std"]
19 no-std = ["hashbrown", "lightning/no-std"]
20 std = ["bitcoin_hashes/std", "num-traits/std", "lightning/std", "bech32/std"]
21
22 [dependencies]
23 bech32 = { version = "0.9.0", default-features = false }
24 lightning = { version = "0.0.116-alpha1", path = "../lightning", default-features = false }
25 secp256k1 = { version = "0.24.0", default-features = false, features = ["recovery", "alloc"] }
26 num-traits = { version = "0.2.8", default-features = false }
27 bitcoin_hashes = { version = "0.11", default-features = false }
28 hashbrown = { version = "0.8", optional = true }
29 serde = { version = "1.0.118", optional = true }
30 bitcoin = { version = "0.29.0", default-features = false }
31
32 [dev-dependencies]
33 lightning = { version = "0.0.116-alpha1", path = "../lightning", default-features = false, features = ["_test_utils"] }
34 hex = "0.4"
35 serde_json = { version = "1"}