forked from rtic-rs/rtic-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 690 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
authors = [
"The Real-Time Interrupt-driven Concurrency developers",
"Jorge Aparicio <jorge@japaric.io>",
]
categories = ["concurrency", "embedded", "no-std"]
description = "The Real-Time Interrupt-driven Concurrency (RTIC) meta language"
documentation = "https://docs.rs/rtic-syntax"
edition = "2021"
keywords = []
license = "MIT OR Apache-2.0"
name = "rtic-syntax"
repository = "https://github.com/rtic-rs/rtic-syntax"
version = "1.0.3"
[dependencies]
indexmap = "1.0.2"
proc-macro2 = "1"
quote = "1"
[dependencies.syn]
features = ["extra-traits", "full"]
version = "1.0.12"
[dev-dependencies]
mock = { path = "mock" }
trybuild = "1"
[workspace]
members = [
"mock",
]