rtic/macros/Cargo.toml

26 lines
618 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"
2019-09-15 20:19:48 +02:00
documentation = "https://rtfm-rs.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"
2019-09-15 20:19:48 +02:00
repository = "https://github.com/rtfm-rs/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]
2019-08-20 15:11:24 +02:00
proc-macro2 = "1"
quote = "1"
syn = "1"
2019-09-15 22:57:43 +02:00
rtfm-syntax = "0.4.0-beta.1"
2018-11-03 17:02:41 +01:00
[features]
heterogeneous = []
2019-06-18 10:31:31 +02:00
homogeneous = []