Disable fast-fail to let CI actually run even though beta is broken
[rust-lightning] / lightning-invoice / Cargo.toml
index e19c7ac3f3131c1aeabe97eb0125d104343bac6b..ae37382fd340290a961edd9adc03ecb7fb3535b9 100644 (file)
@@ -1,20 +1,19 @@
 [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 <sgeisler@wh2.tu-dresden.de>"]
-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"
+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"]
-
+[dev-dependencies]
+lightning = { version = "0.0.99", path = "../lightning", features = ["_test_utils"] }