Add CI runs on rustc beta on Windows and MacOS
[rust-lightning] / lightning / Cargo.toml
index 73be5fff34da17f17dca0b213587418cf2bdbf08..9a2861d6927da1969955c7b01f06877e5c95dafa 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning"
-version = "0.0.13"
+version = "0.0.99"
 authors = ["Matt Corallo"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/rust-bitcoin/rust-lightning/"
@@ -26,9 +26,15 @@ max_level_debug = []
 unsafe_revoked_tx_signing = []
 unstable = []
 
+no_std = ["hashbrown", "bitcoin/no-std"]
+std = ["bitcoin/std"]
+
+default = ["std"]
+
 [dependencies]
-bitcoin = "0.26"
+bitcoin = "0.27"
 
+hashbrown = { version = "0.11", optional = true }
 hex = { version = "0.3", optional = true }
 regex = { version = "0.1.80", optional = true }
 
@@ -37,7 +43,7 @@ hex = "0.3"
 regex = "0.1.80"
 
 [dev-dependencies.bitcoin]
-version = "0.26"
+version = "0.27"
 features = ["bitcoinconsensus"]
 
 [package.metadata.docs.rs]