Pure import of lightning-invoice crate
[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.4.0"
5 authors = ["Sebastian Geisler <sgeisler@wh2.tu-dresden.de>"]
6 license = "Apache-2.0"
7 documentation = "https://docs.rs/lightning-invoice/"
8 repository = "https://github.com/rust-bitcoin/rust-lightning-invoice"
9 keywords = [ "lightning", "bitcoin", "invoice", "BOLT11" ]
10 readme = "README.md"
11
12 [dependencies]
13 bech32 = "0.7"
14 secp256k1 = { version = "0.20", features = ["recovery"] }
15 num-traits = "0.2.8"
16 bitcoin_hashes = "0.9.4"
17
18 [lib]
19 crate-type = ["cdylib", "rlib"]
20