X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-invoice%2FCargo.toml;h=71648b3c84d40ef70c7857ffa9918ccb51824dd7;hb=94c41d8c0ac6e0ae2409719e7ca67213cc14ecbf;hp=758578ca465b5f6cf57e29440e5439002c0ced64;hpb=f40e47c1ef6957ab548345162ffbd540bc7fe0a2;p=rust-lightning diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index 758578ca..71648b3c 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.12.0" authors = ["Sebastian Geisler "] documentation = "https://docs.rs/lightning-invoice/" license = "MIT OR Apache-2.0" @@ -9,12 +9,12 @@ 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.104", 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.104", path = "../lightning", features = ["_test_utils"] }