rust-raspberrypi-OS-tutorials/01_wait_forever/Cargo.toml

24 lines
480 B
TOML
Raw Normal View History

2018-04-04 18:40:41 +00:00
[package]
2021-04-04 20:30:40 +00:00
name = "mingo"
2018-04-04 18:40:41 +00:00
version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
2021-10-11 13:46:01 +00:00
edition = "2021"
2018-04-04 18:40:41 +00:00
[profile.release]
lto = true
2019-09-21 22:32:54 +00:00
[features]
default = []
bsp_rpi3 = []
2019-10-29 21:32:49 +00:00
bsp_rpi4 = []
2019-09-21 22:32:54 +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-09-21 22:32:54 +00:00
[dependencies]