-
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
239 additions
and
192 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
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.57.0" | ||
rust-version = "1.56.0" | ||
|
||
exclude = [".*"] | ||
|
||
|
@@ -30,13 +30,16 @@ exclude = [".*"] | |
# as high as the specified version. In the emitted `--cfg`, dashes are replaced | ||
# by underscores. | ||
|
||
# From 1.61.0, Rust supports generic types with trait bounds in `const fn`. | ||
zerocopy-generic-bounds-in-const-fn = "1.61.0" | ||
|
||
# When the "simd" feature is enabled, include SIMD types from the | ||
# `core::arch::aarch64` module, which was stabilized in 1.59.0. On earlier Rust | ||
# versions, these types require the "simd-nightly" feature. | ||
zerocopy-aarch64-simd = "1.59.0" | ||
|
||
# From 1.61.0, Rust supports generic types with trait bounds in `const fn`. | ||
zerocopy-generic-bounds-in-const-fn = "1.61.0" | ||
# Permit panicking in `const fn`s. | ||
zerocopy-panic-in-const = "1.57.0" | ||
|
||
[package.metadata.ci] | ||
# The versions of the stable and nightly compiler toolchains to use in CI. | ||
|
Oops, something went wrong.