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
2 changes: 1 addition & 1 deletion lightning-c-bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ crate-type = ["staticlib"

[dependencies]
bitcoin = "0.24"
lightning = { version = "0.0.11", path = "../lightning" }
lightning = { version = "0.0.12", path = "../lightning" }

# We eventually want to join the root workspace, but for now, the bindings generation is
# a bit brittle and we don't want to hold up other developers from making changes just
Expand Down
2 changes: 1 addition & 1 deletion lightning-net-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For Rust-Lightning clients which wish to make direct connections to Lightning P2

[dependencies]
bitcoin = "0.24"
lightning = { version = "0.0.11", path = "../lightning" }
lightning = { version = "0.0.12", path = "../lightning" }
tokio = { version = ">=0.2.12", features = [ "io-util", "macros", "rt-core", "sync", "tcp", "time" ] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions lightning-persister/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Utilities to manage channel data persistence and retrieval.

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

[dev-dependencies.bitcoin]
version = "0.24"
features = ["bitcoinconsensus"]

[dev-dependencies]
lightning = { version = "0.0.11", path = "../lightning", features = ["_test_utils"] }
lightning = { version = "0.0.12", 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.11"
version = "0.0.12"
authors = ["Matt Corallo"]
license = "Apache-2.0"
repository = "https://github.com/rust-bitcoin/rust-lightning/"
Expand Down