mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
31 lines
770 B
TOML
31 lines
770 B
TOML
[package]
|
|
name = "mingo"
|
|
version = "0.7.0"
|
|
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[features]
|
|
default = []
|
|
bsp_rpi3 = ["tock-registers"]
|
|
bsp_rpi4 = ["tock-registers"]
|
|
|
|
[[bin]]
|
|
name = "kernel"
|
|
path = "src/main.rs"
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
## Dependencies
|
|
##--------------------------------------------------------------------------------------------------
|
|
|
|
[dependencies]
|
|
|
|
# Optional dependencies
|
|
tock-registers = { version = "0.8.x", default-features = false, features = ["register_types"], optional = true }
|
|
|
|
# Platform specific dependencies
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
|
cortex-a = { version = "8.x.x" }
|