2019-06-01 13:02:31 +02:00
|
|
|
[package]
|
|
|
|
name = "lightning-net-tokio"
|
2023-09-26 22:21:08 +02:00
|
|
|
version = "0.0.117-alpha2"
|
2019-06-01 13:02:31 +02:00
|
|
|
authors = ["Matt Corallo"]
|
2021-03-09 22:51:14 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-27 04:53:16 +01:00
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning/"
|
2019-06-01 13:02:31 +02:00
|
|
|
description = """
|
|
|
|
Implementation of the rust-lightning network stack using Tokio.
|
2020-02-04 00:47:38 +01: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 13:02:31 +02:00
|
|
|
"""
|
2021-03-09 22:51:14 +01:00
|
|
|
edition = "2018"
|
2019-06-01 13:02:31 +02:00
|
|
|
|
2022-02-12 05:22:20 +01:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2019-06-01 13:02:31 +02:00
|
|
|
[dependencies]
|
2022-08-09 17:39:51 +02:00
|
|
|
bitcoin = "0.29.0"
|
2023-09-26 22:21:08 +02:00
|
|
|
lightning = { version = "0.0.117-alpha2", path = "../lightning" }
|
2023-08-28 20:39:04 +02:00
|
|
|
tokio = { version = "1.0", features = [ "rt", "sync", "net", "time" ] }
|
2020-02-01 18:27:30 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-28 20:39:04 +02:00
|
|
|
tokio = { version = "1.14", features = [ "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
|
2023-09-26 22:21:08 +02:00
|
|
|
lightning = { version = "0.0.117-alpha2", path = "../lightning", features = ["_test_utils"] }
|