34f4d2d0433fcc8d66854e65ba05427268b515e3
[rust-lightning] / lightning-net-tokio / Cargo.toml
1 [package]
2 name = "lightning-net-tokio"
3 version = "0.0.98"
4 authors = ["Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-bitcoin/rust-lightning/"
7 description = """
8 Implementation of the rust-lightning network stack using Tokio.
9 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.
10 """
11 edition = "2018"
12
13 [dependencies]
14 bitcoin = "0.26"
15 lightning = { version = "0.0.98", path = "../lightning" }
16 tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }
17
18 [dev-dependencies]
19 tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }