mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
36 lines
900 B
TOML
36 lines
900 B
TOML
[package]
|
|
authors = [
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
"Per Lindgren <per.lindgren@ltu.se>",
|
|
]
|
|
categories = ["concurrency", "embedded", "no-std"]
|
|
description = "Real Time For the Masses (RTFM) framework for ARM Cortex-M microcontrollers"
|
|
documentation = "https://docs.rs/cortex-m-rtfm"
|
|
keywords = ["arm", "cortex-m"]
|
|
license = "MIT OR Apache-2.0"
|
|
name = "cortex-m-rtfm"
|
|
repository = "https://github.com/japaric/cortex-m-rtfm"
|
|
version = "0.3.3"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.4.0"
|
|
cortex-m-rtfm-macros = { path = "macros", version = "0.3.2" }
|
|
rtfm-core = "0.2.0"
|
|
untagged-option = "0.1.1"
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dev-dependencies]
|
|
compiletest_rs = "0.3.5"
|
|
|
|
[dev-dependencies.cortex-m-rt]
|
|
features = ["abort-on-panic"]
|
|
version = "0.3.9"
|
|
|
|
[dev-dependencies.stm32f103xx]
|
|
features = ["rt"]
|
|
version = "0.8.0"
|
|
|
|
[features]
|
|
cm7-r0p1 = ["cortex-m/cm7-r0p1"]
|
|
|
|
[profile.release]
|
|
lto = true
|