Fix update_fee handling, add TODOs
[rust-lightning] / Cargo.toml
index bff665320040e6bfb1e03babf8fdc7ccd1800925..f5aa85db4aa7f4280b39f37682ce90d54dd15940 100644 (file)
@@ -2,7 +2,7 @@
 name = "lightning"
 version = "0.0.1"
 authors = ["Matt Corallo"]
-license = "AGPL-3.0"
+license = "Apache-2.0"
 repository = "https://github.com/TheBlueMatt/rust-lightning/"
 description = """
 A Bitcoin Lightning implementation in Rust.
@@ -12,9 +12,10 @@ Still super-early code-dump quality and is missing large chunks. See README in g
 [features]
 # Supports tracking channels with a non-bitcoin chain hashes. Currently enables all kinds of fun DoS attacks.
 non_bitcoin_chain_hash_routing = []
+fuzztarget = ["secp256k1/fuzztarget", "bitcoin/fuzztarget"]
 
 [dependencies]
-bitcoin = "0.11"
+bitcoin = "0.12"
 rust-crypto = "0.2"
 rand = "0.4"
-secp256k1 = "0.8"
+secp256k1 = "0.9"