aboutsummaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'macros/Cargo.toml')
-rw-r--r--macros/Cargo.toml32
1 files changed, 13 insertions, 19 deletions
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index 93e5ee72..610890bb 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -1,31 +1,25 @@
[package]
-authors = ["Jorge Aparicio <jorge@japaric.io>"]
+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-rtfm crate"
-documentation = "https://japaric.github.io/cortex-m-rtfm/api/cortex_m_rtfm"
+description = "Procedural macros of the cortex-m-rtic crate"
+documentation = "https://rtic-rs.github.io/cortex-m-rtic/api/cortex_m_rtic"
edition = "2018"
keywords = ["arm", "cortex-m"]
license = "MIT OR Apache-2.0"
-name = "cortex-m-rtfm-macros"
+name = "cortex-m-rtic-macros"
readme = "../README.md"
-repository = "https://github.com/japaric/cortex-m-rtfm"
-version = "0.4.2"
+repository = "https://github.com/rtic-rs/cortex-m-rtic"
+version = "0.5.2"
[lib]
proc-macro = true
[dependencies]
-quote = "0.6.10"
-proc-macro2 = "0.4.24"
+proc-macro2 = "1"
+quote = "1"
+syn = "1"
+rtic-syntax = { git = "https://github.com/rtic-rs/rtic-syntax", branch = "master", version = "0.4.0" }
-[dependencies.syn]
-features = ["extra-traits", "full"]
-version = "0.15.23"
-
-[dependencies.rand]
-default-features = false
-version = "0.5.5"
-
-[features]
-timer-queue = []
-nightly = [] \ No newline at end of file