mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
30d6327001
with the upcoming version of heapless we are able to initialize all internal queues in const context removing the need for late initialization this commit also removes the "nightly" feature because all the optimization provided by it are now enabled by default
26 lines
No EOL
645 B
TOML
26 lines
No EOL
645 B
TOML
[package]
|
|
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
|
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"
|
|
edition = "2018"
|
|
keywords = ["arm", "cortex-m"]
|
|
license = "MIT OR Apache-2.0"
|
|
name = "cortex-m-rtfm-macros"
|
|
readme = "../README.md"
|
|
repository = "https://github.com/japaric/cortex-m-rtfm"
|
|
version = "0.5.0-alpha.1"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "0.6.10"
|
|
proc-macro2 = "0.4.24"
|
|
|
|
[dependencies.syn]
|
|
features = ["extra-traits", "full"]
|
|
version = "0.15.23"
|
|
|
|
[features]
|
|
timer-queue = [] |