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

22 lines
493 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"
[package.metadata.cargo-xbuild]
sysroot_path = "../xbuild_sysroot"
# 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]
r0 = "0.2.*"
# Optional dependencies
cortex-a = { version = "2.*", optional = true }
register = { version = "0.3.*", optional = true }