2019-06-01 07:02:31 -04:00
|
|
|
[package]
|
|
|
|
name = "lightning-net-tokio"
|
2024-04-19 01:03:03 +00:00
|
|
|
version = "0.0.123-beta"
|
2019-06-01 07:02:31 -04:00
|
|
|
authors = ["Matt Corallo"]
|
2021-03-09 16:51:14 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-26 22:53:16 -05:00
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning/"
|
2019-06-01 07:02:31 -04:00
|
|
|
description = """
|
|
|
|
Implementation of the rust-lightning network stack using Tokio.
|
2020-02-03 18:47:38 -05:00
|
|
|
For Rust-Lightning clients which wish to make direct connections to Lightning P2P nodes, this is a simple alternative to implementing the required network stack, especially for those already using Tokio.
|
2019-06-01 07:02:31 -04:00
|
|
|
"""
|
2023-10-24 15:16:38 +02:00
|
|
|
edition = "2021"
|
2019-06-01 07:02:31 -04:00
|
|
|
|
2022-02-11 22:22:20 -06:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2019-06-01 07:02:31 -04:00
|
|
|
[dependencies]
|
2024-05-11 10:55:02 +08:00
|
|
|
bitcoin = "0.31.2"
|
2024-04-19 01:03:03 +00:00
|
|
|
lightning = { version = "0.0.123-beta", path = "../lightning" }
|
2023-12-13 10:37:58 -08:00
|
|
|
tokio = { version = "1.35", features = [ "rt", "sync", "net", "time" ] }
|
2020-02-01 12:27:30 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-13 10:37:58 -08:00
|
|
|
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
|
2024-04-19 01:03:03 +00:00
|
|
|
lightning = { version = "0.0.123-beta", path = "../lightning", features = ["_test_utils"] }
|
2024-07-12 11:23:50 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|