rust-embedded-talk/example-source/msp432-hal/Cargo.toml

19 lines
533 B
TOML

[package]
name = "msp432-hal"
version = "0.1.0"
authors = ["Levi Pearson <levipearson@gmail.com>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "HAL for the TI MSP432 family of microcontrollers"
keywords = ["arm", "cortex-m", "msp432", "hal"]
edition = "2018"
[dependencies]
cortex-m = "0.5"
embedded-hal = "0.2"
nb = "0.1"
msp432p401r = { path = "../msp432p401r" }
void = { version = "1.0", default-features = false }
cast = { version = "0.2", default-features = false }
[features]
rt = ["msp432p401r/rt"]