lightning 0.1.10

A Bitcoin Lightning library in Rust. Does most of the hard work, without implying a specific runtime, requiring clients implement basic network logic, chain interactions and disk storage. 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.
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.1.10"
authors = ["Matt Corallo"]
description = """
A Bitcoin Lightning library in Rust.
Does most of the hard work, without implying a specific runtime, requiring clients implement basic network logic, chain interactions and disk storage.
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.
"""
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.libm]
version = "0.2"
default-features = false

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

[dependencies.lightning-types]
version = "0.2.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-types]
version = "0.2.0"
features = ["_test_utils"]

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

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

[features]
_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