Robin Mueller
acb8b67ae7
All checks were successful
Rust/va108xx-rs/pipeline/pr-main This commit looks good
- Add embassy example - improve timer API - restructure examples - restructure and improve SPI - Add REB1 M95M01 NVM module
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "vorago-reb1"
|
|
version = "0.5.1"
|
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
|
edition = "2021"
|
|
description = "Board Support Crate for the Vorago REB1 development board"
|
|
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", "reb1", "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"
|
|
embedded-hal = "1"
|
|
nb = "1"
|
|
bitfield = "0.17"
|
|
|
|
[dependencies.max116xx-10bit]
|
|
version = "0.3"
|
|
|
|
[dependencies.va108xx-hal]
|
|
version = ">=0.7, <0.8"
|
|
path = "../va108xx-hal"
|
|
features = ["rt"]
|
|
|
|
[features]
|
|
rt = ["va108xx-hal/rt"]
|
|
|
|
[dev-dependencies]
|
|
panic-halt = "0.2"
|
|
nb = "1"
|
|
rtt-target = "0.5"
|
|
panic-rtt-target = "0.1"
|
|
embedded-hal-bus = "0.2"
|
|
dummy-pin = "1"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition"]
|