4 authors = ["Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning/"
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.
14 [package.metadata.docs.rs]
16 rustdoc-args = ["--cfg", "docsrs"]
19 # Internal test utilities exposed to other repo crates
20 _test_utils = ["hex", "regex", "bitcoin/bitcoinconsensus"]
21 # Unlog messages superior at targeted level.
28 # Allow signing of local transactions that may have been revoked or will be revoked, for functional testing (e.g. justice tx handling).
29 # This is unsafe to use in production because it may result in the counterparty publishing taking our funds.
30 unsafe_revoked_tx_signing = []
33 no-std = ["hashbrown", "bitcoin/no-std", "core2/alloc"]
36 # Generates low-r bitcoin signatures, which saves 1 byte in 50% of the cases
39 default = ["std", "grind_signatures"]
42 bitcoin = { version = "0.29.0", default-features = false, features = ["secp-recovery"] }
44 hashbrown = { version = "0.8", optional = true }
45 hex = { version = "0.4", optional = true }
46 regex = { version = "1.5.6", optional = true }
47 backtrace = { version = "0.3", optional = true }
49 core2 = { version = "0.3.0", optional = true, default-features = false }
55 [dev-dependencies.bitcoin]
57 default-features = false
58 features = ["bitcoinconsensus", "secp-recovery"]