2019-10-08 20:13:25 +00:00
|
|
|
[package]
|
2021-04-04 20:30:40 +00:00
|
|
|
name = "mingo"
|
|
|
|
version = "0.6.0"
|
2019-10-08 20:13:25 +00:00
|
|
|
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
|
2021-10-11 13:46:01 +00:00
|
|
|
edition = "2021"
|
2019-10-08 20:13:25 +00:00
|
|
|
|
2020-11-23 21:44:31 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
|
2019-10-08 20:13:25 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2021-07-06 20:57:44 +00:00
|
|
|
bsp_rpi3 = ["tock-registers"]
|
|
|
|
bsp_rpi4 = ["tock-registers"]
|
2020-10-28 10:45:28 +00:00
|
|
|
|
2021-04-04 20:30:40 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "kernel"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2020-10-28 10:45:28 +00:00
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
|
|
## Dependencies
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
2019-10-08 20:13:25 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
# Optional dependencies
|
2021-07-06 20:57:44 +00:00
|
|
|
tock-registers = { version = "0.7.x", default-features = false, features = ["register_types"], optional = true }
|
2020-10-28 10:45:28 +00:00
|
|
|
|
|
|
|
# Platform specific dependencies
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
2021-12-19 23:01:38 +00:00
|
|
|
cortex-a = { version = "7.x.x" }
|