va416xx-rs/bootloader/Cargo.toml

21 lines
357 B
TOML
Raw Normal View History

2024-09-11 20:44:10 +02:00
[package]
name = "bootloader"
version = "0.1.0"
edition = "2021"
[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
embedded-hal = "1"
panic-rtt-target = { version = "0.1.3" }
2024-09-18 22:39:22 +02:00
panic-halt = { version = "0.2" }
2024-09-11 20:44:10 +02:00
rtt-target = { version = "0.5" }
crc = "3"
[dependencies.va416xx-hal]
path = "../va416xx-hal"
2024-09-18 22:39:22 +02:00
[features]
default = ["rtt-panic"]
rtt-panic = []