2017-03-05 06:26:14 +01:00
|
|
|
[package]
|
2017-04-21 07:24:54 +02:00
|
|
|
authors = [
|
2019-10-15 22:01:32 +02:00
|
|
|
"The Real Time For the Masses developers",
|
2017-04-21 07:24:54 +02:00
|
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
|
|
"Per Lindgren <per.lindgren@ltu.se>",
|
|
|
|
]
|
2017-04-27 22:37:27 +02:00
|
|
|
categories = ["concurrency", "embedded", "no-std"]
|
2018-11-03 17:02:41 +01:00
|
|
|
description = "Real Time For the Masses (RTFM): a concurrency framework for building real time systems"
|
2019-09-15 21:26:30 +02:00
|
|
|
documentation = "https://rtfm.rs/"
|
2018-11-03 17:02:41 +01:00
|
|
|
edition = "2018"
|
2017-04-27 22:37:27 +02:00
|
|
|
keywords = ["arm", "cortex-m"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2017-04-21 07:24:54 +02:00
|
|
|
name = "cortex-m-rtfm"
|
2018-11-03 17:02:41 +01:00
|
|
|
readme = "README.md"
|
2019-09-15 20:19:48 +02:00
|
|
|
repository = "https://github.com/rtfm-rs/cortex-m-rtfm"
|
2019-11-18 16:38:52 +01:00
|
|
|
version = "0.5.1"
|
2017-04-10 05:42:17 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[lib]
|
|
|
|
name = "rtfm"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "baseline"
|
2019-06-13 23:56:59 +02:00
|
|
|
required-features = ["__v7"]
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "periodic"
|
2019-06-13 23:56:59 +02:00
|
|
|
required-features = ["__v7"]
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2019-04-22 22:21:46 +02:00
|
|
|
[[example]]
|
|
|
|
name = "pool"
|
2019-06-13 23:56:59 +02:00
|
|
|
required-features = ["__v7"]
|
2019-04-22 22:21:46 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[[example]]
|
|
|
|
name = "schedule"
|
2019-06-13 23:56:59 +02:00
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "t-cfg"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "t-schedule"
|
|
|
|
required-features = ["__v7"]
|
2017-07-18 22:14:39 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[[example]]
|
|
|
|
name = "types"
|
2019-06-13 23:56:59 +02:00
|
|
|
required-features = ["__v7"]
|
2017-07-21 05:53:44 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[dependencies]
|
2019-06-13 23:56:59 +02:00
|
|
|
cortex-m = "0.6.0"
|
2019-11-14 23:47:17 +01:00
|
|
|
cortex-m-rtfm-macros = { path = "macros", version = "0.5.0" }
|
|
|
|
rtfm-core = "0.3.0"
|
2019-07-11 13:46:49 +02:00
|
|
|
cortex-m-rt = "0.6.9"
|
2019-07-12 01:41:57 +02:00
|
|
|
heapless = "0.5.0"
|
2019-06-13 23:56:59 +02:00
|
|
|
|
|
|
|
[dependencies.microamp]
|
|
|
|
optional = true
|
2019-07-11 13:46:49 +02:00
|
|
|
version = "0.1.0-alpha.2"
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
lm3s6965 = "0.1.3"
|
|
|
|
panic-halt = "0.2.0"
|
2019-06-13 23:56:59 +02:00
|
|
|
cortex-m-semihosting = "0.3.3"
|
2017-07-21 05:53:44 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[dev-dependencies.panic-semihosting]
|
|
|
|
features = ["exit"]
|
2019-06-13 23:56:59 +02:00
|
|
|
version = "0.5.2"
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
[target.x86_64-unknown-linux-gnu.dev-dependencies]
|
2019-11-07 01:05:37 +01:00
|
|
|
trybuild = "1"
|
2017-12-23 21:34:24 +01:00
|
|
|
|
2019-06-13 23:56:59 +02:00
|
|
|
[features]
|
|
|
|
heterogeneous = ["cortex-m-rtfm-macros/heterogeneous", "microamp"]
|
2019-06-18 10:40:43 +02:00
|
|
|
homogeneous = ["cortex-m-rtfm-macros/homogeneous"]
|
2019-06-13 23:56:59 +02:00
|
|
|
# used for testing this crate; do not use in applications
|
|
|
|
__v7 =[]
|
2018-12-17 01:42:53 +01:00
|
|
|
|
2017-07-21 05:53:44 +02:00
|
|
|
[profile.release]
|
2018-11-03 17:02:41 +01:00
|
|
|
codegen-units = 1
|
2017-09-03 18:05:48 +02:00
|
|
|
lto = true
|
2018-11-03 17:02:41 +01:00
|
|
|
|
|
|
|
[workspace]
|
2019-06-13 23:56:59 +02:00
|
|
|
members = [
|
2019-06-18 10:31:31 +02:00
|
|
|
"heterogeneous",
|
|
|
|
"homogeneous",
|
2019-06-13 23:56:59 +02:00
|
|
|
"macros",
|
|
|
|
]
|