2017-07-04 18:26:11 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
2017-07-29 08:16:11 +02:00
|
|
|
categories = ["concurrency", "embedded", "no-std"]
|
|
|
|
description = "Procedural macros of the cortex-m-rtfm crate"
|
|
|
|
documentation = "https://docs.rs/cortex-m-rtfm-macros"
|
|
|
|
keywords = ["arm", "cortex-m"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2017-07-09 04:44:22 +02:00
|
|
|
name = "cortex-m-rtfm-macros"
|
2017-07-29 08:16:11 +02:00
|
|
|
repository = "https://github.com/japaric/cortex-m-rtfm"
|
2018-04-16 23:22:01 +02:00
|
|
|
version = "0.3.1"
|
2017-07-04 18:26:11 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2018-04-08 18:23:27 +02:00
|
|
|
failure = "0.1.1"
|
|
|
|
proc-macro2 = "0.3.6"
|
|
|
|
quote = "0.5.1"
|
2018-04-29 08:45:31 +02:00
|
|
|
# rtfm-syntax = "0.3.0"
|
2018-05-14 21:22:50 +02:00
|
|
|
rtfm-syntax = { path = "../../rtfm-syntax" }
|
2018-04-08 18:23:27 +02:00
|
|
|
syn = "0.13.1"
|
2018-05-17 21:52:03 +02:00
|
|
|
|
|
|
|
[dependencies.either]
|
|
|
|
version = "1"
|
|
|
|
default-features = false
|
2017-07-04 18:26:11 +02:00
|
|
|
|
|
|
|
[lib]
|
2017-07-12 06:44:54 +02:00
|
|
|
proc-macro = true
|
2018-05-01 15:29:13 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
timer-queue = []
|