21 lines
621 B
TOML
21 lines
621 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"
|
|
repository = "https://git.farmeris.sk/filipriec/stm32u575-hal"
|
|
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"
|
|
|