d44890e1b25eea057edacf8b957a587963ed7a34
[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.6.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 [dependencies]
12 bech32 = "0.7"
13 lightning = { version = "0.0.98", path = "../lightning" }
14 secp256k1 = { version = "0.20", features = ["recovery"] }
15 num-traits = "0.2.8"
16 bitcoin_hashes = "0.9.4"
17
18 [dev-dependencies]
19 lightning = { version = "0.0.98", path = "../lightning", features = ["_test_utils"] }