Files
stm32u575-hal/Cargo.toml
2025-10-19 20:50:18 +02:00

20 lines
558 B
TOML

[package]
name = "stm32u575-hal"
version = "0.0.1"
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Hardware Abstraction Layer for STM32U575 microcontrollers"
keywords = ["stm32", "embedded", "hal", "arm", "no_std"]
categories = ["embedded"]
[dependencies]
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
embedded-dma = "0.2.0"
embedded-hal = "1.0.0"
fugit = "0.3.7"
stm32u5 = { version = "0.16.0", default-features = false, features = ["stm32u575", "rt"] }
vcell = "0.1.3"