[package]
edition = "2024"
name = "lnsocket"
version = "0.5.2"
authors = ["William Casarin <jb55@jb55.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An async lightning network socket with with core-lightning rpc support"
homepage = "https://github.com/jb55/lnsocket-rs"
documentation = "https://docs.rs/lnsocket"
readme = "README.md"
keywords = [
"lightning",
"bolt8",
"noise",
"lnsocket",
"bitcoin",
]
categories = [
"cryptography::cryptocurrencies",
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/jb55/lnsocket-rs"
[lib]
name = "lnsocket"
path = "src/lib.rs"
[dependencies.bitcoin]
version = "0.32.5"
features = [
"std",
"rand",
"rand-std",
]
[dependencies.hashbrown]
version = "0.13"
default-features = false
[dependencies.hex]
version = "0.4.3"
[dependencies.lightning-types]
version = "0.2.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"net",
"io-util",
"macros",
"time",
"sync",
]
[dependencies.tracing]
version = "0.1.41"