mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
Replace proc-macro-error with proc-macro-error2 (#979)
This commit is contained in:
parent
056616c772
commit
7b534b38e5
2 changed files with 4 additions and 2 deletions
|
@ -7,6 +7,8 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
- Replace `proc-macro-error` with `proc-macro-error2`
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Fix codegen emitting unqualified `Result`
|
- Fix codegen emitting unqualified `Result`
|
||||||
|
|
|
@ -37,14 +37,14 @@ riscv-esp32c3 = []
|
||||||
# riscv-clic = []
|
# riscv-clic = []
|
||||||
# riscv-ch32 = []
|
# riscv-ch32 = []
|
||||||
riscv-slic = []
|
riscv-slic = []
|
||||||
|
|
||||||
# backend API test
|
# backend API test
|
||||||
test-template = []
|
test-template = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
indexmap = "2.0.0"
|
indexmap = "2.0.0"
|
||||||
proc-macro2 = "1.0.49"
|
proc-macro2 = "1.0.49"
|
||||||
proc-macro-error = "1.0.4"
|
proc-macro-error2 = "2.0"
|
||||||
quote = "1.0.23"
|
quote = "1.0.23"
|
||||||
syn = { version = "2.0.48", features = ["extra-traits", "full"] }
|
syn = { version = "2.0.48", features = ["extra-traits", "full"] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue