mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
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
21 lines
790 B
TOML
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"
|