rust-raspberrypi-OS-tutorials/04_zero_overhead_abstraction/Cargo.toml

26 lines
615 B
TOML
Raw Normal View History

2019-09-25 13:25:40 +00:00
[package]
name = "kernel"
version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
edition = "2018"
2020-11-23 21:44:31 +00:00
[profile.release]
lto = true
2019-09-25 13:25:40 +00:00
# The features section is used to select the target board.
[features]
default = []
2020-10-28 10:45:28 +00:00
bsp_rpi3 = []
bsp_rpi4 = []
##--------------------------------------------------------------------------------------------------
## Dependencies
##--------------------------------------------------------------------------------------------------
2019-09-25 13:25:40 +00:00
[dependencies]
2020-10-28 10:45:28 +00:00
# Platform specific dependencies
[target.'cfg(target_arch = "aarch64")'.dependencies]
cortex-a = { version = "5.x.x" }
2020-10-28 10:45:28 +00:00