2017-03-05 06:26:14 +01:00
|
|
|
[package]
|
2017-04-21 07:24:54 +02:00
|
|
|
authors = [
|
2020-06-11 19:18:29 +02:00
|
|
|
"The Real-Time Interrupt-driven Concurrency 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"]
|
2020-07-14 15:40:57 +02:00
|
|
|
description = "Real-Time Interrupt-driven Concurrency (RTIC): a concurrency framework for building real-time systems"
|
2020-06-11 19:18:29 +02:00
|
|
|
documentation = "https://rtic.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"
|
2020-06-11 19:18:29 +02:00
|
|
|
name = "cortex-m-rtic"
|
2018-11-03 17:02:41 +01:00
|
|
|
readme = "README.md"
|
2020-06-11 19:18:29 +02:00
|
|
|
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
2021-03-04 20:37:15 +01:00
|
|
|
|
2021-03-04 20:00:03 +01:00
|
|
|
version = "0.6.0-alpha.1"
|
2017-04-10 05:42:17 +02:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[lib]
|
2020-06-11 19:18:29 +02:00
|
|
|
name = "rtic"
|
2018-11-03 17:02:41 +01:00
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
[[example]]
|
|
|
|
name = "periodic"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "pool"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "schedule"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "t-cfg"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "t-cfg-resources"
|
|
|
|
required-features = ["__min_r1_43"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "t-schedule"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "types"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "double_schedule"
|
|
|
|
required-features = ["__v7"]
|
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[dependencies]
|
2020-12-30 00:08:06 +01:00
|
|
|
cortex-m = "0.7.0"
|
2021-03-04 20:37:15 +01:00
|
|
|
cortex-m-rtic-macros = { path = "macros", version = "0.6.0-alpha.1" }
|
2021-03-04 20:00:03 +01:00
|
|
|
rtic-monotonic = "0.1.0-alpha.0"
|
2021-02-23 21:20:21 +01:00
|
|
|
rtic-core = "0.3.1"
|
2021-03-02 16:30:59 +01:00
|
|
|
heapless = "0.6.1"
|
2020-10-01 20:01:25 +02:00
|
|
|
bare-metal = "1.0.0"
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
[dependencies.dwt-systick-monotonic]
|
2021-03-04 20:00:03 +01:00
|
|
|
version = "0.1.0-alpha.0"
|
2021-02-23 19:35:26 +01:00
|
|
|
optional = true
|
|
|
|
|
2020-04-20 15:18:43 +02:00
|
|
|
[build-dependencies]
|
|
|
|
version_check = "0.9"
|
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
lm3s6965 = "0.1.3"
|
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
|
|
|
|
2021-02-23 19:35:26 +01:00
|
|
|
[features]
|
|
|
|
# used for testing this crate; do not use in applications
|
|
|
|
__v7 = ["dwt-systick-monotonic"]
|
|
|
|
__min_r1_43 = []
|
|
|
|
|
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 = [
|
|
|
|
"macros",
|
|
|
|
]
|
2020-05-26 21:43:11 +02:00
|
|
|
|
|
|
|
# do not optimize proc-macro deps or build scripts
|
|
|
|
[profile.dev.build-override]
|
|
|
|
codegen-units = 16
|
|
|
|
debug = false
|
|
|
|
debug-assertions = false
|
|
|
|
opt-level = 0
|
|
|
|
overflow-checks = false
|
|
|
|
|
2020-05-26 22:08:31 +02:00
|
|
|
|
2020-05-26 21:43:11 +02:00
|
|
|
[profile.release.build-override]
|
|
|
|
codegen-units = 16
|
|
|
|
debug = false
|
|
|
|
debug-assertions = false
|
|
|
|
opt-level = 0
|
|
|
|
overflow-checks = false
|
2020-12-30 00:08:06 +01:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
lm3s6965 = { git = "https://github.com/japaric/lm3s6965" }
|