Files
stm32_rust/hal_adc/Cargo.toml
2025-10-20 22:37:21 +02:00

58 lines
1.4 KiB
TOML

[package]
edition = "2024"
name = "embassy-stm32u575zi-examples"
version = "0.1.0"
license = "MIT OR Apache-2.0"
publish = false
authors = ["Priec <filippriec@gmail.com>"]
[dependencies]
# Embassy core crates from crates.io (no relative paths)
embassy-stm32 = { version = "0.4.0", features = [
"defmt",
"stm32u575zi",
"time-driver-any",
] }
embassy-sync = { version = "0.7.2", features = ["defmt"] }
embassy-executor = { version = "0.9.1", features = [
"arch-cortex-m",
"executor-thread",
"defmt",
] }
embassy-time = { version = "0.5.0", features = [
"defmt",
"defmt-timestamp-uptime",
"tick-hz-32_768",
] }
embassy-usb = { version = "0.5.1", features = ["defmt"] }
embassy-futures = { version = "0.1.2" }
# Logging and panic behavior
defmt = "1.0.1"
defmt-rtt = "1.0.0"
panic-probe = { version = "1.0", features = ["print-defmt"] }
# MCU + HAL utilities
cortex-m = { version = "0.7", features = ["inline-asm", "critical-section-single-core"] }
cortex-m-rt = "0.7"
embedded-hal = "1.0.0"
heapless = { version = "0.8", default-features = false }
embedded-graphics = "0.8.1"
tinybmp = "0.6.0"
micromath = "2.0.0"
[features]
## Allow building secure binaries if TrustZone is enabled
trustzone-secure = ["embassy-stm32/trustzone-secure"]
[profile.release]
lto = "fat"
opt-level = "s"
debug = 2
codegen-units = 1
[package.metadata.embassy]
build = [
{ target = "thumbv8m.main-none-eabihf", artifact-dir = "out/examples/stm32u5" }
]