Skip to content

Fix minor Cargo.toml nits and issues #837

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions background-processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@
name = "lightning-background-processor"
version = "0.0.13"
authors = ["Valentine Wallace <[email protected]>"]
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"] }
lightning-persister = { version = "0.0.13", path = "../lightning-persister" }

[dev-dependencies]
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }

[dev-dependencies.bitcoin]
version = "0.26"
features = ["bitcoinconsensus"]
5 changes: 3 additions & 2 deletions lightning-block-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
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" ]
Expand Down
5 changes: 3 additions & 2 deletions lightning-net-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
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"
Expand Down
5 changes: 3 additions & 2 deletions lightning-persister/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
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]
Expand Down
2 changes: 1 addition & 1 deletion lightning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
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.
Expand Down