rust-lightning/Cargo.toml
Matt Corallo 1d2774dd64 Add some fuzz targets.
Sadly none of them are really any good without some hand-holding to
generate good input data, and unless sha256 gets stubbed out I'm
not sure they're gonna get good without a symbolic execution fuzzer
2018-03-23 13:16:24 -04:00

21 lines
790 B
TOML

[package]
name = "lightning"
version = "0.0.1"
authors = ["Matt Corallo"]
license = "Apache-2.0"
repository = "https://github.com/TheBlueMatt/rust-lightning/"
description = """
A Bitcoin Lightning implementation in Rust.
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.
"""
[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.12"
rust-crypto = "0.2"
rand = "0.4"
secp256k1 = "0.9"