1
0
Fork 0
112VU/firmware/Cargo.toml
fly 3c52c3e952 Initial firmware commit
Signed-off-by: fly <merspieler@alwaysdata.com>
2024-02-11 20:20:39 +01:00

34 lines
663 B
TOML

[package]
name = "firmware"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-hal = "0.2.7"
nb = "1"
cortex-m = "0.7.6"
cortex-m-rt = "0.7.1"
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
panic-halt = "0.2.0"
#stm32-usbd = "0.6.0"
usb-device = "0.2.9"
usbd-serial = "0.1.1"
ryu = "1.0.16"
[dependencies.stm32f1xx-hal]
version = "0.10.0"
features = ["rt", "stm32f103"]
[profile.dev]
codegen-units = 1
opt-level = "z"
[profile.dev.package."*"]
codegen-units = 1
opt-level = "z"
[profile.release]
# or "z"
opt-level = "z"