2017-07-04 18:26:11 +02:00
|
|
|
[package]
|
2019-10-15 22:01:32 +02:00
|
|
|
authors = [
|
2020-06-11 19:18:29 +02:00
|
|
|
"The Real-Time Interrupt-driven Concurrency developers",
|
2019-10-15 22:01:32 +02:00
|
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
|
|
]
|
2018-11-03 17:24:45 +01:00
|
|
|
categories = ["concurrency", "embedded", "no-std"]
|
2020-06-11 19:18:29 +02:00
|
|
|
description = "Procedural macros of the cortex-m-rtic crate"
|
|
|
|
documentation = "https://rtic-rs.github.io/cortex-m-rtic/api/cortex_m_rtic"
|
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"
|
2020-06-11 19:18:29 +02:00
|
|
|
name = "cortex-m-rtic-macros"
|
2018-11-03 17:24:45 +01:00
|
|
|
readme = "../README.md"
|
2020-06-11 19:18:29 +02:00
|
|
|
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
2020-08-27 14:45:29 +02:00
|
|
|
version = "0.5.2"
|
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"
|
2020-10-01 19:15:51 +02:00
|
|
|
proc-macro-error = "1"
|
2019-08-20 15:11:24 +02:00
|
|
|
quote = "1"
|
|
|
|
syn = "1"
|
2020-10-01 19:15:51 +02:00
|
|
|
rtic-syntax = { git = "https://github.com/rtic-rs/rtic-syntax", branch = "master", version = "0.5.0-alpha.0" }
|
2018-11-03 17:02:41 +01:00
|
|
|
|