rtic/macros/Cargo.toml

25 lines
616 B
TOML
Raw Normal View History

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"
name = "cortex-m-rtfm-macros"
2017-07-29 08:16:11 +02:00
repository = "https://github.com/japaric/cortex-m-rtfm"
version = "0.3.1"
2017-07-04 18:26:11 +02:00
[dependencies]
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" }
syn = "0.13.1"
2018-04-29 08:45:31 +02:00
either = "1.5.0"
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 = []