rtic/Cargo.toml

37 lines
900 B
TOML
Raw Normal View History

2017-03-05 06:26:14 +01:00
[package]
authors = [
"Jorge Aparicio <jorge@japaric.io>",
"Per Lindgren <per.lindgren@ltu.se>",
]
2017-04-27 22:37:27 +02:00
categories = ["concurrency", "embedded", "no-std"]
2017-07-29 07:34:00 +02:00
description = "Real Time For the Masses (RTFM) framework for ARM Cortex-M microcontrollers"
2017-04-27 22:37:27 +02:00
documentation = "https://docs.rs/cortex-m-rtfm"
keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm"
2017-04-27 22:37:27 +02:00
repository = "https://github.com/japaric/cortex-m-rtfm"
2018-08-24 16:48:33 +02:00
version = "0.3.3"
2017-04-10 05:42:17 +02:00
[dependencies]
2018-01-15 23:26:07 +01:00
cortex-m = "0.4.0"
2018-08-24 16:48:33 +02:00
cortex-m-rtfm-macros = { path = "macros", version = "0.3.2" }
2018-01-15 23:26:07 +01:00
rtfm-core = "0.2.0"
2017-09-06 19:06:43 +02:00
untagged-option = "0.1.1"
2017-07-18 22:14:39 +02:00
[target.'cfg(target_arch = "x86_64")'.dev-dependencies]
2018-01-11 16:03:41 +01:00
compiletest_rs = "0.3.5"
[dev-dependencies.cortex-m-rt]
features = ["abort-on-panic"]
2018-01-15 23:26:07 +01:00
version = "0.3.9"
[dev-dependencies.stm32f103xx]
features = ["rt"]
2018-01-15 23:26:07 +01:00
version = "0.8.0"
[features]
cm7-r0p1 = ["cortex-m/cm7-r0p1"]
[profile.release]
lto = true