aboutsummaryrefslogtreecommitdiff
path: root/rtic-macros
diff options
context:
space:
mode:
authorSympatron GmbH <35803463+Sympatron@users.noreply.github.com>2024-09-29 06:15:12 +0200
committerGitHub <noreply@github.com>2024-09-29 04:15:12 +0000
commit7b534b38e5aeb67f5fc0fa60f1ec1dd3956dc2bd (patch)
tree0c47ad8fa4b8da7724e6c9e830c1caee48008487 /rtic-macros
parent056616c772ea8b77aed65684384f26563f9095c9 (diff)
Replace proc-macro-error with proc-macro-error2 (#979)
Diffstat (limited to 'rtic-macros')
-rw-r--r--rtic-macros/CHANGELOG.md2
-rw-r--r--rtic-macros/Cargo.toml4
2 files changed, 4 insertions, 2 deletions
diff --git a/rtic-macros/CHANGELOG.md b/rtic-macros/CHANGELOG.md
index 557260d..5a69d42 100644
--- a/rtic-macros/CHANGELOG.md
+++ b/rtic-macros/CHANGELOG.md
@@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## [Unreleased]
+- Replace `proc-macro-error` with `proc-macro-error2`
+
### Changed
- Fix codegen emitting unqualified `Result`
diff --git a/rtic-macros/Cargo.toml b/rtic-macros/Cargo.toml
index 443ed0d..eee23c6 100644
--- a/rtic-macros/Cargo.toml
+++ b/rtic-macros/Cargo.toml
@@ -37,14 +37,14 @@ riscv-esp32c3 = []
# riscv-clic = []
# riscv-ch32 = []
riscv-slic = []
-
+
# backend API test
test-template = []
[dependencies]
indexmap = "2.0.0"
proc-macro2 = "1.0.49"
-proc-macro-error = "1.0.4"
+proc-macro-error2 = "2.0"
quote = "1.0.23"
syn = { version = "2.0.48", features = ["extra-traits", "full"] }