diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index 44edb97a34a..a515604a112 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Valentine Wallace "] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" +readme = "../README.md" description = """ Utilities to perform required background tasks for Rust Lightning. """ diff --git a/lightning-block-sync/Cargo.toml b/lightning-block-sync/Cargo.toml index 2b42e3cfc31..2d992a53496 100644 --- a/lightning-block-sync/Cargo.toml +++ b/lightning-block-sync/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Jeffrey Czyz", "Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" +readme = "../README.md" description = """ Utilities to fetch the chain data from a block source and feed them into Rust Lightning. """ diff --git a/lightning-custom-message/Cargo.toml b/lightning-custom-message/Cargo.toml index 202edc64aea..c2feb5357ff 100644 --- a/lightning-custom-message/Cargo.toml +++ b/lightning-custom-message/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Jeffrey Czyz"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" +readme = "../README.md" description = """ Utilities for supporting custom peer-to-peer messages in LDK. """ diff --git a/lightning-dns-resolver/Cargo.toml b/lightning-dns-resolver/Cargo.toml index 3a3c5f36045..34961838029 100644 --- a/lightning-dns-resolver/Cargo.toml +++ b/lightning-dns-resolver/Cargo.toml @@ -4,6 +4,7 @@ version = "0.3.0+git" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" +readme = "../README.md" description = "A crate which implements DNSSEC resolution for lightning clients over bLIP 32 using `tokio` and the `dnssec-prover` crate." edition = "2021" rust-version = "1.75" diff --git a/lightning-net-tokio/Cargo.toml b/lightning-net-tokio/Cargo.toml index d5b6df56d07..f9a4abd500a 100644 --- a/lightning-net-tokio/Cargo.toml +++ b/lightning-net-tokio/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" +readme = "../README.md" 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. diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 5869f155667..d62198f738a 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Valentine Wallace", "Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" +readme = "../README.md" description = """ Utilities for LDK data persistence and retrieval. """ diff --git a/lightning-transaction-sync/Cargo.toml b/lightning-transaction-sync/Cargo.toml index 6cf75ff82e6..c04f4ad344e 100644 --- a/lightning-transaction-sync/Cargo.toml +++ b/lightning-transaction-sync/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Elias Rohrer"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" +readme = "../README.md" description = """ Utilities for syncing LDK via the transaction-based `Confirm` interface. """ diff --git a/lightning-types/Cargo.toml b/lightning-types/Cargo.toml index 2abaaa98a1a..89bd919836f 100644 --- a/lightning-types/Cargo.toml +++ b/lightning-types/Cargo.toml @@ -4,6 +4,7 @@ version = "0.3.0+git" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" +readme = "../README.md" description = """ Basic types which are used in the lightning network """ diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index 47ae12f9e1e..9df4a725e54 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -4,6 +4,7 @@ version = "0.2.0+git" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" +readme = "../README.md" description = """ A Complete Bitcoin Lightning Library in Rust. Handles the core functionality of the Lightning Network, allowing clients to implement custom wallet, chain interactions, storage and network logic without enforcing a specific runtime.