Merge pull request #3036 from TheBlueMatt/2024-05-filter-color
[rust-lightning] / no-std-check / Cargo.toml
1 [package]
2 name = "no-std-check"
3 version = "0.1.0"
4 edition = "2021"
5
6 [features]
7 default = ["lightning/no-std", "lightning-invoice/no-std", "lightning-rapid-gossip-sync/no-std"]
8
9 [dependencies]
10 lightning = { path = "../lightning", default-features = false }
11 lightning-invoice = { path = "../lightning-invoice", default-features = false }
12 lightning-rapid-gossip-sync = { path = "../lightning-rapid-gossip-sync", default-features = false }
13 lightning-background-processor = { path = "../lightning-background-processor", features = ["futures"], default-features = false }
14
15 # Obviously lightning-transaction-sync doesn't support no-std, but it should build
16 # even if lightning is built with no-std.
17 lightning-transaction-sync = { path = "../lightning-transaction-sync", optional = true }
18
19 [patch.crates-io]
20 possiblyrandom = { path = "../possiblyrandom" }