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",
|
2022-12-31 14:45:13 +01:00
|
|
|
"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>",
|
2022-12-31 14:45:13 +01:00
|
|
|
"Per Lindgren <per.lindgren@ltu.se>",
|
2019-10-15 22:01:32 +02:00
|
|
|
]
|
2022-12-31 14:45:13 +01: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"
|
2022-12-31 14:45:13 +01:00
|
|
|
name = "rtic-macros"
|
2023-04-05 21:20:26 +02:00
|
|
|
readme = "../README.md"
|
2022-12-31 14:45:13 +01:00
|
|
|
repository = "https://github.com/rtic-rs/rtic"
|
|
|
|
|
2023-05-25 08:27:58 +02:00
|
|
|
version = "2.0.0"
|
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
|
|
|
|
2023-01-23 20:05:47 +01:00
|
|
|
[features]
|
2022-12-31 14:45:13 +01:00
|
|
|
default = []
|
2023-02-11 08:55:19 +01:00
|
|
|
|
2022-12-31 14:45:13 +01:00
|
|
|
# list of supported codegen backends
|
2023-02-20 20:56:18 +01:00
|
|
|
cortex-m-source-masking = []
|
|
|
|
cortex-m-basepri = []
|
|
|
|
# riscv-clic = []
|
|
|
|
# riscv-ch32 = []
|
2023-02-19 14:30:49 +01:00
|
|
|
|
|
|
|
# backend API test
|
2023-02-20 20:56:18 +01:00
|
|
|
test-template = []
|
2022-12-31 14:45:13 +01:00
|
|
|
|
2018-11-03 17:02:41 +01:00
|
|
|
[dependencies]
|
2023-06-26 19:00:38 +02:00
|
|
|
indexmap = "2.0.0"
|
2022-12-31 14:45:13 +01:00
|
|
|
proc-macro2 = "1.0.49"
|
|
|
|
proc-macro-error = "1.0.4"
|
|
|
|
quote = "1.0.23"
|
|
|
|
syn = { version = "1.0.107", features = ["extra-traits", "full"] }
|
2022-01-27 23:47:49 +01:00
|
|
|
|
2022-12-31 14:45:13 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
trybuild = "1.0.73"
|