Skip to content

Commit 572ad86

Browse files
committed
f Add lightning-liquidity to the workspace
1 parent 35bf122 commit 572ad86

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ members = [
1616
"lightning-transaction-sync",
1717
"lightning-macros",
1818
"lightning-dns-resolver",
19+
"lightning-liquidity",
1920
"possiblyrandom",
2021
]
2122

ci/ci-tests.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace
3535
# Starting with version 0.5.9 (there is no .6-.8), the `home` crate has an MSRV of rustc 1.70.0.
3636
[ "$RUSTC_MINOR_VERSION" -lt 70 ] && cargo update -p home --precise "0.5.5" --verbose
3737

38+
# proptest 1.3.0 requires rustc 1.64.0
39+
[ "$RUSTC_MINOR_VERSION" -lt 64 ] && cargo update -p proptest --precise "1.2.0" --verbose
40+
3841
export RUST_BACKTRACE=1
3942

4043
echo -e "\n\nChecking the full workspace."
@@ -55,6 +58,7 @@ WORKSPACE_MEMBERS=(
5558
lightning-transaction-sync
5659
lightning-macros
5760
lightning-dns-resolver
61+
lightning-liquidity
5862
possiblyrandom
5963
)
6064

lightning-liquidity/Cargo.toml

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

2121
[dependencies]
22-
lightning = { version = "0.0.125", default-features = false, features = ["max_level_trace"] }
23-
lightning-types = { version = "0.1", default-features = false }
24-
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"] }
22+
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
23+
lightning-types = { version = "0.1", path = "../lightning-types", default-features = false }
24+
lightning-invoice = { version = "0.32.0", path = "../lightning-invoice", default-features = false, features = ["serde"] }
2825

2926
bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] }
3027
hashbrown = { version = "0.8", optional = true }
@@ -34,12 +31,9 @@ serde = { version = "1.0", default-features = false, features = ["derive", "allo
3431
serde_json = "1.0"
3532

3633
[dev-dependencies]
37-
lightning = { version = "0.0.125", default-features = false, features = ["_test_utils"] }
38-
lightning-persister = { version = "0.0.125", default-features = false }
39-
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"] }
34+
lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["_test_utils"] }
35+
lightning-persister = { version = "0.0.124", path = "../lightning-persister", default-features = false }
36+
lightning-background-processor = { version = "0.0.124", path = "../lightning-background-processor", default-features = false, features = ["std"] }
4337

4438
proptest = "1.0.0"
4539
tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }

0 commit comments

Comments
 (0)