forked from lightningdevkit/rust-lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request lightningdevkit#3362 from TheBlueMatt/2024-10-0.0.125
Cut 0.0.125 with a few bugfixes
- Loading branch information
Showing
13 changed files
with
78 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lightning-background-processor" | ||
version = "0.0.124" | ||
version = "0.0.125" | ||
authors = ["Valentine Wallace <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/lightningdevkit/rust-lightning" | ||
|
@@ -11,6 +11,7 @@ edition = "2021" | |
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
features = ["lightning/std"] | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[features] | ||
|
@@ -21,14 +22,14 @@ default = ["std"] | |
|
||
[dependencies] | ||
bitcoin = { version = "0.32.2", default-features = false } | ||
lightning = { version = "0.0.124", path = "../lightning", default-features = false } | ||
lightning-rapid-gossip-sync = { version = "0.0.124", path = "../lightning-rapid-gossip-sync", default-features = false } | ||
lightning = { version = "0.0.125", path = "../lightning", default-features = false } | ||
lightning-rapid-gossip-sync = { version = "0.0.125", path = "../lightning-rapid-gossip-sync", default-features = false } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] } | ||
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] } | ||
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] } | ||
lightning-invoice = { version = "0.32.0", path = "../lightning-invoice" } | ||
lightning-persister = { version = "0.0.124", path = "../lightning-persister" } | ||
lightning-persister = { version = "0.0.125", path = "../lightning-persister" } | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lightning-rapid-gossip-sync" | ||
version = "0.0.124" | ||
version = "0.0.125" | ||
authors = ["Arik Sosman <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/lightningdevkit/rust-lightning" | ||
|
@@ -9,19 +9,23 @@ description = """ | |
Utility to process gossip routing data from Rapid Gossip Sync Server. | ||
""" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
features = ["lightning/std"] | ||
|
||
[features] | ||
default = ["std"] | ||
std = [] | ||
|
||
[dependencies] | ||
lightning = { version = "0.0.124", path = "../lightning", default-features = false } | ||
lightning = { version = "0.0.125", path = "../lightning", default-features = false } | ||
bitcoin = { version = "0.32.2", default-features = false } | ||
|
||
[target.'cfg(ldk_bench)'.dependencies] | ||
criterion = { version = "0.4", optional = true, default-features = false } | ||
|
||
[dev-dependencies] | ||
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] } | ||
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] } | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters