Merge pull request #8 from TheBlueMatt/master
[rust-lightning] / Cargo.toml
1 [package]
2 name = "lightning"
3 version = "0.0.1"
4 authors = ["Matt Corallo"]
5 license = "Apache-2.0"
6 repository = "https://github.com/TheBlueMatt/rust-lightning/"
7 description = """
8 A Bitcoin Lightning implementation in Rust.
9 Still super-early code-dump quality and is missing large chunks. See README in git repo for suggested projects if you want to contribute. Don't have to bother telling you not to use this for anything serious, because you'd have to finish building it to even try.
10 """
11
12 [features]
13 # Supports tracking channels with a non-bitcoin chain hashes. Currently enables all kinds of fun DoS attacks.
14 non_bitcoin_chain_hash_routing = []
15
16 [dependencies]
17 bitcoin = "0.11"
18 rust-crypto = "0.2"
19 rand = "0.4"
20 secp256k1 = "0.8"