X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-invoice%2FCargo.toml;h=010becc27198333100fb740664f92cc258f64279;hb=2b4ca9e9c53ee676620932754165bcc5e2308153;hp=e19c7ac3f3131c1aeabe97eb0125d104343bac6b;hpb=f00bb10a82c122102f712675e6e4523bb5678e2a;p=rust-lightning diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index e19c7ac3..010becc2 100644 --- a/lightning-invoice/Cargo.toml +++ b/lightning-invoice/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "lightning-invoice" description = "Data structures to parse and serialize BOLT11 lightning invoices" -version = "0.4.0" +version = "0.11.0" authors = ["Sebastian Geisler "] -license = "Apache-2.0" documentation = "https://docs.rs/lightning-invoice/" -repository = "https://github.com/rust-bitcoin/rust-lightning-invoice" +license = "MIT OR Apache-2.0" keywords = [ "lightning", "bitcoin", "invoice", "BOLT11" ] readme = "README.md" [dependencies] -bech32 = "0.7" +bech32 = "0.8" +lightning = { version = "0.0.103", path = "../lightning" } secp256k1 = { version = "0.20", features = ["recovery"] } num-traits = "0.2.8" -bitcoin_hashes = "0.9.4" - -[lib] -crate-type = ["cdylib", "rlib"] +bitcoin_hashes = "0.10" +[dev-dependencies] +hex = "0.3" +lightning = { version = "0.0.103", path = "../lightning", features = ["_test_utils"] }