mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 11:38:01 +00:00
99e4ee3ab8
- Renamed all subxt crates to pezkuwi-subxt - Updated internal references - Configured for Pezkuwi ecosystem
12 lines
456 B
Rust
12 lines
456 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")) },
|
|
legacy_backend: { not(feature = "chainhead-backend") },
|
|
chainhead_backend: { feature = "chainhead-backend" },
|
|
}
|
|
}
|