va108xx-hal/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2021-11-03 23:11:59 +01:00
[package]
name = "va108xx-hal"
version = "0.1.0"
authors = ["Robin Mueller <robin.mueller.m@gmail.com>"]
edition = "2021"
description = "HAL for the Vorago VA108xx family of microcontrollers"
2021-11-08 01:34:09 +01:00
homepage = "https://github.com/robamu-org/va108xx-hal-rs"
repository = "https://github.com/robamu-org/va108xx-hal-rs"
license = "MIT OR Apache-2.0"
keywords = ["no-std", "hal", "cortex-m", "vorago", "va108xx"]
categories = ["embedded", "no-std", "hardware-support"]
2021-11-03 23:11:59 +01:00
[dependencies]
2021-11-08 01:34:09 +01:00
cortex-m = "0.7"
cortex-m-rt = "0.7"
nb = "1"
embedded-hal = { features = ["unproven"], version = "0.2.6" }
void = { version = "1.0", default-features = false }
once_cell = { version = "1.8.0", default-features = false }
libm = "0.2.1"
[dependencies.va108xx]
version = "0.1"
[features]
2021-11-06 17:10:06 +01:00
rt = ["va108xx/rt"]
2021-11-08 01:43:02 +01:00
[dev-dependencies]
panic-rtt-target = { version = "0.1", features = ["cortex-m"] }
rtt-target = { version = "0.3", features = ["cortex-m"] }
panic-halt = "0.2"
2021-11-06 17:10:06 +01:00
[profile.dev]
debug = true
2021-11-08 01:34:09 +01:00
lto = false
2021-11-06 17:10:06 +01:00
[profile.release]
lto = true
debug = true
opt-level = "s"
2021-11-08 01:43:02 +01:00
[[example]]
name = "timer-ticks"
required-features = ["rt"]