-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relax zerocopy-derive's MSRV policy (#1482)
This also bumps zerocopy-derive's syn dependency to 2.0.46. We don't actually need this for zerocopy-derive. However, in CI, we modify zerocopy-derive to take an "exact" dependency on syn (ie, '=2.0.46' instead of '2.0.46'). One of the transitive dependencies of our `testutil` crate requires syn 2.0.46 or later. We could in principle make CI smart enough to test with both syn versions, but we wouldn't gain much for that complexity - it's easier to just bump the version. Fixes #1085 See also #1481
- Loading branch information
Showing
5 changed files
with
33 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,6 @@ authors = ["Joshua Liebow-Feeser <[email protected]>"] | |
description = "Custom derive for traits from the zerocopy crate" | ||
license = "BSD-2-Clause OR Apache-2.0 OR MIT" | ||
repository = "https://github.com/google/zerocopy" | ||
rust-version = "1.56.0" | ||
|
||
# We prefer to include tests when publishing to crates.io so that Crater [1] can | ||
# detect regressions in our test suite. These two tests are excessively large, | ||
|
@@ -29,10 +28,7 @@ proc-macro = true | |
[dependencies] | ||
proc-macro2 = "1.0.1" | ||
quote = "1.0.10" | ||
# This pinned dependency is a temporary work-around for #1085. Per #1088, we | ||
# will not ship 0.8 until we've removed this work-around and replaced it with a | ||
# more permanent solution. | ||
syn = "=2.0.55" | ||
syn = "2.0.46" | ||
|
||
[dev-dependencies] | ||
# We don't use this directly, but trybuild does. On the MSRV toolchain, the | ||
|