osdev5/kernel/Cargo.toml

24 lines
476 B
TOML
Raw Normal View History

2021-09-22 11:42:00 +03:00
[package]
name = "kernel"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-09-23 13:43:43 +03:00
[[bin]]
name = "kernel"
test = false
[dependencies]
cfg-if = "1.x.x"
2021-09-24 10:31:10 +03:00
error = { path = "../error" }
tock-registers = "0.7.x"
fdt-rs = { version = "0.x.x", default-features = false }
2021-09-23 13:43:43 +03:00
2021-09-22 11:42:00 +03:00
[target.'cfg(target_arch = "aarch64")'.dependencies]
cortex-a = { version = "6.x.x" }
[features]
mach_qemu = []
2021-10-01 18:37:47 +03:00
mach_orangepi3 = []