Use "Minimum", not "Minmal" for MSRV.
[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.12.0"
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
11 [features]
12 default = ["std"]
13 no-std = ["hashbrown", "lightning/no-std", "core2/alloc"]
14 std = ["bitcoin_hashes/std", "num-traits/std", "lightning/std", "bech32/std"]
15
16 [dependencies]
17 bech32 = { version = "0.8", default-features = false }
18 lightning = { version = "0.0.104", path = "../lightning", default-features = false }
19 secp256k1 = { version = "0.20", default-features = false, features = ["recovery", "alloc"] }
20 num-traits = { version = "0.2.8", default-features = false }
21 bitcoin_hashes = { version = "0.10", default-features = false }
22 hashbrown = { version = "0.11", optional = true }
23 core2 = { version = "0.3.0", default-features = false, optional = true }
24
25 [dev-dependencies]
26 lightning = { version = "0.0.104", path = "../lightning", default-features = false, features = ["_test_utils"] }
27 hex = "0.4"