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

Commit fe64b97

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

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

Cargo.toml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,28 @@ 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"]
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 = "74ae8e9ef27c499a8ab6e85c79ff39d843ee9906", default-features = false }
24+
lightning-types = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "74ae8e9ef27c499a8ab6e85c79ff39d843ee9906", 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 = "74ae8e9ef27c499a8ab6e85c79ff39d843ee9906", default-features = false, features = ["serde"] }
27+
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
2528
hashbrown = { version = "0.8", optional = true }
26-
core2 = { version = "0.3.0", optional = true, default-features = false }
2729

2830
chrono = { version = "0.4", default-features = false, features = ["serde", "alloc"] }
2931
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
3032
serde_json = "1.0"
3133

3234
[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"] }
35+
#lightning = { version = "0.0.123", default-features = false, features = ["_test_utils"] }
36+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "74ae8e9ef27c499a8ab6e85c79ff39d843ee9906", default-features = false, features = ["_test_utils"] }
37+
#lightning-persister = { version = "0.0.123", default-features = false }
38+
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "74ae8e9ef27c499a8ab6e85c79ff39d843ee9906", default-features = false }
39+
#lightning-background-processor = { version = "0.0.123", default-features = false, features = ["std"] }
40+
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "74ae8e9ef27c499a8ab6e85c79ff39d843ee9906", default-features = false, features = ["std"] }
3641
proptest = "1.0.0"
3742
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }
3843

0 commit comments

Comments
 (0)