Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions background-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "background-processor"
version = "0.1.0"
name = "lightning-background-processor"
version = "0.0.13"
authors = ["Valentine Wallace <[email protected]>"]
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.12", path = "../lightning", features = ["allow_wallclock_use"] }
lightning-persister = { version = "0.0.1", path = "../lightning-persister" }
lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }
lightning-persister = { version = "0.0.13", path = "../lightning-persister" }

[dev-dependencies]
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
2 changes: 1 addition & 1 deletion background-processor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ mod tests {
loop {
let log_entries = nodes[0].logger.lines.lock().unwrap();
let desired_log = "Calling manager's timer_chan_freshness_every_min".to_string();
if log_entries.get(&("background_processor".to_string(), desired_log)).is_some() {
if log_entries.get(&("lightning_background_processor".to_string(), desired_log)).is_some() {
break
}
}
Expand Down
4 changes: 2 additions & 2 deletions lightning-block-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lightning-block-sync"
version = "0.0.1"
version = "0.0.13"
authors = ["Jeffrey Czyz", "Matt Corallo"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -14,7 +14,7 @@ rpc-client = [ "serde", "serde_json", "chunked_transfer" ]

[dependencies]
bitcoin = "0.26"
lightning = { version = "0.0.12", path = "../lightning" }
lightning = { version = "0.0.13", path = "../lightning" }
tokio = { version = "1.0", features = [ "io-util", "net" ], optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions lightning-net-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lightning-net-tokio"
version = "0.0.5"
version = "0.0.13"
authors = ["Matt Corallo"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -11,7 +11,7 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2

[dependencies]
bitcoin = "0.26"
lightning = { version = "0.0.12", path = "../lightning" }
lightning = { version = "0.0.13", path = "../lightning" }
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "sync", "net", "time" ] }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions lightning-persister/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lightning-persister"
version = "0.0.1"
version = "0.0.13"
authors = ["Valentine Wallace", "Matt Corallo"]
license = "Apache-2.0"
description = """
Expand All @@ -9,7 +9,7 @@ Utilities to manage channel data persistence and retrieval.

[dependencies]
bitcoin = "0.26"
lightning = { version = "0.0.12", path = "../lightning" }
lightning = { version = "0.0.13", path = "../lightning" }
libc = "0.2"

[target.'cfg(windows)'.dependencies]
Expand All @@ -20,4 +20,4 @@ version = "0.26"
features = ["bitcoinconsensus"]

[dev-dependencies]
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
2 changes: 1 addition & 1 deletion lightning/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lightning"
version = "0.0.12"
version = "0.0.13"
authors = ["Matt Corallo"]
license = "Apache-2.0"
repository = "https://github.com/rust-bitcoin/rust-lightning/"
Expand Down