rtic/rtic-macros/Cargo.toml

51 lines
1.1 KiB
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",
"Emil Fresk <emil.fresk@gmail.com>",
"Henrik Tjäder <henrik@tjaders.com>",
2019-10-15 22:01:32 +02:00
"Jorge Aparicio <jorge@japaric.io>",
"Per Lindgren <per.lindgren@ltu.se>",
2019-10-15 22:01:32 +02:00
]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "Procedural macros, syntax parsing, and codegen of the RTIC crate"
documentation = "https://rtic-rs.github.io/rtic/api/rtic"
2022-05-24 19:38:24 +02:00
edition = "2021"
2023-04-05 21:29:17 +02:00
keywords = [
"embedded",
"async",
"runtime",
"no-std",
"rtos",
]
2018-11-03 17:24:45 +01:00
license = "MIT OR Apache-2.0"
name = "rtic-macros"
2023-04-05 21:20:26 +02:00
readme = "../README.md"
repository = "https://github.com/rtic-rs/rtic"
version = "2.0.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
[features]
default = []
# list of supported codegen backends
cortex-m-source-masking = []
cortex-m-basepri = []
# riscv-clic = []
# riscv-ch32 = []
2023-02-19 14:30:49 +01:00
# backend API test
test-template = []
2018-11-03 17:02:41 +01:00
[dependencies]
indexmap = "2.0.0"
proc-macro2 = "1.0.49"
proc-macro-error = "1.0.4"
quote = "1.0.23"
syn = { version = "1.0.107", features = ["extra-traits", "full"] }
[dev-dependencies]
trybuild = "1.0.73"