Skip to content

Commit eeec6fa

Browse files
committed
Update licenses and add missing fields in Cargo.toml files
1 parent 49910a3 commit eeec6fa

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

background-processor/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
name = "lightning-background-processor"
33
version = "0.0.13"
44
authors = ["Valentine Wallace <[email protected]>"]
5+
license = "MIT OR Apache-2.0"
6+
repository = "http://github.com/rust-bitcoin/rust-lightning"
7+
description = """
8+
Utilities to perform required background tasks for Rust Lightning.
9+
"""
510
edition = "2018"
611

7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8-
912
[dependencies]
1013
bitcoin = "0.26"
1114
lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }

lightning-block-sync/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
name = "lightning-block-sync"
33
version = "0.0.13"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
5-
license = "Apache-2.0"
6-
edition = "2018"
5+
license = "MIT OR Apache-2.0"
6+
repository = "http://github.com/rust-bitcoin/rust-lightning"
77
description = """
88
Utilities to fetch the chain data from a block source and feed them into Rust Lightning.
99
"""
10+
edition = "2018"
1011

1112
[features]
1213
rest-client = [ "serde", "serde_json", "chunked_transfer" ]

lightning-net-tokio/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
name = "lightning-net-tokio"
33
version = "0.0.13"
44
authors = ["Matt Corallo"]
5-
license = "Apache-2.0"
6-
edition = "2018"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-bitcoin/rust-lightning/"
77
description = """
88
Implementation of the rust-lightning network stack using Tokio.
99
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.
1010
"""
11+
edition = "2018"
1112

1213
[dependencies]
1314
bitcoin = "0.26"

lightning-persister/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
name = "lightning-persister"
33
version = "0.0.13"
44
authors = ["Valentine Wallace", "Matt Corallo"]
5-
license = "Apache-2.0"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-bitcoin/rust-lightning/"
67
description = """
7-
Utilities to manage channel data persistence and retrieval.
8+
Utilities to manage Rust-Lightning channel data persistence and retrieval.
89
"""
910

1011
[dependencies]

lightning/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lightning"
33
version = "0.0.13"
44
authors = ["Matt Corallo"]
5-
license = "Apache-2.0"
5+
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-bitcoin/rust-lightning/"
77
description = """
88
A Bitcoin Lightning library in Rust.

0 commit comments

Comments
 (0)