rtic/macros/Cargo.toml

28 lines
680 B
TOML
Raw Normal View History

2017-07-04 18:26:11 +02:00
[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
2018-11-03 17:24:45 +01:00
categories = ["concurrency", "embedded", "no-std"]
description = "Procedural macros of the cortex-m-rtfm crate"
documentation = "https://japaric.github.io/cortex-m-rtfm/api/cortex_m_rtfm"
2018-12-16 19:13:22 +01:00
edition = "2018"
2018-11-03 17:24:45 +01:00
keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0"
name = "cortex-m-rtfm-macros"
2018-11-03 17:24:45 +01:00
readme = "../README.md"
repository = "https://github.com/japaric/cortex-m-rtfm"
version = "0.5.0-alpha.1"
2017-07-04 18:26:11 +02:00
[lib]
2017-07-12 06:44:54 +02:00
proc-macro = true
2018-11-03 17:02:41 +01:00
[dependencies]
proc-macro2 = "0.4.30"
quote = "0.6.12"
syn = "0.15.34"
2018-11-03 17:02:41 +01:00
[dependencies.rtfm-syntax]
git = "https://github.com/japaric/rtfm-syntax"
2018-11-03 17:02:41 +01:00
[features]
heterogeneous = []
2019-06-18 10:31:31 +02:00
homogeneous = []