mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
34e9222959
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
10 lines
330 B
Rust
10 lines
330 B
Rust
use cfg_aliases::cfg_aliases;
|
|
|
|
fn main() {
|
|
// Setup cfg aliases
|
|
cfg_aliases! {
|
|
lightclient: { any(feature = "unstable-light-client", feature = "unstable-light-client-long-running") },
|
|
fullclient: { all(not(feature = "unstable-light-client"), not(feature = "unstable-light-client-long-running")) },
|
|
}
|
|
}
|