Drop `fuzztarget` feature entirely
[rust-lightning] / lightning / Cargo.toml
1 [package]
2 name = "lightning"
3 version = "0.0.104"
4 authors = ["Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/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 # Internal test utilities exposed to other repo crates
15 _test_utils = ["hex", "regex", "bitcoin/bitcoinconsensus"]
16 # Unlog messages superior at targeted level.
17 max_level_off = []
18 max_level_error = []
19 max_level_warn = []
20 max_level_info = []
21 max_level_debug = []
22 max_level_trace = []
23 # Allow signing of local transactions that may have been revoked or will be revoked, for functional testing (e.g. justice tx handling).
24 # This is unsafe to use in production because it may result in the counterparty publishing taking our funds.
25 unsafe_revoked_tx_signing = []
26 _bench_unstable = []
27
28 no-std = ["hashbrown", "bitcoin/no-std", "core2/alloc"]
29 std = ["bitcoin/std"]
30
31 default = ["std"]
32
33 [dependencies]
34 bitcoin = { version = "0.27", default-features = false, features = ["secp-recovery"] }
35 # TODO remove this once rust-bitcoin PR #637 is released
36 secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }
37
38 hashbrown = { version = "0.11", optional = true }
39 hex = { version = "0.4", optional = true }
40 regex = { version = "0.1.80", optional = true }
41 backtrace = { version = "0.3", optional = true }
42
43 core2 = { version = "0.3.0", optional = true, default-features = false }
44
45 [dev-dependencies]
46 hex = "0.4"
47 regex = "0.1.80"
48 # TODO remove this once rust-bitcoin PR #637 is released
49 secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }
50
51 [dev-dependencies.bitcoin]
52 version = "0.27"
53 default-features = false
54 features = ["bitcoinconsensus", "secp-recovery"]