lightning 0.2.1

A Complete Bitcoin Lightning Library in Rust. Handles the core functionality of the Lightning Network, allowing clients to implement custom wallet, chain interactions, storage and network logic without enforcing a specific runtime.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "lightning"
version = "0.2.1"
authors = ["Matt Corallo"]
description = """
A Complete Bitcoin Lightning Library in Rust.
Handles the core functionality of the Lightning Network, allowing clients to implement custom wallet, chain interactions, storage and network logic without enforcing a specific runtime.
"""
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/lightningdevkit/rust-lightning/"

[package.metadata.docs.rs]
features = [
    "std",
    "dnssec",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[dependencies.backtrace]
version = "0.3"
optional = true

[dependencies.bech32]
version = "0.11.0"
default-features = false

[dependencies.bitcoin]
version = "0.32.2"
features = ["secp-recovery"]
default-features = false

[dependencies.dnssec-prover]
version = "0.6"
default-features = false

[dependencies.hashbrown]
version = "0.13"
default-features = false

[dependencies.inventory]
version = "0.3"
optional = true

[dependencies.libm]
version = "0.2"
default-features = false

[dependencies.lightning-invoice]
version = "0.34.0"
default-features = false

[dependencies.lightning-macros]
version = "0.2.1"

[dependencies.lightning-types]
version = "0.3.0"
default-features = false

[dependencies.possiblyrandom]
version = "0.2"
default-features = false

[dependencies.regex]
version = "1.5.6"
optional = true

[dev-dependencies.bitcoin]
version = "0.32.2"
features = [
    "bitcoinconsensus",
    "secp-recovery",
]
default-features = false

[dev-dependencies.lightning-macros]
version = "0.2.1"

[dev-dependencies.lightning-types]
version = "0.3.0"
features = ["_test_utils"]

[dev-dependencies.parking_lot]
version = "0.12"
default-features = false

[dev-dependencies.regex]
version = "1.5.6"

[features]
_externalize_tests = [
    "inventory",
    "_test_utils",
]
_test_utils = [
    "regex",
    "bitcoin/bitcoinconsensus",
    "lightning-types/_test_utils",
]
default = [
    "std",
    "grind_signatures",
]
dnssec = ["dnssec-prover/validation"]
grind_signatures = []
std = []
unsafe_revoked_tx_signing = []

[target."cfg(ldk_bench)".dependencies.criterion]
version = "0.4"
optional = true
default-features = false