mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
28 lines
603 B
TOML
28 lines
603 B
TOML
[package]
|
|
name = "mingo"
|
|
version = "0.3.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" }
|