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

Commit 62ab6e4

Browse files
committed
Add (commented-out) path to local LDK packages
.. to make it easier to switch back-and-forth when testing.
1 parent 5a6c4fb commit 62ab6e4

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Cargo.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ std = ["lightning/std", "bitcoin/std", "lightning-invoice/std"]
1919
no-std = ["hashbrown", "lightning/no-std"]
2020

2121
[dependencies]
22-
lightning = { version = "0.0.125", default-features = false }
22+
lightning = { version = "0.0.125", default-features = false, features = ["max_level_trace"] }
2323
lightning-types = { version = "0.1", default-features = false }
2424
lightning-invoice = { version = "0.32.0", default-features = false, features = ["serde"] }
25+
#lightning = { path = "../rust-lightning/lightning", default-features = false, features = ["max_level_trace"] }
26+
#lightning-types = { path = "../rust-lightning/lightning-types", default-features = false }
27+
#lightning-invoice = { path = "../rust-lightning/lightning-invoice", default-features = false, features = ["serde"] }
28+
2529
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
2630
hashbrown = { version = "0.8", optional = true }
2731

@@ -33,6 +37,10 @@ serde_json = "1.0"
3337
lightning = { version = "0.0.125", default-features = false, features = ["_test_utils"] }
3438
lightning-persister = { version = "0.0.125", default-features = false }
3539
lightning-background-processor = { version = "0.0.125", default-features = false, features = ["std"] }
40+
# lightning = { path = "../rust-lightning/lightning", default-features = false, features = ["max_level_trace", "_test_utils"] }
41+
# lightning-persister = { path = "../rust-lightning/lightning-persister", default-features = false }
42+
# lightning-background-processor = { path = "../rust-lightning/lightning-background-processor", default-features = false, features = ["std"] }
43+
3644
proptest = "1.0.0"
3745
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }
3846

0 commit comments

Comments
 (0)