mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
a58be575cb
see rtic-rs/rfcs#52 for details includes: core proposal and `#[init]` and `memory-watermark` extensions Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
30 lines
711 B
TOML
30 lines
711 B
TOML
[package]
|
|
authors = [
|
|
"The Real-Time Interrupt-driven Concurrency developers",
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
]
|
|
categories = ["concurrency", "embedded", "no-std"]
|
|
description = "Procedural macros of the cortex-m-rtic crate"
|
|
documentation = "https://rtic-rs.github.io/cortex-m-rtic/api/cortex_m_rtic"
|
|
edition = "2021"
|
|
keywords = ["arm", "cortex-m"]
|
|
license = "MIT OR Apache-2.0"
|
|
name = "cortex-m-rtic-macros"
|
|
readme = "../README.md"
|
|
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
|
version = "1.1.5"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
proc-macro-error = "1"
|
|
quote = "1"
|
|
syn = "1"
|
|
rtic-syntax = "1.0.2"
|
|
indexmap = "1.0.2"
|
|
|
|
[features]
|
|
debugprint = []
|
|
memory-watermark = []
|