va416xx-rs/va416xx-hal/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2021-12-07 00:31:51 +01:00
[package]
name = "va416xx-hal"
version = "0.1.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-hal"
repository = "https://egit.irs.uni-stuttgart.de/rust/va416xx-hal"
license = "Apache-2.0"
keywords = ["no-std", "hal", "cortex-m", "vorago", "va416xx"]
categories = ["embedded", "no-std", "hardware-support"]
[dependencies]
2024-06-13 17:27:27 +02:00
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
2021-12-07 00:31:51 +01:00
nb = "1"
paste = "1"
embedded-hal-nb = "1"
2021-12-07 00:31:51 +01:00
embedded-hal = "1"
embedded-io = "0.6"
2024-06-13 17:27:27 +02:00
typenum = "1"
defmt = { version = "0.3", optional = true }
fugit = "0.3"
delegate = "0.12"
2021-12-07 00:31:51 +01:00
2024-06-23 21:38:55 +02:00
[dependencies.void]
version = "1"
default-features = false
2021-12-07 00:31:51 +01:00
[dependencies.va416xx]
path = "../va416xx"
2024-06-13 17:27:27 +02:00
default-features = false
2021-12-07 00:31:51 +01:00
version = "0.1.0"
2024-06-13 17:27:27 +02:00
features = ["critical-section"]
2021-12-07 00:31:51 +01:00
[features]
2024-06-13 17:27:27 +02:00
default = ["rt", "revb"]
2021-12-07 00:31:51 +01:00
rt = ["va416xx/rt"]
2024-06-25 10:45:28 +02:00
defmt = ["dep:defmt", "fugit/defmt"]
2024-06-13 17:27:27 +02:00
revb = []
2024-06-25 16:10:17 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]