rust-raspberrypi-OS-tutorials/10_privilege_level/Cargo.toml

18 lines
414 B
TOML
Raw Normal View History

2019-11-01 22:03:29 +00:00
[package]
name = "kernel"
version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
edition = "2018"
# The features section is used to select the target board.
[features]
default = []
bsp_rpi3 = ["cortex-a", "register"]
bsp_rpi4 = ["cortex-a", "register"]
[dependencies]
# Optional dependencies
2020-04-16 20:54:08 +00:00
cortex-a = { version = "3.0.x", optional = true }
2020-01-16 21:06:43 +00:00
register = { version = "0.5.x", optional = true }