Run with mutagen on travis.
[rust-lightning] / lightning / Cargo.toml
1 [package]
2 name = "lightning"
3 version = "0.0.11"
4 authors = ["Matt Corallo"]
5 license = "Apache-2.0"
6 repository = "https://github.com/rust-bitcoin/rust-lightning/"
7 description = """
8 A Bitcoin Lightning library in Rust.
9 Does most of the hard work, without implying a specific runtime, requiring clients implement basic network logic, chain interactions and disk storage.
10 Still missing tons of error-handling. See GitHub issues 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 build a client around it to even try.
11 """
12
13 [features]
14 # Unlog messages superior at targeted level.
15 max_level_off = []
16 max_level_error = []
17 max_level_warn = []
18 max_level_info = []
19 max_level_debug = []
20
21 # Testing only features, don't enable these unless you want to run rust-lightning tests!
22 fuzztarget = ["bitcoin/fuzztarget"]
23 mutation_testing = ["mutagen"]
24
25 [dependencies]
26 bitcoin = "0.23"
27 mutagen = { git = "https://github.com/TheBlueMatt/mutagen", optional = true }
28
29 [dev-dependencies.bitcoin]
30 version = "0.23"
31 features = ["bitcoinconsensus"]
32
33 [dev-dependencies]
34 hex = "0.3"
35 rand = "0.4"