]> git.bitcoin.ninja Git - rust-lightning/blob - Cargo.toml
822484298536ada033829f0f67100bf107246ac0
[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 bitcoin-chain = { git = "https://github.com/rust-bitcoin/rust-bitcoin-chain", branch = "master" }
19 rust-crypto = "0.2"
20 rand = "0.4"
21 secp256k1 = "0.8"
22
23 [patch.crates-io]
24 bitcoin = { git = "https://github.com/rust-bitcoin/rust-bitcoin", branch = "master"  }