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]
|
2019-10-05 17:20:30 +00:00
|
|
|
|
2020-10-28 10:45:28 +00:00
|
|
|
# Platform specific dependencies
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
2020-11-23 21:34:20 +00:00
|
|
|
cortex-a = { version = "5.x.x" }
|
2020-10-28 10:45:28 +00:00
|
|
|
|