Skip to content

Commit dd57311

Browse files
committed
Remove unused crate proc-macro-error
The `proc-macro-error` crate is unmaintained[1] and is causing `cargo audit` failures[1]. Since the create is not even used by `rtic`, just remove it as a dependency. [1]: https://rustsec.org/advisories/RUSTSEC-2024-0370.html
1 parent 035ecb5 commit dd57311

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
1212
### Fixed
1313

1414
- CFG: Make `have_basepri` an expected cfg
15+
- Removed unused `proc-macro-error` crate from dependencies
1516

1617
### Changed
1718

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ name = "rtic"
2121

2222
[dependencies]
2323
cortex-m = "0.7.0"
24-
cortex-m-rtic-macros = { path = "macros", version = "1.1.6" }
24+
cortex-m-rtic-macros = { path = "macros", version = "1.1.7" }
2525
rtic-monotonic = "1.0.0"
2626
rtic-core = "1.0.0"
2727
heapless = "0.7.7"

macros/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@ license = "MIT OR Apache-2.0"
1212
name = "cortex-m-rtic-macros"
1313
readme = "../README.md"
1414
repository = "https://github.com/rtic-rs/cortex-m-rtic"
15-
version = "1.1.6"
15+
version = "1.1.7"
1616

1717
[lib]
1818
proc-macro = true
1919

2020
[dependencies]
2121
proc-macro2 = "1"
22-
proc-macro-error = "1"
2322
quote = "1"
2423
syn = "1"
2524
rtic-syntax = "1.0.3"

0 commit comments

Comments
 (0)