Merge branch 'master' of github.com:rust-bitcoin/rust-lightning into use-workspaces
[rust-lightning] / lightning-net-tokio / Cargo.toml
1 [package]
2 name = "lightning-net-tokio"
3 version = "0.0.1"
4 authors = ["Matt Corallo"]
5 license = "Apache-2.0"
6 description = """
7 Implementation of the rust-lightning network stack using Tokio.
8 For Rust-Lightning clients which wish to make direct connections to Lightning P2P nodes, this is a simple alternative to implementing the nerequired network stack, especially for those already using Tokio.
9 """
10
11 [dependencies]
12 bitcoin = "0.20"
13 bitcoin_hashes = "0.7"
14 lightning = { version = "0.0.9", path = "../lightning" }
15 secp256k1 = "0.15"
16 tokio-codec = "0.1"
17 futures = "0.1"
18 tokio = "0.1"
19 bytes = "0.4"