use cfg_aliases::cfg_aliases;
fn main() {
cfg_aliases! {
wasm32: { target_arch = "wasm32" },
native: { not(target_arch = "wasm32") },
wasm_bindgen: { feature = "wasm" },
android: { target_os = "android" },
macos: { target_os = "macos" },
linux: { target_os = "linux" },
windows: { target_os = "windows" },
ios: { target_os = "ios" },
unix_like: { any(target_os = "linux", target_os = "macos", target_os = "android", target_os = "ios") },
worker: { all(target_arch = "wasm32", feature = "worker") },
}
}