9c84b1353aeb460f7dc9821fa6b3f76dfad5a785
[rust-lightning] / lightning-net-tokio / Cargo.toml
1 [package]
2 name = "lightning-net-tokio"
3 version = "0.0.3"
4 authors = ["Matt Corallo"]
5 license = "Apache-2.0"
6 edition = "2018"
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
12 [dependencies]
13 bitcoin = "0.21"
14 bitcoin_hashes = "0.7"
15 lightning = { version = "0.0.10", path = "../lightning" }
16 secp256k1 = "0.15"
17 tokio = { version = ">=0.2.12", features = [ "io-util", "macros", "rt-core", "sync", "tcp", "time" ] }
18
19 [dev-dependencies]
20 tokio = { version = ">=0.2.12", features = [ "io-util", "macros", "rt-core", "rt-threaded", "sync", "tcp", "time" ] }