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-01-15 23:26:07 +01:00
|
|
|
version = "0.3.0"
|
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"
|
|
|
|
rtfm-syntax = { git = "https://github.com/japaric/rtfm-syntax", branch = "syn-up" }
|
|
|
|
syn = "0.13.1"
|
2017-07-04 18:26:11 +02:00
|
|
|
|
|
|
|
[lib]
|
2017-07-12 06:44:54 +02:00
|
|
|
proc-macro = true
|