[package] name = "kernel-arch" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [target.'cfg(all(target_os = "none", target_arch = "x86_64"))'.dependencies] kernel-arch-x86_64 = { path = "x86_64" } [target.'cfg(all(target_os = "none", target_arch = "aarch64"))'.dependencies] kernel-arch-aarch64 = { path = "aarch64" } [target.'cfg(not(target_os = "none"))'.dependencies] kernel-arch-hosted = { path = "hosted" } [dependencies] kernel-arch-interface = { path = "interface" } cfg-if = "1.0.0"