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

26 lines
680 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 = []
2020-10-28 10:45:28 +00:00
bsp_rpi3 = ["register"]
bsp_rpi4 = ["register"]
##--------------------------------------------------------------------------------------------------
## Dependencies
##--------------------------------------------------------------------------------------------------
2019-10-17 07:33:42 +00:00
[dependencies]
# Optional dependencies
register = { version = "1.x.x", optional = true }
2020-10-28 10:45:28 +00:00
# Platform specific dependencies
[target.'cfg(target_arch = "aarch64")'.dependencies]
cortex-a = { version = "5.x.x" }
2020-10-28 10:45:28 +00:00