rust-raspberrypi-OS-tutorials/02_runtime_init/Cargo.toml
2022-11-06 22:03:32 +01:00

28 lines
603 B
TOML

[package]
name = "mingo"
version = "0.2.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
edition = "2021"
[profile.release]
lto = true
[features]
default = []
bsp_rpi3 = []
bsp_rpi4 = []
[[bin]]
name = "kernel"
path = "src/main.rs"
##--------------------------------------------------------------------------------------------------
## Dependencies
##--------------------------------------------------------------------------------------------------
[dependencies]
# Platform specific dependencies
[target.'cfg(target_arch = "aarch64")'.dependencies]
aarch64-cpu = { version = "9.x.x" }