pub fn current_platform_key() -> &'static str {
if cfg!(all(target_os = "windows", target_arch = "x86_64")) {
"windows-x64"
} else if cfg!(all(target_os = "windows", target_arch = "aarch64")) {
"windows-arm64"
} else if cfg!(all(target_os = "linux", target_arch = "x86_64")) {
"linux-x64"
} else if cfg!(all(target_os = "linux", target_arch = "aarch64")) {
"linux-arm64"
} else if cfg!(all(target_os = "macos", target_arch = "x86_64")) {
"macos-x64"
} else if cfg!(all(target_os = "macos", target_arch = "aarch64")) {
"macos-arm64"
} else {
"unknown"
}
}