fn main() {
cfg_aliases::cfg_aliases! {
web: { all(target_arch = "wasm32", feature = "web") },
chain: { all(target_arch = "wasm32", not(web)) },
with_metrics: { all(not(target_arch = "wasm32"), feature = "metrics") },
with_testing: { any(test, feature = "test") },
with_getrandom: { any(web, not(target_arch = "wasm32")) },
};
}