va108xx-rs/vorago-reb1/Cargo.toml

41 lines
1.0 KiB
TOML
Raw Permalink Normal View History

[package]
name = "vorago-reb1"
2024-09-30 12:10:03 +02:00
version = "0.6.0"
2024-06-16 19:30:04 +02:00
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
edition = "2021"
description = "Board Support Crate for the Vorago REB1 development board"
2024-06-16 19:30:04 +02:00
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]
2024-06-16 19:03:46 +02:00
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]
2024-09-30 12:10:03 +02:00
version = ">=0.8, <0.9"
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"
2024-06-16 16:32:52 +02:00
[package.metadata.docs.rs]
all-features = true
2024-06-26 22:58:12 +02:00
rustdoc-args = ["--generate-link-to-definition"]