48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[package]
|
|
name = "va108xx-hal"
|
|
version = "0.7.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-nb = "1"
|
|
embedded-io = "0.6"
|
|
fugit = "0.3"
|
|
typenum = "1"
|
|
defmt = { version = "0.3", optional = true }
|
|
delegate = "0.12"
|
|
|
|
[dependencies.va108xx]
|
|
version = "0.3"
|
|
default-features = false
|
|
features = ["critical-section"]
|
|
|
|
[dependencies.embedded-hal]
|
|
version = "1"
|
|
|
|
[dependencies.void]
|
|
version = "1"
|
|
default-features = false
|
|
|
|
[dependencies.once_cell]
|
|
version = "1.14"
|
|
default-features = false
|
|
|
|
[features]
|
|
default = ["rt"]
|
|
rt = ["va108xx/rt"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition"]
|