2017-03-05 06:26:14 +01:00
|
|
|
[package]
|
2017-04-21 07:24:54 +02:00
|
|
|
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"]
|
|
|
|
description = "Real Time For the Masses (RTFM), a framework for building concurrent applications, for ARM Cortex-M microcontrollers"
|
|
|
|
documentation = "https://docs.rs/cortex-m-rtfm"
|
|
|
|
keywords = ["arm", "cortex-m"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2017-04-21 07:24:54 +02:00
|
|
|
name = "cortex-m-rtfm"
|
2017-04-27 22:37:27 +02:00
|
|
|
repository = "https://github.com/japaric/cortex-m-rtfm"
|
2017-07-04 18:26:11 +02:00
|
|
|
version = "0.2.0"
|
2017-04-10 05:42:17 +02:00
|
|
|
|
2017-03-12 17:19:43 +01:00
|
|
|
[dependencies]
|
2017-07-20 23:13:02 +02:00
|
|
|
cortex-m = "0.3.1"
|
2017-07-24 04:08:52 +02:00
|
|
|
static-ref = "0.2.1"
|
2017-07-27 18:37:58 +02:00
|
|
|
rtfm-core = { git = "https://github.com/japaric/rtfm-core" }
|
2017-07-18 22:14:39 +02:00
|
|
|
|
|
|
|
[dependencies.cortex-m-rtfm-macros]
|
|
|
|
path = "macros"
|
|
|
|
|
2017-07-21 05:53:44 +02:00
|
|
|
[target.'cfg(target_arch = "x86_64")'.dev-dependencies]
|
2017-07-18 22:14:39 +02:00
|
|
|
compiletest_rs = "0.2.8"
|
2017-07-21 05:53:44 +02:00
|
|
|
|
|
|
|
[dev-dependencies.cortex-m-rt]
|
|
|
|
features = ["abort-on-panic"]
|
|
|
|
version = "0.3.3"
|
|
|
|
|
|
|
|
[dev-dependencies.stm32f103xx]
|
|
|
|
features = ["rt"]
|
|
|
|
version = "0.7.1"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|