Skip to content

Commit ff20f9a

Browse files
authored
Upgrade proc-macro-crate to 3.4.0 in order fix compilation under bazel (#329)
* Upgrade proc-macro-crate to 3.4.0 in order fix compilation under bazel rstest currently fails to build under bazel with ``` error: custom attribute panicked | 250 | #[rstest] | ^^^^^^^^^ | = help: message: rstest is present in `Cargo.toml` qed: Could not find `Cargo.toml` in manifest dir: ``` I've tracked this back to proc-macro-crate, which fixed it in bkchr/proc-macro-crate#55 * fix typo in changelog
1 parent 5e9c6ee commit ff20f9a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
### Fixed
1313

14+
- Fix compilation under bazel by upgrading proc-macro-crate to 3.4.0
15+
1416
## [0.26.1] 2025/7/27
1517

1618
### Fixed

rstest_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ syn = { version = "2.0.79", features = [
3737
"visit-mut",
3838
] }
3939
unicode-ident = "1.0.13"
40-
proc-macro-crate = { version = "3.2.0", optional = true }
40+
proc-macro-crate = { version = "3.4.0", optional = true }
4141

4242
[dev-dependencies]
4343
maplit = "1.0.2"

0 commit comments

Comments
 (0)