rtic/Cargo.toml

40 lines
1.1 KiB
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"
2017-11-20 05:11:25 +01:00
version = "0.3.0"
2017-04-10 05:42:17 +02:00
[dependencies]
cortex-m = { git = "https://github.com/japaric/cortex-m", branch = "cm7-r0p1" }
2017-09-06 19:06:43 +02:00
untagged-option = "0.1.1"
2017-12-23 11:17:03 +01:00
# rtfm-core = "0.2.0"
rtfm-core = { git = "https://github.com/japaric/rtfm-core" }
2017-11-20 05:11:25 +01:00
cortex-m-rtfm-macros = { path = "macros" }
2017-07-18 22:14:39 +02:00
[target.'cfg(target_arch = "x86_64")'.dev-dependencies]
# compiletest_rs = "0.3.4"
compiletest_rs = { git = "https://github.com/dwrensha/compiletest-rs", branch = "rustup" }
[dev-dependencies.cortex-m-rt]
features = ["abort-on-panic"]
version = "0.3.3"
[dev-dependencies.stm32f103xx]
features = ["rt"]
2017-11-20 05:11:25 +01:00
git = "https://github.com/japaric/stm32f103xx"
# version = "0.8.0"
[features]
cm7-r0p1 = ["cortex-m/cm7-r0p1"]
[profile.release]
lto = true