rust-raspberrypi-OS-tutorials/07_uart_chainloader/Cargo.toml

18 lines
414 B
TOML
Raw Normal View History

2019-10-17 07:33:42 +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"]
2019-10-21 19:19:11 +00:00
bsp_rpi4 = ["cortex-a", "register"]
2019-10-17 07:33:42 +00:00
[dependencies]
# Optional dependencies
2020-10-28 10:27:43 +00:00
cortex-a = { version = "4.x.x", optional = true }
2020-01-16 21:06:43 +00:00
register = { version = "0.5.x", optional = true }