name = "lightning-background-processor"
version = "0.0.13"
authors = ["Valentine Wallace <vwallace@protonmail.com>"]
+license = "MIT OR Apache-2.0"
+repository = "http://github.com/rust-bitcoin/rust-lightning"
+description = """
+Utilities to perform required background tasks for Rust Lightning.
+"""
edition = "2018"
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-
[dependencies]
bitcoin = "0.26"
lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }
name = "lightning-block-sync"
version = "0.0.13"
authors = ["Jeffrey Czyz", "Matt Corallo"]
-license = "Apache-2.0"
-edition = "2018"
+license = "MIT OR Apache-2.0"
+repository = "http://github.com/rust-bitcoin/rust-lightning"
description = """
Utilities to fetch the chain data from a block source and feed them into Rust Lightning.
"""
+edition = "2018"
[features]
rest-client = [ "serde", "serde_json", "chunked_transfer" ]
name = "lightning-net-tokio"
version = "0.0.13"
authors = ["Matt Corallo"]
-license = "Apache-2.0"
-edition = "2018"
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/rust-bitcoin/rust-lightning/"
description = """
Implementation of the rust-lightning network stack using Tokio.
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.
"""
+edition = "2018"
[dependencies]
bitcoin = "0.26"
name = "lightning-persister"
version = "0.0.13"
authors = ["Valentine Wallace", "Matt Corallo"]
-license = "Apache-2.0"
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/rust-bitcoin/rust-lightning/"
description = """
-Utilities to manage channel data persistence and retrieval.
+Utilities to manage Rust-Lightning channel data persistence and retrieval.
"""
[dependencies]
name = "lightning"
version = "0.0.13"
authors = ["Matt Corallo"]
-license = "Apache-2.0"
+license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-bitcoin/rust-lightning/"
description = """
A Bitcoin Lightning library in Rust.