rtic/macros/Cargo.toml

26 lines
652 B
TOML
Raw Normal View History

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"
2021-11-09 10:35:58 +01:00
version = "0.6.0-rc.4"
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"
2021-11-08 20:42:04 +01:00
rtic-syntax = "0.5.0-rc.2"