| { | ||
| "git": { | ||
| "sha1": "c8fb1ca16968099ef7c032db4e65c0a45830d188" | ||
| "sha1": "a986089ee73111d5bfda48b0c7d29d3f9301571c" | ||
| }, | ||
| "path_in_vcs": "zerocopy" | ||
| } |
+3
-3
@@ -122,3 +122,3 @@ # This file is automatically @generated by Cargo. | ||
| name = "zerocopy" | ||
| version = "0.8.53" | ||
| version = "0.8.54" | ||
| dependencies = [ | ||
@@ -136,5 +136,5 @@ "elain", | ||
| name = "zerocopy-derive" | ||
| version = "0.8.53" | ||
| version = "0.8.54" | ||
| source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| checksum = "4714fd92cf900833d49538023a9b3915155210801d1c1169eba513b2addefd71" | ||
| checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5" | ||
| dependencies = [ | ||
@@ -141,0 +141,0 @@ "proc-macro2", |
+4
-4
@@ -16,3 +16,3 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO | ||
| name = "zerocopy" | ||
| version = "0.8.53" | ||
| version = "0.8.54" | ||
| authors = [ | ||
@@ -393,3 +393,3 @@ "Joshua Liebow-Feeser <joshlf@google.com>", | ||
| [dependencies.zerocopy-derive] | ||
| version = "=0.8.53" | ||
| version = "=0.8.54" | ||
| optional = true | ||
@@ -418,5 +418,5 @@ | ||
| [dev-dependencies.zerocopy-derive] | ||
| version = "=0.8.53" | ||
| version = "=0.8.54" | ||
| [target."cfg(any())".dependencies.zerocopy-derive] | ||
| version = "=0.8.53" | ||
| version = "=0.8.54" |
+1
-0
@@ -103,2 +103,3 @@ // SPDX-License-Identifier: BSD-2-Clause OR Apache-2.0 OR MIT | ||
| #[doc(hidden)] | ||
| #[derive(PartialEq)] | ||
| pub enum Order { | ||
@@ -105,0 +106,0 @@ BigEndian, |
+6
-0
@@ -153,2 +153,4 @@ // SPDX-License-Identifier: BSD-2-Clause OR Apache-2.0 OR MIT | ||
| )] | ||
| #[cfg_attr(not(zerocopy_inline_always), inline)] | ||
| #[cfg_attr(zerocopy_inline_always, inline(always))] | ||
| pub(crate) const fn padding_needed_for(len: usize, align: NonZeroUsize) -> usize { | ||
@@ -255,2 +257,4 @@ #[cfg(kani)] | ||
| #[cfg_attr(not(zerocopy_inline_always), inline)] | ||
| #[cfg_attr(zerocopy_inline_always, inline(always))] | ||
| pub(crate) const fn max(a: NonZeroUsize, b: NonZeroUsize) -> NonZeroUsize { | ||
@@ -264,2 +268,4 @@ if a.get() < b.get() { | ||
| #[cfg_attr(not(zerocopy_inline_always), inline)] | ||
| #[cfg_attr(zerocopy_inline_always, inline(always))] | ||
| pub(crate) const fn min(a: NonZeroUsize, b: NonZeroUsize) -> NonZeroUsize { | ||
@@ -266,0 +272,0 @@ if a.get() > b.get() { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display