Bump crate versions to 0.0.123-beta/invoice 0.31-beta
[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.31.0-beta"
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 = "2021"
12
13 [package.metadata.docs.rs]
14 all-features = true
15 rustdoc-args = ["--cfg", "docsrs"]
16
17 [features]
18 default = ["std"]
19 no-std = ["lightning/no-std"]
20 std = ["bitcoin/std", "lightning/std", "bech32/std"]
21
22 [dependencies]
23 bech32 = { version = "0.9.0", default-features = false }
24 lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false }
25 secp256k1 = { version = "0.27.0", default-features = false, features = ["recovery", "alloc"] }
26 serde = { version = "1.0.118", optional = true }
27 bitcoin = { version = "0.30.2", default-features = false }
28
29 [dev-dependencies]
30 lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false, features = ["_test_utils"] }
31 hex = { package = "hex-conservative", version = "0.1.1", default-features = false }
32 serde_json = { version = "1"}
33 hashbrown = { version = "0.13", default-features = false }