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

Commit 50d4692

Browse files
committed
f Update to latest HEAD, drop no-std on lightning-invoice
1 parent b167700 commit 50d4692

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ 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"]
19+
no-std = ["hashbrown", "lightning/no-std"]
2020

2121
[dependencies]
2222
#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 }
23+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "680d399da38f0daba6ff7952ad929d57d0285d33", default-features = false }
24+
lightning-types = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "680d399da38f0daba6ff7952ad929d57d0285d33", default-features = false }
2525
#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"] }
26+
lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "680d399da38f0daba6ff7952ad929d57d0285d33", default-features = false, features = ["serde"] }
2727
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
2828
hashbrown = { version = "0.8", optional = true }
2929

@@ -33,11 +33,11 @@ serde_json = "1.0"
3333

3434
[dev-dependencies]
3535
#lightning = { version = "0.0.123", default-features = false, features = ["_test_utils"] }
36-
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false, features = ["_test_utils"] }
36+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "680d399da38f0daba6ff7952ad929d57d0285d33", default-features = false, features = ["_test_utils"] }
3737
#lightning-persister = { version = "0.0.123", default-features = false }
38-
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false }
38+
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "680d399da38f0daba6ff7952ad929d57d0285d33", default-features = false }
3939
#lightning-background-processor = { version = "0.0.123", default-features = false, features = ["std"] }
40-
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "43dcf2f3d86065bee4d1c63e1e67595523554a14", default-features = false, features = ["std"] }
40+
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "680d399da38f0daba6ff7952ad929d57d0285d33", default-features = false, features = ["std"] }
4141
proptest = "1.0.0"
4242
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }
4343

0 commit comments

Comments
 (0)