Update licenses and add missing fields in Cargo.toml files 2021-03-0.0.13
authorMatt Corallo <git@bluematt.me>
Tue, 9 Mar 2021 21:51:14 +0000 (16:51 -0500)
committerMatt Corallo <git@bluematt.me>
Tue, 9 Mar 2021 21:53:03 +0000 (16:53 -0500)
background-processor/Cargo.toml
lightning-block-sync/Cargo.toml
lightning-net-tokio/Cargo.toml
lightning-persister/Cargo.toml
lightning/Cargo.toml

index f626f850fae735a1fff181a6c670ec2b41d383d3..89ac216816121a3be55040a47570b28b2b6a57e6 100644 (file)
@@ -2,10 +2,13 @@
 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"] }
index 968e500ef4940041ce19c2daffd8b2d8afb7c8b1..ac750bcc473f4b2c704231f127455eccfff45177 100644 (file)
@@ -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" ]
index 2a6f3daee2fc931d5fe65c5dc257bfc72ac941cc..b5eba8a7ccea5553629e7faa9bdca6bc98716a24 100644 (file)
@@ -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"
index 8eb889dd0d217fc4f0185a08fc997ec29ace1d54..0a9821f14cfc86768a57f48b1e31af2e80c07868 100644 (file)
@@ -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]
index dac35c70bf5bf1ee5d621f74c73cfac5017f1486..da9ac51a79f4acfd512c132c034d2e606650e5d8 100644 (file)
@@ -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.