2022-03-03 23:59:44 -08:00
|
|
|
[package]
|
|
|
|
name = "no-std-check"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
2022-09-14 10:17:56 +02:00
|
|
|
default = ["lightning/no-std", "lightning-invoice/no-std", "lightning-rapid-gossip-sync/no-std"]
|
2022-03-03 23:59:44 -08:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lightning = { path = "../lightning", default-features = false }
|
|
|
|
lightning-invoice = { path = "../lightning-invoice", default-features = false }
|
2022-09-14 10:17:56 +02:00
|
|
|
lightning-rapid-gossip-sync = { path = "../lightning-rapid-gossip-sync", default-features = false }
|
2023-01-17 00:16:48 +00:00
|
|
|
lightning-background-processor = { path = "../lightning-background-processor", features = ["futures"], default-features = false }
|
2023-03-03 05:14:04 +00:00
|
|
|
|
|
|
|
# Obviously lightning-transaction-sync doesn't support no-std, but it should build
|
|
|
|
# even if lightning is built with no-std.
|
|
|
|
lightning-transaction-sync = { path = "../lightning-transaction-sync", optional = true }
|