osdev5/kernel/Cargo.toml

29 lines
550 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]
2021-09-24 10:31:10 +03:00
error = { path = "../error" }
2021-10-13 10:20:52 +03:00
cfg-if = "1.x.x"
2021-09-24 10:31:10 +03:00
tock-registers = "0.7.x"
fdt-rs = { version = "0.x.x", default-features = false }
2021-10-18 10:57:56 +03:00
bitflags = "^1.3.0"
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]
pl011 = []
pl031 = []
mach_qemu = ["pl011", "pl031"]
2021-10-01 18:37:47 +03:00
mach_orangepi3 = []
2021-10-14 19:20:51 +03:00
mach_rpi3 = []