Skip to content

Commit 52edab7

Browse files
authored
Merge pull request #837 from TheBlueMatt/2021-03-0.0.13
2 parents c9321c5 + eeec6fa commit 52edab7

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

background-processor/Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,21 @@
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"] }
1215
lightning-persister = { version = "0.0.13", path = "../lightning-persister" }
1316

1417
[dev-dependencies]
1518
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
19+
20+
[dev-dependencies.bitcoin]
21+
version = "0.26"
22+
features = ["bitcoinconsensus"]

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)