X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-invoice%2FCargo.toml;h=404f12d76eb1a87ef1728dd422f1cb14a9fd9eb5;hb=3f229052eaba48d13ab66e933bc8e63efea5ecaf;hp=758578ca465b5f6cf57e29440e5439002c0ced64;hpb=21cb8db1b6256335952c4664430287f10f5ee522;p=rust-lightning diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index 758578ca..404f12d7 100644 --- a/lightning-invoice/Cargo.toml +++ b/lightning-invoice/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lightning-invoice" description = "Data structures to parse and serialize BOLT11 lightning invoices" -version = "0.4.0" +version = "0.7.0" authors = ["Sebastian Geisler "] documentation = "https://docs.rs/lightning-invoice/" license = "MIT OR Apache-2.0" @@ -9,12 +9,11 @@ keywords = [ "lightning", "bitcoin", "invoice", "BOLT11" ] readme = "README.md" [dependencies] -bech32 = "0.7" -lightning = { version = "0.0.13", path = "../lightning" } +bech32 = "0.8" +lightning = { version = "0.0.99", 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] +lightning = { version = "0.0.99", path = "../lightning", features = ["_test_utils"] }