-
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.
Makes progress on #554
- Loading branch information
Showing
23 changed files
with
50 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ authors = ["Joshua Liebow-Feeser <[email protected]>"] | |
description = "Utilities for zero-copy parsing and serialization" | ||
license = "BSD-2-Clause OR Apache-2.0 OR MIT" | ||
repository = "https://github.com/google/zerocopy" | ||
rust-version = "1.60.0" | ||
rust-version = "1.59.0" | ||
|
||
exclude = [".*"] | ||
|
||
|
@@ -58,6 +58,10 @@ zerocopy-derive = { version = "=0.8.0-alpha.2", path = "zerocopy-derive" } | |
[dev-dependencies] | ||
assert_matches = "1.5" | ||
itertools = "0.11" | ||
# We don't use this directly, but trybuild does. On the MSRV toolchain, the | ||
# version resolver fails to select any version for once_cell unless we | ||
# depend on it directly. | ||
once_cell = "=1.9" | ||
rand = { version = "0.8.5", features = ["small_rng"] } | ||
rustversion = "1.0" | ||
static_assertions = "1.1" | ||
|
@@ -66,7 +70,7 @@ testutil = { path = "testutil" } | |
# and the version used in CI are guaranteed to be the same. Future versions | ||
# sometimes change the output format slightly, so a version mismatch can cause | ||
# CI test failures. | ||
trybuild = { version = "=1.0.85", features = ["diff"] } | ||
trybuild = { version = "=1.0.89", features = ["diff"] } | ||
# In tests, unlike in production, zerocopy-derive is not optional | ||
zerocopy-derive = { version = "=0.8.0-alpha.2", path = "zerocopy-derive" } | ||
# TODO(#381) Remove this dependency once we have our own layout gadgets. | ||
|
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 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 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 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 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,7 @@ 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.60.0" | ||
rust-version = "1.59.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, | ||
|
@@ -32,11 +32,15 @@ quote = "1.0.10" | |
syn = "2.0.31" | ||
|
||
[dev-dependencies] | ||
# We don't use this directly, but trybuild does. On the MSRV toolchain, the | ||
# version resolver fails to select any version for once_cell unless we | ||
# depend on it directly. | ||
once_cell = "=1.9" | ||
static_assertions = "1.1" | ||
testutil = { path = "../testutil" } | ||
# Pinned to a specific version so that the version used for local development | ||
# and the version used in CI are guaranteed to be the same. Future versions | ||
# sometimes change the output format slightly, so a version mismatch can cause | ||
# CI test failures. | ||
trybuild = { version = "=1.0.85", features = ["diff"] } | ||
trybuild = { version = "=1.0.89", features = ["diff"] } | ||
zerocopy = { path = "../", features = ["derive"] } |
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 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 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 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 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 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
Oops, something went wrong.