48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
[package]
|
|
name = "va108xx-hal"
|
|
version = "0.8.0"
|
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
|
edition = "2021"
|
|
description = "HAL for the Vorago VA108xx family of microcontrollers"
|
|
homepage = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs"
|
|
repository = "https://egit.irs.uni-stuttgart.de/rust/va108xx-rs"
|
|
license = "Apache-2.0"
|
|
keywords = ["no-std", "hal", "cortex-m", "vorago", "va108xx"]
|
|
categories = ["aerospace", "embedded", "no-std", "hardware-support"]
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"]}
|
|
cortex-m-rt = "0.7"
|
|
nb = "1"
|
|
paste = "1"
|
|
embedded-hal = "1"
|
|
embedded-hal-async = "1"
|
|
embedded-hal-nb = "1"
|
|
embedded-io = "0.6"
|
|
embedded-io-async = "0.6"
|
|
fugit = "0.3"
|
|
typenum = "1"
|
|
critical-section = "1"
|
|
delegate = ">=0.12, <=0.13"
|
|
thiserror = { version = "2", default-features = false }
|
|
void = { version = "1", default-features = false }
|
|
once_cell = {version = "1", default-features = false }
|
|
va108xx = { version = "0.3", default-features = false, features = ["critical-section"] }
|
|
embassy-sync = "0.6"
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))'.dependencies]
|
|
portable-atomic = { version = "1", features = ["unsafe-assume-single-core"] }
|
|
[target.'cfg(not(all(target_arch = "arm", target_os = "none")))'.dependencies]
|
|
portable-atomic = "1"
|
|
|
|
[features]
|
|
default = ["rt"]
|
|
rt = ["va108xx/rt"]
|
|
defmt = ["dep:defmt", "fugit/defmt"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition"]
|