X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=lightning-invoice%2FCargo.toml;h=404f12d76eb1a87ef1728dd422f1cb14a9fd9eb5;hb=32d13a2ff8796c2edf2177751eab02242ae10216;hp=47bf9d744dcb91f554a69400521e439759e03f66;hpb=b77b5473011648e53fa1cff540a045d5b1c4e9d9;p=rust-lightning diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index 47bf9d74..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,11 +9,11 @@ keywords = [ "lightning", "bitcoin", "invoice", "BOLT11" ] readme = "README.md" [dependencies] -bech32 = "0.7" +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"] }