Robin Mueller
a326e5d058
All checks were successful
Rust/va416xx-rs/pipeline/head This commit looks good
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[package]
|
|
name = "va416xx-hal"
|
|
version = "0.2.0"
|
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
|
edition = "2021"
|
|
description = "HAL for the Vorago VA416xx family of MCUs"
|
|
homepage = "https://egit.irs.uni-stuttgart.de/rust/va416xx-rs"
|
|
repository = "https://egit.irs.uni-stuttgart.de/rust/va416xx-rs"
|
|
license = "Apache-2.0"
|
|
keywords = ["no-std", "hal", "cortex-m", "vorago", "va416xx"]
|
|
categories = ["embedded", "no-std", "hardware-support"]
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
|
|
nb = "1"
|
|
paste = "1"
|
|
embedded-hal-nb = "1"
|
|
embedded-hal = "1"
|
|
embedded-io = "0.6"
|
|
num_enum = { version = "0.7", default-features = false }
|
|
typenum = "1"
|
|
bitflags = "2"
|
|
bitfield = "0.15"
|
|
defmt = { version = "0.3", optional = true }
|
|
fugit = "0.3"
|
|
delegate = "0.12"
|
|
|
|
[dependencies.void]
|
|
version = "1"
|
|
default-features = false
|
|
|
|
[dependencies.va416xx]
|
|
default-features = false
|
|
version = "0.2"
|
|
features = ["critical-section"]
|
|
|
|
[features]
|
|
default = ["rt", "revb"]
|
|
rt = ["va416xx/rt"]
|
|
defmt = ["dep:defmt", "fugit/defmt"]
|
|
|
|
va41630 = ["device-selected"]
|
|
va41620 = ["device-selected"]
|
|
|
|
va41629 = ["device-selected"]
|
|
va41628 = ["device-selected"]
|
|
|
|
device-selected = []
|
|
revb = []
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["va41630", "defmt"]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|