2b0c2d16b7a3bf9f108157ad981fc1893dab6107
[rust-lightning] / lightning / Cargo.toml
1 [package]
2 name = "lightning"
3 version = "0.0.105"
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 [package.metadata.docs.rs]
14 features = ["std"]
15 rustdoc-args = ["--cfg", "docsrs"]
16
17 [features]
18 # Internal test utilities exposed to other repo crates
19 _test_utils = ["hex", "regex", "bitcoin/bitcoinconsensus"]
20 # Unlog messages superior at targeted level.
21 max_level_off = []
22 max_level_error = []
23 max_level_warn = []
24 max_level_info = []
25 max_level_debug = []
26 max_level_trace = []
27 # Allow signing of local transactions that may have been revoked or will be revoked, for functional testing (e.g. justice tx handling).
28 # This is unsafe to use in production because it may result in the counterparty publishing taking our funds.
29 unsafe_revoked_tx_signing = []
30 _bench_unstable = []
31
32 no-std = ["hashbrown", "bitcoin/no-std", "core2/alloc"]
33 std = ["bitcoin/std"]
34
35 # Generates low-r bitcoin signatures, which saves 1 byte in 50% of the cases
36 grind_signatures = []
37
38 default = ["std", "grind_signatures"]
39
40 [dependencies]
41 bitcoin = { version = "0.27", default-features = false, features = ["secp-recovery"] }
42 # TODO remove this once rust-bitcoin PR #637 is released
43 secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }
44
45 hashbrown = { version = "0.11", optional = true }
46 hex = { version = "0.4", optional = true }
47 regex = { version = "0.2.11", optional = true }
48 backtrace = { version = "0.3", optional = true }
49
50 core2 = { version = "0.3.0", optional = true, default-features = false }
51
52 [dev-dependencies]
53 hex = "0.4"
54 regex = "0.2.11"
55 # TODO remove this once rust-bitcoin PR #637 is released
56 secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }
57
58 [dev-dependencies.bitcoin]
59 version = "0.27"
60 default-features = false
61 features = ["bitcoinconsensus", "secp-recovery"]