2019-06-01 13:02:31 +02:00
|
|
|
[package]
|
|
|
|
name = "lightning-net-tokio"
|
2021-03-09 00:50:35 +01:00
|
|
|
version = "0.0.13"
|
2019-06-01 13:02:31 +02:00
|
|
|
authors = ["Matt Corallo"]
|
|
|
|
license = "Apache-2.0"
|
2020-02-01 18:27:30 +01:00
|
|
|
edition = "2018"
|
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
|
|
|
"""
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-15 02:57:56 +01:00
|
|
|
bitcoin = "0.26"
|
2021-03-09 00:50:35 +01:00
|
|
|
lightning = { version = "0.0.13", path = "../lightning" }
|
2021-01-26 21:38:19 +01:00
|
|
|
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
|
2020-02-01 18:27:30 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-26 21:38:19 +01:00
|
|
|
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
|