Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 0c725c2

Browse files
committed
WIP: Upgrade to LDK 0.0.124, rust-bitcoin 0.32.2
1 parent ce0862c commit 0c725c2

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

Cargo.toml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ categories = ["cryptography::cryptocurrencies"]
1616
[features]
1717
default = ["std"]
1818
std = ["lightning/std", "bitcoin/std", "lightning-invoice/std"]
19-
no-std = ["hashbrown", "lightning/no-std", "lightning-invoice/no-std", "bitcoin/no-std", "core2/alloc"]
19+
no-std = ["hashbrown", "lightning/no-std", "lightning-invoice/no-std", "core2/alloc"]
2020

2121
[dependencies]
22-
lightning = { version = "0.0.123", default-features = false }
23-
lightning-invoice = { version = "0.31.0", default-features = false, features = ["serde"] }
24-
bitcoin = { version = "0.30.2", default-features = false, features = ["serde"] }
22+
#lightning = { version = "0.0.123", default-features = false }
23+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false }
24+
lightning-types = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false }
25+
#lightning-invoice = { version = "0.31.0", default-features = false, features = ["serde"] }
26+
lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false, features = ["serde"] }
27+
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
2528
hashbrown = { version = "0.8", optional = true }
2629
core2 = { version = "0.3.0", optional = true, default-features = false }
2730

@@ -30,9 +33,12 @@ serde = { version = "1.0", default-features = false, features = ["derive", "allo
3033
serde_json = "1.0"
3134

3235
[dev-dependencies]
33-
lightning = { version = "0.0.123", default-features = false, features = ["_test_utils"] }
34-
lightning-persister = { version = "0.0.123", default-features = false }
35-
lightning-background-processor = { version = "0.0.123", default-features = false, features = ["std"] }
36+
#lightning = { version = "0.0.123", default-features = false, features = ["_test_utils"] }
37+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false, features = ["_test_utils"] }
38+
#lightning-persister = { version = "0.0.123", default-features = false }
39+
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false }
40+
#lightning-background-processor = { version = "0.0.123", default-features = false, features = ["std"] }
41+
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false, features = ["std"] }
3642
proptest = "1.0.0"
3743
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }
3844

0 commit comments

Comments
 (0)