html-to-markdown 2.24.1 → 2.24.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +9 -6
- data/ext/html-to-markdown-rb/native/Cargo.lock +13 -13
- data/ext/html-to-markdown-rb/native/Cargo.toml +1 -1
- data/lib/html_to_markdown/version.rb +1 -1
- data/rust-vendor/bytemuck/.cargo-checksum.json +1 -1
- data/rust-vendor/bytemuck/.cargo_vcs_info.json +1 -1
- data/rust-vendor/bytemuck/.github/workflows/rust.yml +4 -4
- data/rust-vendor/bytemuck/Cargo.lock +16 -9
- data/rust-vendor/bytemuck/Cargo.toml +6 -2
- data/rust-vendor/bytemuck/Cargo.toml.orig +7 -6
- data/rust-vendor/bytemuck/changelog.md +5 -0
- data/rust-vendor/bytemuck/src/must.rs +1 -1
- data/rust-vendor/bytemuck/src/pod.rs +13 -0
- data/rust-vendor/bytemuck/src/zeroable.rs +13 -0
- data/rust-vendor/bytemuck/src/zeroable_in_option.rs +2 -2
- data/rust-vendor/bytemuck/tests/std_tests.rs +1 -1
- data/rust-vendor/cc/.cargo-checksum.json +1 -1
- data/rust-vendor/cc/.cargo_vcs_info.json +1 -1
- data/rust-vendor/cc/CHANGELOG.md +8 -0
- data/rust-vendor/cc/Cargo.lock +3 -3
- data/rust-vendor/cc/Cargo.toml +2 -2
- data/rust-vendor/cc/Cargo.toml.orig +2 -2
- data/rust-vendor/cc/src/lib.rs +1 -0
- data/rust-vendor/cc/src/target/generated.rs +10 -0
- data/rust-vendor/find-msvc-tools/.cargo-checksum.json +1 -1
- data/rust-vendor/find-msvc-tools/.cargo_vcs_info.json +1 -1
- data/rust-vendor/find-msvc-tools/CHANGELOG.md +6 -0
- data/rust-vendor/find-msvc-tools/Cargo.lock +1 -1
- data/rust-vendor/find-msvc-tools/Cargo.toml +1 -1
- data/rust-vendor/find-msvc-tools/Cargo.toml.orig +1 -1
- data/rust-vendor/find-msvc-tools/src/find_tools.rs +55 -20
- data/rust-vendor/html-to-markdown-rs/src/converter/handlers/link.rs +1 -9
- data/rust-vendor/html-to-markdown-rs/src/converter/inline/link.rs +2 -11
- data/rust-vendor/html-to-markdown-rs/src/converter/list/definition.rs +30 -7
- data/rust-vendor/html-to-markdown-rs/src/converter/semantic/definition_list.rs +30 -7
- data/rust-vendor/html-to-markdown-rs/tests/issue_199_regressions.rs +15 -0
- data/rust-vendor/html-to-markdown-rs/tests/issue_200_regressions.rs +36 -0
- data/rust-vendor/zerocopy/.cargo-checksum.json +1 -1
- data/rust-vendor/zerocopy/.cargo_vcs_info.json +2 -1
- data/rust-vendor/zerocopy/Cargo.lock +3 -3
- data/rust-vendor/zerocopy/Cargo.toml +4 -4
- data/rust-vendor/zerocopy/Cargo.toml.orig +4 -4
- data/rust-vendor/zerocopy/src/doctests.rs +27 -0
- data/rust-vendor/zerocopy/src/error.rs +30 -0
- data/rust-vendor/zerocopy/src/layout.rs +239 -135
- data/rust-vendor/zerocopy/src/lib.rs +16 -0
- data/rust-vendor/zerocopy/src/macros.rs +255 -125
- data/rust-vendor/zerocopy/src/pointer/mod.rs +1 -1
- data/rust-vendor/zerocopy/src/pointer/ptr.rs +109 -23
- data/rust-vendor/zerocopy/src/util/macro_util.rs +344 -383
- data/rust-vendor/zerocopy/src/util/mod.rs +38 -0
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-mut-const.stderr +8 -0
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-a-reference.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-mut-src-unsized.stderr +11 -3
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-mutable.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-not-a-reference.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-not-references.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-ref-src-unsized.stderr +11 -3
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-dst-not-tryfrombytes.stderr +0 -10
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-dst-mutable.stderr +1 -1
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-dst-not-immutable-tryfrombytes.stderr +0 -10
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-src-not-immutable-intobytes.stderr +1 -11
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-mut-const.stderr +9 -0
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-a-reference.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-mut-src-unsized.stderr +16 -8
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-mutable.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-not-a-reference.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-not-references.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-ref-src-unsized.stderr +16 -8
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-dst-not-tryfrombytes.stderr +38 -38
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-dst-not-immutable-tryfrombytes.stderr +33 -33
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-src-not-immutable-intobytes.stderr +12 -12
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-mut-const.stderr +9 -0
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-a-reference.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-mut-src-unsized.stderr +16 -8
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-ref-dst-mutable.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-ref-dst-not-a-reference.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-not-references.stderr +10 -0
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-ref-src-unsized.stderr +16 -8
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-dst-not-tryfrombytes.stderr +38 -38
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.stderr +33 -33
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-src-not-immutable-intobytes.stderr +12 -12
- data/rust-vendor/zerocopy-derive/.cargo-checksum.json +1 -1
- data/rust-vendor/zerocopy-derive/.cargo_vcs_info.json +1 -1
- data/rust-vendor/zerocopy-derive/Cargo.lock +1 -1
- data/rust-vendor/zerocopy-derive/Cargo.toml +1 -1
- data/rust-vendor/zerocopy-derive/Cargo.toml.orig +1 -1
- data/rust-vendor/zerocopy-derive/tests/ui-nightly/enum.stderr +3 -3
- data/rust-vendor/zerocopy-derive/tests/ui-nightly/struct.stderr +5 -5
- data/rust-vendor/zerocopy-derive/tests/ui-stable/enum.stderr +3 -3
- data/rust-vendor/zerocopy-derive/tests/ui-stable/struct.stderr +5 -5
- data/rust-vendor/zmij/.cargo-checksum.json +1 -1
- data/rust-vendor/zmij/.cargo_vcs_info.json +1 -1
- data/rust-vendor/zmij/Cargo.lock +16 -16
- data/rust-vendor/zmij/Cargo.toml +1 -1
- data/rust-vendor/zmij/Cargo.toml.orig +1 -1
- data/rust-vendor/zmij/README.md +1 -1
- data/rust-vendor/zmij/src/lib.rs +54 -93
- metadata +4 -50
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-unsized.rs +0 -15
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-unsized.stderr +0 -8
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-unsized.rs +0 -15
- data/rust-vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-unsized.stderr +0 -8
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-alignment-increase.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-alignment-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-size-decrease.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-size-decrease.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-size-increase.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_mut-size-increase.stderr +0 -17
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-alignment-increase.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-alignment-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-size-decrease.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-size-decrease.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-size-increase.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-msrv/try_transmute_ref-size-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-unsized.rs +0 -15
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-unsized.stderr +0 -16
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-unsized.rs +0 -15
- data/rust-vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-unsized.stderr +0 -16
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-alignment-increase.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-alignment-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-size-decrease.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-size-decrease.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-size-increase.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_mut-size-increase.stderr +0 -17
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-alignment-increase.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-alignment-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-size-decrease.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-size-decrease.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-size-increase.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-size-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-mut-dst-unsized.rs +0 -15
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-mut-dst-unsized.stderr +0 -16
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-ref-dst-unsized.rs +0 -15
- data/rust-vendor/zerocopy/tests/ui-stable/transmute-ref-dst-unsized.stderr +0 -16
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-alignment-increase.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-alignment-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-size-decrease.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-size-decrease.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-size-increase.rs +0 -19
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_mut-size-increase.stderr +0 -17
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-alignment-increase.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-alignment-increase.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-size-decrease.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-size-decrease.stderr +0 -9
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-size-increase.rs +0 -18
- data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-size-increase.stderr +0 -9
data/rust-vendor/zerocopy/tests/ui-nightly/try_transmute_ref-src-not-immutable-intobytes.stderr
CHANGED
|
@@ -20,14 +20,14 @@ help: the trait `IntoBytes` is not implemented for `NotZerocopy<AU16>`
|
|
|
20
20
|
AtomicI8
|
|
21
21
|
AtomicIsize
|
|
22
22
|
and $N others
|
|
23
|
-
note: required by a bound in `zerocopy::util::macro_util::try_transmute_ref`
|
|
23
|
+
note: required by a bound in `zerocopy::util::macro_util::Wrap::<&'a Src, &'a Dst>::try_transmute_ref`
|
|
24
24
|
--> src/util/macro_util.rs
|
|
25
25
|
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
26
|
+
| pub fn try_transmute_ref(self) -> Result<&'a Dst, ValidityError<&'a Src, Dst>>
|
|
27
|
+
| ----------------- required by a bound in this associated function
|
|
28
|
+
| where
|
|
29
|
+
| Src: IntoBytes + Immutable,
|
|
30
|
+
| ^^^^^^^^^ required by this bound in `Wrap::<&Src, &Dst>::try_transmute_ref`
|
|
31
31
|
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
32
32
|
|
|
33
33
|
error[E0277]: the trait bound `NotZerocopy<AU16>: Immutable` is not satisfied
|
|
@@ -52,12 +52,12 @@ help: the trait `Immutable` is not implemented for `NotZerocopy<AU16>`
|
|
|
52
52
|
(A, B, C, D, E)
|
|
53
53
|
(A, B, C, D, E, F)
|
|
54
54
|
and $N others
|
|
55
|
-
note: required by a bound in `zerocopy::util::macro_util::try_transmute_ref`
|
|
55
|
+
note: required by a bound in `zerocopy::util::macro_util::Wrap::<&'a Src, &'a Dst>::try_transmute_ref`
|
|
56
56
|
--> src/util/macro_util.rs
|
|
57
57
|
|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
60
|
-
|
|
|
61
|
-
|
|
|
62
|
-
|
|
|
58
|
+
| pub fn try_transmute_ref(self) -> Result<&'a Dst, ValidityError<&'a Src, Dst>>
|
|
59
|
+
| ----------------- required by a bound in this associated function
|
|
60
|
+
| where
|
|
61
|
+
| Src: IntoBytes + Immutable,
|
|
62
|
+
| ^^^^^^^^^ required by this bound in `Wrap::<&Src, &Dst>::try_transmute_ref`
|
|
63
63
|
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -13,6 +13,15 @@ note: `const` item defined here
|
|
|
13
13
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
14
14
|
= note: `#[warn(const_item_mutation)]` on by default
|
|
15
15
|
|
|
16
|
+
error[E0015]: cannot call non-const method `Wrap::<&mut [u8; 2], &mut [u8; 2]>::transmute_mut_inference_helper` in constants
|
|
17
|
+
--> tests/ui-stable/transmute-mut-const.rs:18:37
|
|
18
|
+
|
|
|
19
|
+
18 | const CONST_CONTEXT: &mut [u8; 2] = transmute_mut!(&mut ARRAY_OF_U8S);
|
|
20
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
21
|
+
|
|
|
22
|
+
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
|
23
|
+
= note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
24
|
+
|
|
16
25
|
error[E0015]: cannot call non-const method `Wrap::<&mut [u8; 2], &mut [u8; 2]>::transmute_mut` in constants
|
|
17
26
|
--> tests/ui-stable/transmute-mut-const.rs:18:37
|
|
18
27
|
|
|
|
@@ -7,3 +7,13 @@ error[E0308]: mismatched types
|
|
|
7
7
|
= note: expected type `usize`
|
|
8
8
|
found mutable reference `&mut _`
|
|
9
9
|
= note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
10
|
+
|
|
11
|
+
error[E0308]: mismatched types
|
|
12
|
+
--> tests/ui-stable/transmute-mut-dst-not-a-reference.rs:15:36
|
|
13
|
+
|
|
|
14
|
+
15 | const DST_NOT_A_REFERENCE: usize = transmute_mut!(&mut 0u8);
|
|
15
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^ expected `usize`, found `&mut _`
|
|
16
|
+
|
|
|
17
|
+
= note: expected type `usize`
|
|
18
|
+
found mutable reference `&mut _`
|
|
19
|
+
= note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
error[
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
15 | const SRC_UNSIZED: &mut [u8; 1] = transmute_mut!(&mut [0u8][..]);
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
error[E0599]: the method `transmute_mut` exists for struct `Wrap<&mut [u8], &mut [u8; 1]>`, but its trait bounds were not satisfied
|
|
2
|
+
--> tests/ui-stable/transmute-mut-src-unsized.rs:15:35
|
|
3
|
+
|
|
|
4
|
+
15 | const SRC_UNSIZED: &mut [u8; 1] = transmute_mut!(&mut [0u8][..]);
|
|
5
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
6
|
+
|
|
|
7
|
+
::: src/util/macro_util.rs
|
|
8
|
+
|
|
|
9
|
+
| pub struct Wrap<Src, Dst>(pub Src, pub PhantomData<Dst>);
|
|
10
|
+
| ------------------------- doesn't satisfy `Wrap<&mut [u8], &mut [u8; 1]>: TransmuteMutDst<'_>`
|
|
11
|
+
|
|
|
12
|
+
= note: the following trait bounds were not satisfied:
|
|
13
|
+
`[u8]: Sized`
|
|
14
|
+
`<[u8; 1] as KnownLayout>::PointerMetadata = usize`
|
|
15
|
+
which is required by `Wrap<&mut [u8], &mut [u8; 1]>: TransmuteMutDst<'_>`
|
|
16
|
+
= note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -27,3 +27,13 @@ error[E0308]: mismatched types
|
|
|
27
27
|
= note: expected mutable reference `&mut u8`
|
|
28
28
|
found reference `&_`
|
|
29
29
|
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
30
|
+
|
|
31
|
+
error[E0308]: mismatched types
|
|
32
|
+
--> tests/ui-stable/transmute-ref-dst-mutable.rs:16:22
|
|
33
|
+
|
|
|
34
|
+
16 | let _: &mut u8 = transmute_ref!(&0u8);
|
|
35
|
+
| ^^^^^^^^^^^^^^^^^^^^ types differ in mutability
|
|
36
|
+
|
|
|
37
|
+
= note: expected mutable reference `&mut u8`
|
|
38
|
+
found reference `&_`
|
|
39
|
+
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -27,3 +27,13 @@ error[E0308]: mismatched types
|
|
|
27
27
|
= note: expected type `usize`
|
|
28
28
|
found reference `&_`
|
|
29
29
|
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
30
|
+
|
|
31
|
+
error[E0308]: mismatched types
|
|
32
|
+
--> tests/ui-stable/transmute-ref-dst-not-a-reference.rs:15:36
|
|
33
|
+
|
|
|
34
|
+
15 | const DST_NOT_A_REFERENCE: usize = transmute_ref!(&0u8);
|
|
35
|
+
| ^^^^^^^^^^^^^^^^^^^^ expected `usize`, found `&_`
|
|
36
|
+
|
|
|
37
|
+
= note: expected type `usize`
|
|
38
|
+
found reference `&_`
|
|
39
|
+
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -43,3 +43,13 @@ error[E0308]: mismatched types
|
|
|
43
43
|
= note: expected type `usize`
|
|
44
44
|
found reference `&_`
|
|
45
45
|
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
46
|
+
|
|
47
|
+
error[E0308]: mismatched types
|
|
48
|
+
--> tests/ui-stable/transmute-ref-src-dst-not-references.rs:15:39
|
|
49
|
+
|
|
|
50
|
+
15 | const SRC_DST_NOT_REFERENCES: usize = transmute_ref!(0usize);
|
|
51
|
+
| ^^^^^^^^^^^^^^^^^^^^^^ expected `usize`, found `&_`
|
|
52
|
+
|
|
|
53
|
+
= note: expected type `usize`
|
|
54
|
+
found reference `&_`
|
|
55
|
+
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
error[
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
14 | const SRC_UNSIZED: &[u8; 1] = transmute_ref!(&[0u8][..]);
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
error[E0599]: the method `transmute_ref` exists for struct `Wrap<&[u8], &[u8; 1]>`, but its trait bounds were not satisfied
|
|
2
|
+
--> tests/ui-stable/transmute-ref-src-unsized.rs:14:31
|
|
3
|
+
|
|
|
4
|
+
14 | const SRC_UNSIZED: &[u8; 1] = transmute_ref!(&[0u8][..]);
|
|
5
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
6
|
+
|
|
|
7
|
+
::: src/util/macro_util.rs
|
|
8
|
+
|
|
|
9
|
+
| pub struct Wrap<Src, Dst>(pub Src, pub PhantomData<Dst>);
|
|
10
|
+
| ------------------------- doesn't satisfy `Wrap<&[u8], &[u8; 1]>: TransmuteRefDst<'_>`
|
|
11
|
+
|
|
|
12
|
+
= note: the following trait bounds were not satisfied:
|
|
13
|
+
`[u8]: Sized`
|
|
14
|
+
`<[u8; 1] as KnownLayout>::PointerMetadata = usize`
|
|
15
|
+
which is required by `Wrap<&[u8], &[u8; 1]>: TransmuteRefDst<'_>`
|
|
16
|
+
= note: this error originates in the macro `transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -1,31 +1,3 @@
|
|
|
1
|
-
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
2
|
-
--> tests/ui-stable/try_transmute_mut-dst-not-tryfrombytes.rs:18:33
|
|
3
|
-
|
|
|
4
|
-
18 | let dst_not_try_from_bytes: Result<&mut NotZerocopy, _> = try_transmute_mut!(src);
|
|
5
|
-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ unsatisfied trait bound
|
|
6
|
-
|
|
|
7
|
-
help: the trait `TryFromBytes` is not implemented for `NotZerocopy`
|
|
8
|
-
--> tests/ui-stable/../include.rs
|
|
9
|
-
|
|
|
10
|
-
15 | pub struct NotZerocopy<T = ()>(pub T);
|
|
11
|
-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
12
|
-
= note: Consider adding `#[derive(TryFromBytes)]` to `NotZerocopy`
|
|
13
|
-
= help: the following other types implement trait `TryFromBytes`:
|
|
14
|
-
()
|
|
15
|
-
(A, B)
|
|
16
|
-
(A, B, C)
|
|
17
|
-
(A, B, C, D)
|
|
18
|
-
(A, B, C, D, E)
|
|
19
|
-
(A, B, C, D, E, F)
|
|
20
|
-
(A, B, C, D, E, F, G)
|
|
21
|
-
(A, B, C, D, E, F, G, H)
|
|
22
|
-
and $N others
|
|
23
|
-
note: required by a bound in `ValidityError`
|
|
24
|
-
--> src/error.rs
|
|
25
|
-
|
|
|
26
|
-
| pub struct ValidityError<Src, Dst: ?Sized + TryFromBytes> {
|
|
27
|
-
| ^^^^^^^^^^^^ required by this bound in `ValidityError`
|
|
28
|
-
|
|
29
1
|
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
30
2
|
--> tests/ui-stable/try_transmute_mut-dst-not-tryfrombytes.rs:18:63
|
|
31
3
|
|
|
|
@@ -48,14 +20,14 @@ help: the trait `TryFromBytes` is not implemented for `NotZerocopy`
|
|
|
48
20
|
(A, B, C, D, E, F, G)
|
|
49
21
|
(A, B, C, D, E, F, G, H)
|
|
50
22
|
and $N others
|
|
51
|
-
note: required by a bound in `try_transmute_mut`
|
|
23
|
+
note: required by a bound in `Wrap::<&'a mut Src, &'a mut Dst>::try_transmute_mut`
|
|
52
24
|
--> src/util/macro_util.rs
|
|
53
25
|
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
26
|
+
| pub fn try_transmute_mut(self) -> Result<&'a mut Dst, ValidityError<&'a mut Src, Dst>>
|
|
27
|
+
| ----------------- required by a bound in this associated function
|
|
56
28
|
...
|
|
57
|
-
|
|
|
58
|
-
|
|
|
29
|
+
| Dst: TryFromBytes + IntoBytes,
|
|
30
|
+
| ^^^^^^^^^^^^ required by this bound in `Wrap::<&mut Src, &mut Dst>::try_transmute_mut`
|
|
59
31
|
= note: this error originates in the macro `try_transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
60
32
|
|
|
61
33
|
error[E0277]: the trait bound `NotZerocopy: IntoBytes` is not satisfied
|
|
@@ -80,16 +52,44 @@ help: the trait `IntoBytes` is not implemented for `NotZerocopy`
|
|
|
80
52
|
AtomicI8
|
|
81
53
|
AtomicIsize
|
|
82
54
|
and $N others
|
|
83
|
-
note: required by a bound in `try_transmute_mut`
|
|
55
|
+
note: required by a bound in `Wrap::<&'a mut Src, &'a mut Dst>::try_transmute_mut`
|
|
84
56
|
--> src/util/macro_util.rs
|
|
85
57
|
|
|
|
86
|
-
|
|
|
87
|
-
|
|
|
58
|
+
| pub fn try_transmute_mut(self) -> Result<&'a mut Dst, ValidityError<&'a mut Src, Dst>>
|
|
59
|
+
| ----------------- required by a bound in this associated function
|
|
88
60
|
...
|
|
89
|
-
|
|
|
90
|
-
|
|
|
61
|
+
| Dst: TryFromBytes + IntoBytes,
|
|
62
|
+
| ^^^^^^^^^ required by this bound in `Wrap::<&mut Src, &mut Dst>::try_transmute_mut`
|
|
91
63
|
= note: this error originates in the macro `try_transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
92
64
|
|
|
65
|
+
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
66
|
+
--> tests/ui-stable/try_transmute_mut-dst-not-tryfrombytes.rs:18:33
|
|
67
|
+
|
|
|
68
|
+
18 | let dst_not_try_from_bytes: Result<&mut NotZerocopy, _> = try_transmute_mut!(src);
|
|
69
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ unsatisfied trait bound
|
|
70
|
+
|
|
|
71
|
+
help: the trait `TryFromBytes` is not implemented for `NotZerocopy`
|
|
72
|
+
--> tests/ui-stable/../include.rs
|
|
73
|
+
|
|
|
74
|
+
15 | pub struct NotZerocopy<T = ()>(pub T);
|
|
75
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
76
|
+
= note: Consider adding `#[derive(TryFromBytes)]` to `NotZerocopy`
|
|
77
|
+
= help: the following other types implement trait `TryFromBytes`:
|
|
78
|
+
()
|
|
79
|
+
(A, B)
|
|
80
|
+
(A, B, C)
|
|
81
|
+
(A, B, C, D)
|
|
82
|
+
(A, B, C, D, E)
|
|
83
|
+
(A, B, C, D, E, F)
|
|
84
|
+
(A, B, C, D, E, F, G)
|
|
85
|
+
(A, B, C, D, E, F, G, H)
|
|
86
|
+
and $N others
|
|
87
|
+
note: required by a bound in `ValidityError`
|
|
88
|
+
--> src/error.rs
|
|
89
|
+
|
|
|
90
|
+
| pub struct ValidityError<Src, Dst: ?Sized + TryFromBytes> {
|
|
91
|
+
| ^^^^^^^^^^^^ required by this bound in `ValidityError`
|
|
92
|
+
|
|
93
93
|
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
94
94
|
--> tests/ui-stable/try_transmute_mut-dst-not-tryfrombytes.rs:18:63
|
|
95
95
|
|
|
data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.stderr
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
2
|
-
--> tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs:17:
|
|
2
|
+
--> tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs:17:59
|
|
3
3
|
|
|
|
4
4
|
17 | let dst_not_try_from_bytes: Result<&NotZerocopy, _> = try_transmute_ref!(&AU16(0));
|
|
5
|
-
|
|
|
5
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unsatisfied trait bound
|
|
6
6
|
|
|
|
7
7
|
help: the trait `TryFromBytes` is not implemented for `NotZerocopy`
|
|
8
8
|
--> tests/ui-stable/../include.rs
|
|
@@ -20,75 +20,75 @@ help: the trait `TryFromBytes` is not implemented for `NotZerocopy`
|
|
|
20
20
|
(A, B, C, D, E, F, G)
|
|
21
21
|
(A, B, C, D, E, F, G, H)
|
|
22
22
|
and $N others
|
|
23
|
-
note: required by a bound in `
|
|
24
|
-
--> src/
|
|
23
|
+
note: required by a bound in `Wrap::<&'a Src, &'a Dst>::try_transmute_ref`
|
|
24
|
+
--> src/util/macro_util.rs
|
|
25
25
|
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
26
|
+
| pub fn try_transmute_ref(self) -> Result<&'a Dst, ValidityError<&'a Src, Dst>>
|
|
27
|
+
| ----------------- required by a bound in this associated function
|
|
28
|
+
...
|
|
29
|
+
| Dst: TryFromBytes + Immutable,
|
|
30
|
+
| ^^^^^^^^^^^^ required by this bound in `Wrap::<&Src, &Dst>::try_transmute_ref`
|
|
31
|
+
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
28
32
|
|
|
29
|
-
error[E0277]: the trait bound `NotZerocopy:
|
|
33
|
+
error[E0277]: the trait bound `NotZerocopy: Immutable` is not satisfied
|
|
30
34
|
--> tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs:17:59
|
|
31
35
|
|
|
|
32
36
|
17 | let dst_not_try_from_bytes: Result<&NotZerocopy, _> = try_transmute_ref!(&AU16(0));
|
|
33
37
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unsatisfied trait bound
|
|
34
38
|
|
|
|
35
|
-
help: the trait `
|
|
39
|
+
help: the trait `Immutable` is not implemented for `NotZerocopy`
|
|
36
40
|
--> tests/ui-stable/../include.rs
|
|
37
41
|
|
|
|
38
42
|
15 | pub struct NotZerocopy<T = ()>(pub T);
|
|
39
43
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
40
|
-
= note: Consider adding `#[derive(
|
|
41
|
-
= help: the following other types implement trait `
|
|
44
|
+
= note: Consider adding `#[derive(Immutable)]` to `NotZerocopy`
|
|
45
|
+
= help: the following other types implement trait `Immutable`:
|
|
46
|
+
&T
|
|
47
|
+
&mut T
|
|
42
48
|
()
|
|
43
49
|
(A, B)
|
|
44
50
|
(A, B, C)
|
|
45
51
|
(A, B, C, D)
|
|
46
52
|
(A, B, C, D, E)
|
|
47
53
|
(A, B, C, D, E, F)
|
|
48
|
-
(A, B, C, D, E, F, G)
|
|
49
|
-
(A, B, C, D, E, F, G, H)
|
|
50
54
|
and $N others
|
|
51
|
-
note: required by a bound in `try_transmute_ref`
|
|
55
|
+
note: required by a bound in `Wrap::<&'a Src, &'a Dst>::try_transmute_ref`
|
|
52
56
|
--> src/util/macro_util.rs
|
|
53
57
|
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
58
|
+
| pub fn try_transmute_ref(self) -> Result<&'a Dst, ValidityError<&'a Src, Dst>>
|
|
59
|
+
| ----------------- required by a bound in this associated function
|
|
56
60
|
...
|
|
57
|
-
|
|
|
58
|
-
|
|
|
61
|
+
| Dst: TryFromBytes + Immutable,
|
|
62
|
+
| ^^^^^^^^^ required by this bound in `Wrap::<&Src, &Dst>::try_transmute_ref`
|
|
59
63
|
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
60
64
|
|
|
61
|
-
error[E0277]: the trait bound `NotZerocopy:
|
|
62
|
-
--> tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs:17:
|
|
65
|
+
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
66
|
+
--> tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs:17:33
|
|
63
67
|
|
|
|
64
68
|
17 | let dst_not_try_from_bytes: Result<&NotZerocopy, _> = try_transmute_ref!(&AU16(0));
|
|
65
|
-
|
|
|
69
|
+
| ^^^^^^^^^^^^^^^^^^^^^^^ unsatisfied trait bound
|
|
66
70
|
|
|
|
67
|
-
help: the trait `
|
|
71
|
+
help: the trait `TryFromBytes` is not implemented for `NotZerocopy`
|
|
68
72
|
--> tests/ui-stable/../include.rs
|
|
69
73
|
|
|
|
70
74
|
15 | pub struct NotZerocopy<T = ()>(pub T);
|
|
71
75
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
72
|
-
= note: Consider adding `#[derive(
|
|
73
|
-
= help: the following other types implement trait `
|
|
74
|
-
&T
|
|
75
|
-
&mut T
|
|
76
|
+
= note: Consider adding `#[derive(TryFromBytes)]` to `NotZerocopy`
|
|
77
|
+
= help: the following other types implement trait `TryFromBytes`:
|
|
76
78
|
()
|
|
77
79
|
(A, B)
|
|
78
80
|
(A, B, C)
|
|
79
81
|
(A, B, C, D)
|
|
80
82
|
(A, B, C, D, E)
|
|
81
83
|
(A, B, C, D, E, F)
|
|
84
|
+
(A, B, C, D, E, F, G)
|
|
85
|
+
(A, B, C, D, E, F, G, H)
|
|
82
86
|
and $N others
|
|
83
|
-
note: required by a bound in `
|
|
84
|
-
--> src/
|
|
87
|
+
note: required by a bound in `ValidityError`
|
|
88
|
+
--> src/error.rs
|
|
85
89
|
|
|
|
86
|
-
| pub
|
|
87
|
-
|
|
|
88
|
-
...
|
|
89
|
-
| Dst: TryFromBytes + Immutable,
|
|
90
|
-
| ^^^^^^^^^ required by this bound in `try_transmute_ref`
|
|
91
|
-
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
90
|
+
| pub struct ValidityError<Src, Dst: ?Sized + TryFromBytes> {
|
|
91
|
+
| ^^^^^^^^^^^^ required by this bound in `ValidityError`
|
|
92
92
|
|
|
93
93
|
error[E0277]: the trait bound `NotZerocopy: TryFromBytes` is not satisfied
|
|
94
94
|
--> tests/ui-stable/try_transmute_ref-dst-not-immutable-tryfrombytes.rs:17:59
|
data/rust-vendor/zerocopy/tests/ui-stable/try_transmute_ref-src-not-immutable-intobytes.stderr
CHANGED
|
@@ -20,14 +20,14 @@ help: the trait `IntoBytes` is not implemented for `NotZerocopy<AU16>`
|
|
|
20
20
|
AtomicI8
|
|
21
21
|
AtomicIsize
|
|
22
22
|
and $N others
|
|
23
|
-
note: required by a bound in `try_transmute_ref`
|
|
23
|
+
note: required by a bound in `Wrap::<&'a Src, &'a Dst>::try_transmute_ref`
|
|
24
24
|
--> src/util/macro_util.rs
|
|
25
25
|
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
26
|
+
| pub fn try_transmute_ref(self) -> Result<&'a Dst, ValidityError<&'a Src, Dst>>
|
|
27
|
+
| ----------------- required by a bound in this associated function
|
|
28
|
+
| where
|
|
29
|
+
| Src: IntoBytes + Immutable,
|
|
30
|
+
| ^^^^^^^^^ required by this bound in `Wrap::<&Src, &Dst>::try_transmute_ref`
|
|
31
31
|
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
32
32
|
|
|
33
33
|
error[E0277]: the trait bound `NotZerocopy<AU16>: Immutable` is not satisfied
|
|
@@ -52,12 +52,12 @@ help: the trait `Immutable` is not implemented for `NotZerocopy<AU16>`
|
|
|
52
52
|
(A, B, C, D, E)
|
|
53
53
|
(A, B, C, D, E, F)
|
|
54
54
|
and $N others
|
|
55
|
-
note: required by a bound in `try_transmute_ref`
|
|
55
|
+
note: required by a bound in `Wrap::<&'a Src, &'a Dst>::try_transmute_ref`
|
|
56
56
|
--> src/util/macro_util.rs
|
|
57
57
|
|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
60
|
-
|
|
|
61
|
-
|
|
|
62
|
-
|
|
|
58
|
+
| pub fn try_transmute_ref(self) -> Result<&'a Dst, ValidityError<&'a Src, Dst>>
|
|
59
|
+
| ----------------- required by a bound in this associated function
|
|
60
|
+
| where
|
|
61
|
+
| Src: IntoBytes + Immutable,
|
|
62
|
+
| ^^^^^^^^^ required by this bound in `Wrap::<&Src, &Dst>::try_transmute_ref`
|
|
63
63
|
= note: this error originates in the macro `try_transmute_ref` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":{".cargo_vcs_info.json":"3f19b340e9997da2fbbabf4f9a1ee80dce86f96a7bb134fd41bc5bdf31910779","Cargo.lock":"0ebf32f37f80a936d3ae05386d9dbf395b8fa23bfc99c36e3f30cb56eb54173f","Cargo.toml":"5128cdd5f6063523ebb12c64b8382433848b2b2b74d05425ead807b370a907da","Cargo.toml.orig":"1000c34852ac4d973639e0076827e328061c5c660c63a1317ecb0041ebb3b023","LICENSE-APACHE":"9d185ac6703c4b0453974c0d85e9eee43e6941009296bb1f5eb0b54e2329e9f3","LICENSE-BSD":"83c1763356e822adde0a2cae748d938a73fdc263849ccff6b27776dff213bd32","LICENSE-MIT":"1a2f5c12ddc934d58956aa5dbdd3255fe55fd957633ab7d0d39e4f0daa73f7df","src/derive/from_bytes.rs":"f4b32fd96d68209474101fa21277f1db9f87eab724822a2d9b16411d79ad205c","src/derive/into_bytes.rs":"c07807f67184516556afadf4a2428d8149645981d7ac640f2b79e25750dca592","src/derive/known_layout.rs":"2037d526540266d7f70c44051a7941ecb1251c5f7a2775ce2c8d90947225a9da","src/derive/mod.rs":"a4d322981cf5993be7983896d9083c60dd7bdf0898cdde86a05ea43e8e3b7c8c","src/derive/try_from_bytes.rs":"d5979cf1471c1e2509c9000f10ee12c74d2871e2128c4ba73b7166b62b777f4f","src/derive/unaligned.rs":"3f54df4dd66efcdc742ea7297e91ff5f910cd0cab6323ea835dae3f9cc3efa33","src/lib.rs":"3c5ca5fba173f5cb24f10f725505cc6ee2c8e844da370704637c5c42826814cc","src/output_tests/expected/eq.expected.rs":"ca9967422f9010b330aad8e605abed5463bfea0b0eec750c65d3b7b35248565c","src/output_tests/expected/from_bytes_enum.expected.rs":"f6b7d8fe943c88c0c16847b0cbda3b60d59f7177541579e37efacb4b3cf59ff1","src/output_tests/expected/from_bytes_struct.expected.rs":"f6b7d8fe943c88c0c16847b0cbda3b60d59f7177541579e37efacb4b3cf59ff1","src/output_tests/expected/from_bytes_union.expected.rs":"79539361b0679ad0e557a3063bf99bfcaaec03f3e52226a828953bdd0e2074dd","src/output_tests/expected/from_zeros.expected.rs":"f67dcc92848d053756cb50ebb188b5b4d242d55bcff9ef86ec6bfc1327f7505c","src/output_tests/expected/hash.expected.rs":"bf33fa9d4117d12bd05e2acb86a795230d207401568910257af60c3b1fd3d70b","src/output_tests/expected/immutable.expected.rs":"18e347b77c82ca1d2a1cd27fc45c030d62cf3f6bcf629a919dfa21c2130d0317","src/output_tests/expected/into_bytes_enum.expected.rs":"a5acd221de00f6c09ed895c267541ae566ec88a3164d1ccf300117996fc94f06","src/output_tests/expected/into_bytes_struct_basic.expected.rs":"14f40f52ae544836c97a44fb12bb46a2e36cf01cd89a96111257afdf1e075284","src/output_tests/expected/into_bytes_struct_empty.expected.rs":"a5acd221de00f6c09ed895c267541ae566ec88a3164d1ccf300117996fc94f06","src/output_tests/expected/into_bytes_struct_trailing.expected.rs":"1428732fbb5f921be2b96be30d8784abe57f4000e3bcd07fc99f4e51eca953e6","src/output_tests/expected/into_bytes_struct_trailing_generic.expected.rs":"43734b843fac0339f2070f2048dfa6afb0369a30963ee7c82cec42fe59dc30b9","src/output_tests/expected/known_layout_repr_c_struct.expected.rs":"7b9cbc28b87cf8d1b523874a3c641f3a7eb6d05abd8621ec49e7f11138869708","src/output_tests/expected/known_layout_struct.expected.rs":"a820c628e0904650974562383ae14ce4878af0652fef25978398e408755f1d71","src/output_tests/expected/split_at_repr_c.expected.rs":"7aa5abd3cd581620c59843bcecbd121ff2e13e257044afd500b61226d652fa78","src/output_tests/expected/split_at_repr_transparent.expected.rs":"7aa5abd3cd581620c59843bcecbd121ff2e13e257044afd500b61226d652fa78","src/output_tests/expected/try_from_bytes.expected.rs":"27dc8d707ea606e1beddaf4587cc5f8289f0ed76a0ec39418fd21c8ae9ef39c6","src/output_tests/expected/try_from_bytes_enum_1.expected.rs":"36d2ac0cac2b158fea5b49405b742ab826893d211702d586c9d8bf622b91a7b5","src/output_tests/expected/try_from_bytes_enum_2.expected.rs":"68a3fa29f161fcd43a572efbe1e0f23e1ad59cf9637fa077f098de4679fd6d6b","src/output_tests/expected/try_from_bytes_enum_3.expected.rs":"6e75f1953c604c00f3003268e22f4931ea7dc02bb04bedda866c7c60ab1f0e9d","src/output_tests/expected/try_from_bytes_trivial_is_bit_valid_enum.expected.rs":"baf528df9b657e7562fb27be086206eede8d8f3a8797aedafec1e55073b0d92c","src/output_tests/expected/unaligned.expected.rs":"8c833f97005b6fd84875ace51bddbb8c0185696c4435eb5cd05ce720f89a0ef7","src/output_tests/mod.rs":"2390a77746b28f4947fba96cba96723f47115f295df26dad89daa80861b18895","src/repr.rs":"2766afad6cf7bd24ee67ee02452e638dac474e8d00edb51dff54f9e9691d2526","src/util.rs":"a04c5d8f75ad26ad2478613b8441b293455f179d5117a5f30d8a7479e645210c","tests/deprecated.rs":"c49b92bcdd1d005ec0c4ae033c5ebaddcc300f9003170a848d9c678ecad66978","tests/enum_from_zeros.rs":"b080fb192faf039348100ac41e666d3b19908d0312e245d77749eadd52d4a29a","tests/enum_known_layout.rs":"ce2c7bfc3c7272d03321f7eac7217326afd515f03af7dc7a9cd0b4465e68f193","tests/enum_no_cell.rs":"a353033f83ccec5258871a04e0ec7b4610191eba9bd024e6059a8b674165bba1","tests/enum_to_bytes.rs":"ad6df48ae9df15d2eba7e955155ded2cc8c2c29809183327aa2a96c7aa0ef998","tests/enum_try_from_bytes.rs":"bf3126c117a03b95779c05c5102c660f78e1ce915f1924edb2da73451447a213","tests/enum_unaligned.rs":"0aa3324a672ebd07341ec7a316d1de391be52c1ca9daf21055c74b8c67d3aac4","tests/eq.rs":"7c07d1a311478664725632da4d599d4755ac659c589f37a597c73489a3d69c26","tests/hash.rs":"252efc53a24c92187b02a4f7cdbd9993af5ce40ac734797661308f55d4c4f591","tests/hygiene.rs":"afeb9601a2ba1efec58aed0650bb945923273b1b4377597301943df7f832ccd2","tests/include.rs":"35e32e30c67d7a73668b712faac24a95b552ed779bcbca34a55582f6e3e95688","tests/issue_2117.rs":"f41e8c5e021ccd7c994ae3f5468881d45d088acbfb5ab53f391cf03cf647d866","tests/issue_2835.rs":"0080e4beec745a72bf8be63882e7d0ef645b1ff5adbae6b20e1a519fcb981cfd","tests/issue_2880.rs":"8e7268473a10f53cdf3c62753facd8065d364e0ce699a9e72a7ea49e54250217","tests/issue_2915.rs":"9ac2729405d17176d8fa27d9b41590ac7ced232617fdcef7d181a6a89fa4cca4","tests/paths_and_modules.rs":"b959482b7666fd1a4493c335121fb5ebf284a679a470801f162b18f8b50ce120","tests/priv_in_pub.rs":"1f00f7a510048179939efd78ff2092b846775f8cf3ab1b6ca2d12b3b21a98e79","tests/struct_from_bytes.rs":"b51b59bf4b4dc97acb433ff44edc1fac8fed6fa55e0b6a4be85a602cac184305","tests/struct_from_zeros.rs":"1f4f70ce8cff4a0de9a69206eda5be7db0dfb55408ea36533bff8798463eea9c","tests/struct_known_layout.rs":"d1b8e7804ab2886cd16ceb83a7e0eb76eab44b3315874ca1e40d4bbc326b4513","tests/struct_no_cell.rs":"889cdbdf2e86baf2615113a1c7c205a90a150e61d093fc3ff827b2653798ac7b","tests/struct_to_bytes.rs":"e08dc8d5a5c75d36e56c593279c49364a16ee73af726424a99bf0987ed4d7822","tests/struct_try_from_bytes.rs":"639b93e0b091bc39dcaca50257164c2e4eaf38008dedb6286799375ec02b9e7b","tests/struct_unaligned.rs":"26e2ce75e599469b5bb040c14fb82cfea62a915c8760a12aa03ff8c8b6a124ca","tests/trybuild.rs":"a240f2b14fbd84a9f61e8eaf9dcccdbea9359802bf81189f9939dcc06a81afd0","tests/ui-msrv/derive_transparent.rs":"6ed88cfc08d88bc78c952ca3b4adcd9bae1ef0758a70e9f20075d408a9002367","tests/ui-msrv/derive_transparent.stderr":"b9312968c8aa7ed27d830e53a6bf180f589c04b790b2e9d4ddd5da26c39caffc","tests/ui-msrv/enum.rs":"aec60493658be2938cb4b6b75aa22518c9929867aa5405047b0d4e7bb26e50fa","tests/ui-msrv/enum.stderr":"6ae23a7d3cc6a9fd16f80e2437937066a20f4c2e52d3cb2f0eb25bd362280aa7","tests/ui-msrv/enum_from_bytes_u8_too_few.rs":"5a9c5860f67d4de553402d5d2a737d847a65f0d6f60b8c7041ef5b68f80b9de2","tests/ui-msrv/enum_from_bytes_u8_too_few.stderr":"6ed1023cab6189068d77599de0b5227a39fea28c2a730f96d1380e7cc9402ca9","tests/ui-msrv/late_compile_pass.rs":"db79c10b493fdb80801a89bff456cd7991a65641ff48a013a7223fc160cffcab","tests/ui-msrv/late_compile_pass.stderr":"f7bf3906058e45aa1fd345501988734aed3565109774453ac9ca914cab9faacb","tests/ui-msrv/mid_compile_pass.rs":"568902a3041efa1d61c5f9f11ec048b6cfb0ec37eca4fb4ed4d48f4aa0dd0d1b","tests/ui-msrv/mid_compile_pass.stderr":"8f33d17846031f1538de7810b180efd08f296f1e42118334383a340cae06aa21","tests/ui-msrv/msrv_specific.rs":"379fde46b56b72e09641af524eed951acf199329514dab98b752a70be6102098","tests/ui-msrv/msrv_specific.stderr":"ab0c8ed3368185ddcc2e99ab21d57bc9518d20d08844f577d3680903a54a1b77","tests/ui-msrv/privacy.rs":"3c09f7001e80205bafec53afb895bfaf5c257e54316da4c193f9078c8b6f3fb8","tests/ui-msrv/privacy.stderr":"70d78e55008f0dcd5026de75d7dd954371d5e03135de6cb2c313696f2da2ecd6","tests/ui-msrv/struct.rs":"edb9fa4e39d8492ed394d596d405f4088719edf07abb566e9fad028281bb3701","tests/ui-msrv/struct.stderr":"e216d3679ef3a7cd25981fa4b393abd2277ee77f1317c2232f46fab3c531d03e","tests/ui-msrv/union.rs":"fe34d99810a11123cd07b698cf67a0b7c82ea261f25f0b916300681912487529","tests/ui-msrv/union.stderr":"a4ec902f10c642c5f447ecf02e2891f03bcde142b3abc4377a43a609005c4cc8","tests/ui-msrv/union_into_bytes_cfg/union_into_bytes_cfg.rs":"c693bf90664c1df85b1d1cda9e2ebe235fb22c4cac213087069ff250f36f67cc","tests/ui-msrv/union_into_bytes_cfg/union_into_bytes_cfg.stderr":"0b9af4f767cc1d6fc591d75b046d31617b5230f012d8ce7c70d7c20ffd6178ca","tests/ui-nightly/absence_of_deprecated_warning.rs":"8621bc8cda4849d9c485f6d0f9008384ba030ee2924e266c5e295d7c91f2a8c8","tests/ui-nightly/absence_of_deprecated_warning.stderr":"cdbbdbdd6a0acbacfd1acf84df75a63cf79544ed1689a2adff2fda7496546b28","tests/ui-nightly/derive_transparent.rs":"6ed88cfc08d88bc78c952ca3b4adcd9bae1ef0758a70e9f20075d408a9002367","tests/ui-nightly/derive_transparent.stderr":"c935350979c17e482141efc465ede0d8e16ec06809b4a3adb9b0dfff24b13c8b","tests/ui-nightly/enum.rs":"aec60493658be2938cb4b6b75aa22518c9929867aa5405047b0d4e7bb26e50fa","tests/ui-nightly/enum.stderr":"b3508588aa068f3a46d011d160f7d9af78febf64a8363766aa1b5816c09347bf","tests/ui-nightly/enum_from_bytes_u8_too_few.rs":"5a9c5860f67d4de553402d5d2a737d847a65f0d6f60b8c7041ef5b68f80b9de2","tests/ui-nightly/enum_from_bytes_u8_too_few.stderr":"fd3537d2500554c996df20232d7928269a1628a541c527dc12c8ea90e193ca42","tests/ui-nightly/late_compile_pass.rs":"db79c10b493fdb80801a89bff456cd7991a65641ff48a013a7223fc160cffcab","tests/ui-nightly/late_compile_pass.stderr":"a9ff9f29ad9174b66025c153c5a302ae55f8b92aa3fdbe8ff54a104e540fd8c7","tests/ui-nightly/mid_compile_pass.rs":"568902a3041efa1d61c5f9f11ec048b6cfb0ec37eca4fb4ed4d48f4aa0dd0d1b","tests/ui-nightly/mid_compile_pass.stderr":"9af12a0879f17a622eb58eff805cb9745e0ec5a4a3d6087e9b2de7ecf6af3948","tests/ui-nightly/privacy.rs":"3c09f7001e80205bafec53afb895bfaf5c257e54316da4c193f9078c8b6f3fb8","tests/ui-nightly/privacy.stderr":"2250fee84293dc5a9e7b9459b43788e01a19f0371d6b872219f8007b6d7a3337","tests/ui-nightly/struct.rs":"edb9fa4e39d8492ed394d596d405f4088719edf07abb566e9fad028281bb3701","tests/ui-nightly/struct.stderr":"dd76c751239313abb5177968c03e834f73612cf8ef7c41535cb63573385b0d25","tests/ui-nightly/union.rs":"fe34d99810a11123cd07b698cf67a0b7c82ea261f25f0b916300681912487529","tests/ui-nightly/union.stderr":"bc5ef7e485254fa175a63780f5fab81a993bfa2448b4e485a3dcc9c08d7f8c1e","tests/ui-nightly/union_into_bytes_cfg/union_into_bytes_cfg.rs":"c693bf90664c1df85b1d1cda9e2ebe235fb22c4cac213087069ff250f36f67cc","tests/ui-nightly/union_into_bytes_cfg/union_into_bytes_cfg.stderr":"1462a888754048e09c81c93ee4e46c860a85c7683655f35c1b9a305b386b2676","tests/ui-stable/derive_transparent.rs":"6ed88cfc08d88bc78c952ca3b4adcd9bae1ef0758a70e9f20075d408a9002367","tests/ui-stable/derive_transparent.stderr":"a3c518362e1b1e607c34165cc5fe03b84e46778608b628b6f5bf0fb749edc2fe","tests/ui-stable/enum.rs":"aec60493658be2938cb4b6b75aa22518c9929867aa5405047b0d4e7bb26e50fa","tests/ui-stable/enum.stderr":"c2032e973361da79d0267887c6601cf42eb70164c08888e9b28d5a40d9004949","tests/ui-stable/enum_from_bytes_u8_too_few.rs":"5a9c5860f67d4de553402d5d2a737d847a65f0d6f60b8c7041ef5b68f80b9de2","tests/ui-stable/enum_from_bytes_u8_too_few.stderr":"f5e783b05a3688772707e0db86f109f01df6e1dab18ad9035c514b2b06c32d21","tests/ui-stable/late_compile_pass.rs":"db79c10b493fdb80801a89bff456cd7991a65641ff48a013a7223fc160cffcab","tests/ui-stable/late_compile_pass.stderr":"12159f5c4477adf57db49957618b5a5d3e4a0dd141415541b62d751a18209c94","tests/ui-stable/mid_compile_pass.rs":"568902a3041efa1d61c5f9f11ec048b6cfb0ec37eca4fb4ed4d48f4aa0dd0d1b","tests/ui-stable/mid_compile_pass.stderr":"8099cfb81916cbc85cf637bfee1fcbea1ba91a3d25e54a25bd8846ed85ba34b5","tests/ui-stable/privacy.rs":"3c09f7001e80205bafec53afb895bfaf5c257e54316da4c193f9078c8b6f3fb8","tests/ui-stable/privacy.stderr":"99f0b46a5ea1a4118e0d7a597cc51c89dde92b3b67ea14729b94bcb7c28f655c","tests/ui-stable/struct.rs":"edb9fa4e39d8492ed394d596d405f4088719edf07abb566e9fad028281bb3701","tests/ui-stable/struct.stderr":"edbf38c00ae4b0116d03e2fd83251efbc59f67da60e41debbf241ec45b824701","tests/ui-stable/union.rs":"fe34d99810a11123cd07b698cf67a0b7c82ea261f25f0b916300681912487529","tests/ui-stable/union.stderr":"f06212e1c66f051cb44ed062032e17123b180a8830a6202bac81e1195dc4f788","tests/ui-stable/union_into_bytes_cfg/union_into_bytes_cfg.rs":"c693bf90664c1df85b1d1cda9e2ebe235fb22c4cac213087069ff250f36f67cc","tests/ui-stable/union_into_bytes_cfg/union_into_bytes_cfg.stderr":"5ab86d509f2a9ef55e47e34373c57241f528f568e0936553e71c8ddb13f490c0","tests/union_from_bytes.rs":"c8194d9ce55ffc756fed38b5272e738b1284ceff74dd2d07a160d8aea74447b8","tests/union_from_zeros.rs":"dd45058a4ddc268cc2f29b1228a947276b24c94d7cb278f1acc54dac036305af","tests/union_known_layout.rs":"6c8cc9c7901681bc02f4c986ed7d717c059474670d678dc288eef4e0c392c60f","tests/union_no_cell.rs":"c4dd72503164e5433ded5202e02add1024c79c9a36a440783cd20d27b3406a7b","tests/union_to_bytes.rs":"09c123ee3f647c468b9b1ec9e82ef86d1754f3ad1dcb8882bcdfa6b2a2536557","tests/union_try_from_bytes.rs":"1b4753d510ef3444b6375dda28a73f5e1417521d51e45d6b80f66fd22ae08064","tests/union_unaligned.rs":"ff7deadd16e331b4a4c686033330ab9d0207b6e9279c0c3419c0a5c84ea30c94","tests/unsafe_cell.rs":"c186d04ae7ec6f0c2e05b2b24a15b53ea97496cdb80ef9a3cb5e88c3a847407f"},"package":"0c15e1b46eff7c6c91195752e0eeed8ef040e391cdece7c25376957d5f15df22"}
|
|
1
|
+
{"files":{".cargo_vcs_info.json":"9635a3cd8507af61df0d5865dd3f79d8fa7a75d593043f3392ec54986f2a8f29","Cargo.lock":"a60ef1dd72a1714df8def1a07cb20eed7841cfef14e32c24f4c05feeb52cbd5c","Cargo.toml":"6d19af676e9b96735f346b4d082e01345654897b706ff687f7c3943a39195682","Cargo.toml.orig":"b3c883c964ab2b20809b5531fc6a3beb65cd015049ed04ca0fccf8c6837cb5c9","LICENSE-APACHE":"9d185ac6703c4b0453974c0d85e9eee43e6941009296bb1f5eb0b54e2329e9f3","LICENSE-BSD":"83c1763356e822adde0a2cae748d938a73fdc263849ccff6b27776dff213bd32","LICENSE-MIT":"1a2f5c12ddc934d58956aa5dbdd3255fe55fd957633ab7d0d39e4f0daa73f7df","src/derive/from_bytes.rs":"f4b32fd96d68209474101fa21277f1db9f87eab724822a2d9b16411d79ad205c","src/derive/into_bytes.rs":"c07807f67184516556afadf4a2428d8149645981d7ac640f2b79e25750dca592","src/derive/known_layout.rs":"2037d526540266d7f70c44051a7941ecb1251c5f7a2775ce2c8d90947225a9da","src/derive/mod.rs":"a4d322981cf5993be7983896d9083c60dd7bdf0898cdde86a05ea43e8e3b7c8c","src/derive/try_from_bytes.rs":"d5979cf1471c1e2509c9000f10ee12c74d2871e2128c4ba73b7166b62b777f4f","src/derive/unaligned.rs":"3f54df4dd66efcdc742ea7297e91ff5f910cd0cab6323ea835dae3f9cc3efa33","src/lib.rs":"3c5ca5fba173f5cb24f10f725505cc6ee2c8e844da370704637c5c42826814cc","src/output_tests/expected/eq.expected.rs":"ca9967422f9010b330aad8e605abed5463bfea0b0eec750c65d3b7b35248565c","src/output_tests/expected/from_bytes_enum.expected.rs":"f6b7d8fe943c88c0c16847b0cbda3b60d59f7177541579e37efacb4b3cf59ff1","src/output_tests/expected/from_bytes_struct.expected.rs":"f6b7d8fe943c88c0c16847b0cbda3b60d59f7177541579e37efacb4b3cf59ff1","src/output_tests/expected/from_bytes_union.expected.rs":"79539361b0679ad0e557a3063bf99bfcaaec03f3e52226a828953bdd0e2074dd","src/output_tests/expected/from_zeros.expected.rs":"f67dcc92848d053756cb50ebb188b5b4d242d55bcff9ef86ec6bfc1327f7505c","src/output_tests/expected/hash.expected.rs":"bf33fa9d4117d12bd05e2acb86a795230d207401568910257af60c3b1fd3d70b","src/output_tests/expected/immutable.expected.rs":"18e347b77c82ca1d2a1cd27fc45c030d62cf3f6bcf629a919dfa21c2130d0317","src/output_tests/expected/into_bytes_enum.expected.rs":"a5acd221de00f6c09ed895c267541ae566ec88a3164d1ccf300117996fc94f06","src/output_tests/expected/into_bytes_struct_basic.expected.rs":"14f40f52ae544836c97a44fb12bb46a2e36cf01cd89a96111257afdf1e075284","src/output_tests/expected/into_bytes_struct_empty.expected.rs":"a5acd221de00f6c09ed895c267541ae566ec88a3164d1ccf300117996fc94f06","src/output_tests/expected/into_bytes_struct_trailing.expected.rs":"1428732fbb5f921be2b96be30d8784abe57f4000e3bcd07fc99f4e51eca953e6","src/output_tests/expected/into_bytes_struct_trailing_generic.expected.rs":"43734b843fac0339f2070f2048dfa6afb0369a30963ee7c82cec42fe59dc30b9","src/output_tests/expected/known_layout_repr_c_struct.expected.rs":"7b9cbc28b87cf8d1b523874a3c641f3a7eb6d05abd8621ec49e7f11138869708","src/output_tests/expected/known_layout_struct.expected.rs":"a820c628e0904650974562383ae14ce4878af0652fef25978398e408755f1d71","src/output_tests/expected/split_at_repr_c.expected.rs":"7aa5abd3cd581620c59843bcecbd121ff2e13e257044afd500b61226d652fa78","src/output_tests/expected/split_at_repr_transparent.expected.rs":"7aa5abd3cd581620c59843bcecbd121ff2e13e257044afd500b61226d652fa78","src/output_tests/expected/try_from_bytes.expected.rs":"27dc8d707ea606e1beddaf4587cc5f8289f0ed76a0ec39418fd21c8ae9ef39c6","src/output_tests/expected/try_from_bytes_enum_1.expected.rs":"36d2ac0cac2b158fea5b49405b742ab826893d211702d586c9d8bf622b91a7b5","src/output_tests/expected/try_from_bytes_enum_2.expected.rs":"68a3fa29f161fcd43a572efbe1e0f23e1ad59cf9637fa077f098de4679fd6d6b","src/output_tests/expected/try_from_bytes_enum_3.expected.rs":"6e75f1953c604c00f3003268e22f4931ea7dc02bb04bedda866c7c60ab1f0e9d","src/output_tests/expected/try_from_bytes_trivial_is_bit_valid_enum.expected.rs":"baf528df9b657e7562fb27be086206eede8d8f3a8797aedafec1e55073b0d92c","src/output_tests/expected/unaligned.expected.rs":"8c833f97005b6fd84875ace51bddbb8c0185696c4435eb5cd05ce720f89a0ef7","src/output_tests/mod.rs":"2390a77746b28f4947fba96cba96723f47115f295df26dad89daa80861b18895","src/repr.rs":"2766afad6cf7bd24ee67ee02452e638dac474e8d00edb51dff54f9e9691d2526","src/util.rs":"a04c5d8f75ad26ad2478613b8441b293455f179d5117a5f30d8a7479e645210c","tests/deprecated.rs":"c49b92bcdd1d005ec0c4ae033c5ebaddcc300f9003170a848d9c678ecad66978","tests/enum_from_zeros.rs":"b080fb192faf039348100ac41e666d3b19908d0312e245d77749eadd52d4a29a","tests/enum_known_layout.rs":"ce2c7bfc3c7272d03321f7eac7217326afd515f03af7dc7a9cd0b4465e68f193","tests/enum_no_cell.rs":"a353033f83ccec5258871a04e0ec7b4610191eba9bd024e6059a8b674165bba1","tests/enum_to_bytes.rs":"ad6df48ae9df15d2eba7e955155ded2cc8c2c29809183327aa2a96c7aa0ef998","tests/enum_try_from_bytes.rs":"bf3126c117a03b95779c05c5102c660f78e1ce915f1924edb2da73451447a213","tests/enum_unaligned.rs":"0aa3324a672ebd07341ec7a316d1de391be52c1ca9daf21055c74b8c67d3aac4","tests/eq.rs":"7c07d1a311478664725632da4d599d4755ac659c589f37a597c73489a3d69c26","tests/hash.rs":"252efc53a24c92187b02a4f7cdbd9993af5ce40ac734797661308f55d4c4f591","tests/hygiene.rs":"afeb9601a2ba1efec58aed0650bb945923273b1b4377597301943df7f832ccd2","tests/include.rs":"35e32e30c67d7a73668b712faac24a95b552ed779bcbca34a55582f6e3e95688","tests/issue_2117.rs":"f41e8c5e021ccd7c994ae3f5468881d45d088acbfb5ab53f391cf03cf647d866","tests/issue_2835.rs":"0080e4beec745a72bf8be63882e7d0ef645b1ff5adbae6b20e1a519fcb981cfd","tests/issue_2880.rs":"8e7268473a10f53cdf3c62753facd8065d364e0ce699a9e72a7ea49e54250217","tests/issue_2915.rs":"9ac2729405d17176d8fa27d9b41590ac7ced232617fdcef7d181a6a89fa4cca4","tests/paths_and_modules.rs":"b959482b7666fd1a4493c335121fb5ebf284a679a470801f162b18f8b50ce120","tests/priv_in_pub.rs":"1f00f7a510048179939efd78ff2092b846775f8cf3ab1b6ca2d12b3b21a98e79","tests/struct_from_bytes.rs":"b51b59bf4b4dc97acb433ff44edc1fac8fed6fa55e0b6a4be85a602cac184305","tests/struct_from_zeros.rs":"1f4f70ce8cff4a0de9a69206eda5be7db0dfb55408ea36533bff8798463eea9c","tests/struct_known_layout.rs":"d1b8e7804ab2886cd16ceb83a7e0eb76eab44b3315874ca1e40d4bbc326b4513","tests/struct_no_cell.rs":"889cdbdf2e86baf2615113a1c7c205a90a150e61d093fc3ff827b2653798ac7b","tests/struct_to_bytes.rs":"e08dc8d5a5c75d36e56c593279c49364a16ee73af726424a99bf0987ed4d7822","tests/struct_try_from_bytes.rs":"639b93e0b091bc39dcaca50257164c2e4eaf38008dedb6286799375ec02b9e7b","tests/struct_unaligned.rs":"26e2ce75e599469b5bb040c14fb82cfea62a915c8760a12aa03ff8c8b6a124ca","tests/trybuild.rs":"a240f2b14fbd84a9f61e8eaf9dcccdbea9359802bf81189f9939dcc06a81afd0","tests/ui-msrv/derive_transparent.rs":"6ed88cfc08d88bc78c952ca3b4adcd9bae1ef0758a70e9f20075d408a9002367","tests/ui-msrv/derive_transparent.stderr":"b9312968c8aa7ed27d830e53a6bf180f589c04b790b2e9d4ddd5da26c39caffc","tests/ui-msrv/enum.rs":"aec60493658be2938cb4b6b75aa22518c9929867aa5405047b0d4e7bb26e50fa","tests/ui-msrv/enum.stderr":"6ae23a7d3cc6a9fd16f80e2437937066a20f4c2e52d3cb2f0eb25bd362280aa7","tests/ui-msrv/enum_from_bytes_u8_too_few.rs":"5a9c5860f67d4de553402d5d2a737d847a65f0d6f60b8c7041ef5b68f80b9de2","tests/ui-msrv/enum_from_bytes_u8_too_few.stderr":"6ed1023cab6189068d77599de0b5227a39fea28c2a730f96d1380e7cc9402ca9","tests/ui-msrv/late_compile_pass.rs":"db79c10b493fdb80801a89bff456cd7991a65641ff48a013a7223fc160cffcab","tests/ui-msrv/late_compile_pass.stderr":"f7bf3906058e45aa1fd345501988734aed3565109774453ac9ca914cab9faacb","tests/ui-msrv/mid_compile_pass.rs":"568902a3041efa1d61c5f9f11ec048b6cfb0ec37eca4fb4ed4d48f4aa0dd0d1b","tests/ui-msrv/mid_compile_pass.stderr":"8f33d17846031f1538de7810b180efd08f296f1e42118334383a340cae06aa21","tests/ui-msrv/msrv_specific.rs":"379fde46b56b72e09641af524eed951acf199329514dab98b752a70be6102098","tests/ui-msrv/msrv_specific.stderr":"ab0c8ed3368185ddcc2e99ab21d57bc9518d20d08844f577d3680903a54a1b77","tests/ui-msrv/privacy.rs":"3c09f7001e80205bafec53afb895bfaf5c257e54316da4c193f9078c8b6f3fb8","tests/ui-msrv/privacy.stderr":"70d78e55008f0dcd5026de75d7dd954371d5e03135de6cb2c313696f2da2ecd6","tests/ui-msrv/struct.rs":"edb9fa4e39d8492ed394d596d405f4088719edf07abb566e9fad028281bb3701","tests/ui-msrv/struct.stderr":"e216d3679ef3a7cd25981fa4b393abd2277ee77f1317c2232f46fab3c531d03e","tests/ui-msrv/union.rs":"fe34d99810a11123cd07b698cf67a0b7c82ea261f25f0b916300681912487529","tests/ui-msrv/union.stderr":"a4ec902f10c642c5f447ecf02e2891f03bcde142b3abc4377a43a609005c4cc8","tests/ui-msrv/union_into_bytes_cfg/union_into_bytes_cfg.rs":"c693bf90664c1df85b1d1cda9e2ebe235fb22c4cac213087069ff250f36f67cc","tests/ui-msrv/union_into_bytes_cfg/union_into_bytes_cfg.stderr":"0b9af4f767cc1d6fc591d75b046d31617b5230f012d8ce7c70d7c20ffd6178ca","tests/ui-nightly/absence_of_deprecated_warning.rs":"8621bc8cda4849d9c485f6d0f9008384ba030ee2924e266c5e295d7c91f2a8c8","tests/ui-nightly/absence_of_deprecated_warning.stderr":"cdbbdbdd6a0acbacfd1acf84df75a63cf79544ed1689a2adff2fda7496546b28","tests/ui-nightly/derive_transparent.rs":"6ed88cfc08d88bc78c952ca3b4adcd9bae1ef0758a70e9f20075d408a9002367","tests/ui-nightly/derive_transparent.stderr":"c935350979c17e482141efc465ede0d8e16ec06809b4a3adb9b0dfff24b13c8b","tests/ui-nightly/enum.rs":"aec60493658be2938cb4b6b75aa22518c9929867aa5405047b0d4e7bb26e50fa","tests/ui-nightly/enum.stderr":"25abb7273117a1465abe25cc333b8aaff882f3fbc63ae9436ce5134593296d3c","tests/ui-nightly/enum_from_bytes_u8_too_few.rs":"5a9c5860f67d4de553402d5d2a737d847a65f0d6f60b8c7041ef5b68f80b9de2","tests/ui-nightly/enum_from_bytes_u8_too_few.stderr":"fd3537d2500554c996df20232d7928269a1628a541c527dc12c8ea90e193ca42","tests/ui-nightly/late_compile_pass.rs":"db79c10b493fdb80801a89bff456cd7991a65641ff48a013a7223fc160cffcab","tests/ui-nightly/late_compile_pass.stderr":"a9ff9f29ad9174b66025c153c5a302ae55f8b92aa3fdbe8ff54a104e540fd8c7","tests/ui-nightly/mid_compile_pass.rs":"568902a3041efa1d61c5f9f11ec048b6cfb0ec37eca4fb4ed4d48f4aa0dd0d1b","tests/ui-nightly/mid_compile_pass.stderr":"9af12a0879f17a622eb58eff805cb9745e0ec5a4a3d6087e9b2de7ecf6af3948","tests/ui-nightly/privacy.rs":"3c09f7001e80205bafec53afb895bfaf5c257e54316da4c193f9078c8b6f3fb8","tests/ui-nightly/privacy.stderr":"2250fee84293dc5a9e7b9459b43788e01a19f0371d6b872219f8007b6d7a3337","tests/ui-nightly/struct.rs":"edb9fa4e39d8492ed394d596d405f4088719edf07abb566e9fad028281bb3701","tests/ui-nightly/struct.stderr":"abe0fdcf0d1c7c7ec355af89c07d041389d05406f2bb9f84879652974d5f3015","tests/ui-nightly/union.rs":"fe34d99810a11123cd07b698cf67a0b7c82ea261f25f0b916300681912487529","tests/ui-nightly/union.stderr":"bc5ef7e485254fa175a63780f5fab81a993bfa2448b4e485a3dcc9c08d7f8c1e","tests/ui-nightly/union_into_bytes_cfg/union_into_bytes_cfg.rs":"c693bf90664c1df85b1d1cda9e2ebe235fb22c4cac213087069ff250f36f67cc","tests/ui-nightly/union_into_bytes_cfg/union_into_bytes_cfg.stderr":"1462a888754048e09c81c93ee4e46c860a85c7683655f35c1b9a305b386b2676","tests/ui-stable/derive_transparent.rs":"6ed88cfc08d88bc78c952ca3b4adcd9bae1ef0758a70e9f20075d408a9002367","tests/ui-stable/derive_transparent.stderr":"a3c518362e1b1e607c34165cc5fe03b84e46778608b628b6f5bf0fb749edc2fe","tests/ui-stable/enum.rs":"aec60493658be2938cb4b6b75aa22518c9929867aa5405047b0d4e7bb26e50fa","tests/ui-stable/enum.stderr":"7c0bdac51aea9c7203f47942403aa12c46a1e0712e6d0151f85fda94364ea58c","tests/ui-stable/enum_from_bytes_u8_too_few.rs":"5a9c5860f67d4de553402d5d2a737d847a65f0d6f60b8c7041ef5b68f80b9de2","tests/ui-stable/enum_from_bytes_u8_too_few.stderr":"f5e783b05a3688772707e0db86f109f01df6e1dab18ad9035c514b2b06c32d21","tests/ui-stable/late_compile_pass.rs":"db79c10b493fdb80801a89bff456cd7991a65641ff48a013a7223fc160cffcab","tests/ui-stable/late_compile_pass.stderr":"12159f5c4477adf57db49957618b5a5d3e4a0dd141415541b62d751a18209c94","tests/ui-stable/mid_compile_pass.rs":"568902a3041efa1d61c5f9f11ec048b6cfb0ec37eca4fb4ed4d48f4aa0dd0d1b","tests/ui-stable/mid_compile_pass.stderr":"8099cfb81916cbc85cf637bfee1fcbea1ba91a3d25e54a25bd8846ed85ba34b5","tests/ui-stable/privacy.rs":"3c09f7001e80205bafec53afb895bfaf5c257e54316da4c193f9078c8b6f3fb8","tests/ui-stable/privacy.stderr":"99f0b46a5ea1a4118e0d7a597cc51c89dde92b3b67ea14729b94bcb7c28f655c","tests/ui-stable/struct.rs":"edb9fa4e39d8492ed394d596d405f4088719edf07abb566e9fad028281bb3701","tests/ui-stable/struct.stderr":"d815a87d1285a8dcb19d639211fec1f3ca385ebe03ac166d2ef3e9ffe928f39a","tests/ui-stable/union.rs":"fe34d99810a11123cd07b698cf67a0b7c82ea261f25f0b916300681912487529","tests/ui-stable/union.stderr":"f06212e1c66f051cb44ed062032e17123b180a8830a6202bac81e1195dc4f788","tests/ui-stable/union_into_bytes_cfg/union_into_bytes_cfg.rs":"c693bf90664c1df85b1d1cda9e2ebe235fb22c4cac213087069ff250f36f67cc","tests/ui-stable/union_into_bytes_cfg/union_into_bytes_cfg.stderr":"5ab86d509f2a9ef55e47e34373c57241f528f568e0936553e71c8ddb13f490c0","tests/union_from_bytes.rs":"c8194d9ce55ffc756fed38b5272e738b1284ceff74dd2d07a160d8aea74447b8","tests/union_from_zeros.rs":"dd45058a4ddc268cc2f29b1228a947276b24c94d7cb278f1acc54dac036305af","tests/union_known_layout.rs":"6c8cc9c7901681bc02f4c986ed7d717c059474670d678dc288eef4e0c392c60f","tests/union_no_cell.rs":"c4dd72503164e5433ded5202e02add1024c79c9a36a440783cd20d27b3406a7b","tests/union_to_bytes.rs":"09c123ee3f647c468b9b1ec9e82ef86d1754f3ad1dcb8882bcdfa6b2a2536557","tests/union_try_from_bytes.rs":"1b4753d510ef3444b6375dda28a73f5e1417521d51e45d6b80f66fd22ae08064","tests/union_unaligned.rs":"ff7deadd16e331b4a4c686033330ab9d0207b6e9279c0c3419c0a5c84ea30c94","tests/unsafe_cell.rs":"c186d04ae7ec6f0c2e05b2b24a15b53ea97496cdb80ef9a3cb5e88c3a847407f"},"package":"1328722bbf2115db7e19d69ebcc15e795719e2d66b60827c6a69a117365e37a0"}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[package]
|
|
10
10
|
edition = "2021"
|
|
11
11
|
name = "zerocopy-derive"
|
|
12
|
-
version = "0.8.
|
|
12
|
+
version = "0.8.37"
|
|
13
13
|
authors = ["Joshua Liebow-Feeser <joshlf@google.com>", "Jack Wrenn <jswrenn@amazon.com>"]
|
|
14
14
|
description = "Custom derive for traits from the zerocopy crate"
|
|
15
15
|
license = "BSD-2-Clause OR Apache-2.0 OR MIT"
|
|
@@ -482,7 +482,7 @@ help: the trait `PaddingFree<IntoBytes1, 1>` is not implemented for `()`
|
|
|
482
482
|
but trait `PaddingFree<IntoBytes1, 0>` is implemented for it
|
|
483
483
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
484
484
|
|
|
|
485
|
-
|
|
485
|
+
62 | impl<T: ?Sized> PaddingFree<T, 0> for () {}
|
|
486
486
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
487
487
|
= help: see issue #48214
|
|
488
488
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -504,7 +504,7 @@ help: the trait `PaddingFree<IntoBytes2, 3>` is not implemented for `()`
|
|
|
504
504
|
but trait `PaddingFree<IntoBytes2, 0>` is implemented for it
|
|
505
505
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
506
506
|
|
|
|
507
|
-
|
|
507
|
+
62 | impl<T: ?Sized> PaddingFree<T, 0> for () {}
|
|
508
508
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
509
509
|
= help: see issue #48214
|
|
510
510
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -526,7 +526,7 @@ help: the trait `PaddingFree<IntoBytes3, 2>` is not implemented for `()`
|
|
|
526
526
|
but trait `PaddingFree<IntoBytes3, 0>` is implemented for it
|
|
527
527
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
528
528
|
|
|
|
529
|
-
|
|
529
|
+
62 | impl<T: ?Sized> PaddingFree<T, 0> for () {}
|
|
530
530
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
531
531
|
= help: see issue #48214
|
|
532
532
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -325,7 +325,7 @@ help: the trait `PaddingFree<IntoBytes2, 1>` is not implemented for `()`
|
|
|
325
325
|
but trait `PaddingFree<IntoBytes2, 0>` is implemented for it
|
|
326
326
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
327
327
|
|
|
|
328
|
-
|
|
328
|
+
62 | impl<T: ?Sized> PaddingFree<T, 0> for () {}
|
|
329
329
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
330
330
|
= help: see issue #48214
|
|
331
331
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -347,7 +347,7 @@ help: the trait `PaddingFree<IntoBytes3, 1>` is not implemented for `()`
|
|
|
347
347
|
but trait `PaddingFree<IntoBytes3, 0>` is implemented for it
|
|
348
348
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
349
349
|
|
|
|
350
|
-
|
|
350
|
+
62 | impl<T: ?Sized> PaddingFree<T, 0> for () {}
|
|
351
351
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
352
352
|
= help: see issue #48214
|
|
353
353
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -405,7 +405,7 @@ help: the trait `DynamicPaddingFree<IntoBytes5, true>` is not implemented for `(
|
|
|
405
405
|
but trait `DynamicPaddingFree<IntoBytes5, false>` is implemented for it
|
|
406
406
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
407
407
|
|
|
|
408
|
-
|
|
408
|
+
80 | impl<T: ?Sized> DynamicPaddingFree<T, false> for () {}
|
|
409
409
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
410
410
|
= help: see issue #48214
|
|
411
411
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -427,7 +427,7 @@ help: the trait `DynamicPaddingFree<IntoBytes6, true>` is not implemented for `(
|
|
|
427
427
|
but trait `DynamicPaddingFree<IntoBytes6, false>` is implemented for it
|
|
428
428
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
429
429
|
|
|
|
430
|
-
|
|
430
|
+
80 | impl<T: ?Sized> DynamicPaddingFree<T, false> for () {}
|
|
431
431
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
432
432
|
= help: see issue #48214
|
|
433
433
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
@@ -449,7 +449,7 @@ help: the trait `DynamicPaddingFree<IntoBytes7, true>` is not implemented for `(
|
|
|
449
449
|
but trait `DynamicPaddingFree<IntoBytes7, false>` is implemented for it
|
|
450
450
|
--> $WORKSPACE/src/util/macro_util.rs
|
|
451
451
|
|
|
|
452
|
-
|
|
452
|
+
80 | impl<T: ?Sized> DynamicPaddingFree<T, false> for () {}
|
|
453
453
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
454
454
|
= help: see issue #48214
|
|
455
455
|
= note: this error originates in the derive macro `IntoBytes` (in Nightly builds, run with -Z macro-backtrace for more info)
|