-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This increases MSRV since ruzstd 0.8 uses `#[expect]` attribute stabilized in Rust 1.81 and exclusive range patterns stabilized in Rust 1.80. ``` error[E0658]: the `#[expect]` attribute is an experimental feature --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ruzstd-0.8.0/src/decoding/frame.rs:116:5 | 116 | #[expect(dead_code)] | ^^^^^^^^^^^^^^^^^^^^ | = note: see issue #54503 <rust-lang/rust#54503> for more information error[E0658]: exclusive range pattern syntax is experimental --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ruzstd-0.8.0/src/encoding/blocks/compressed.rs:209:9 | 209 | 0..6 => (0b00u8, 10), | ^^^^ | = note: see issue #37854 <rust-lang/rust#37854> for more information error[E0658]: exclusive range pattern syntax is experimental --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ruzstd-0.8.0/src/encoding/blocks/compressed.rs:210:9 | 210 | 6..1024 => (0b01, 10), | ^^^^^^^ | = note: see issue #37854 <rust-lang/rust#37854> for more information error[E0658]: exclusive range pattern syntax is experimental --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ruzstd-0.8.0/src/encoding/blocks/compressed.rs:211:9 | 211 | 1024..16384 => (0b10, 14), | ^^^^^^^^^^^ | = note: see issue #37854 <rust-lang/rust#37854> for more information error[E0658]: exclusive range pattern syntax is experimental --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ruzstd-0.8.0/src/encoding/blocks/compressed.rs:212:9 | 212 | 16384..262144 => (0b11, 18), | ^^^^^^^^^^^^^ | = note: see issue #37854 <rust-lang/rust#37854> for more information ```
- Loading branch information
Showing
7 changed files
with
10 additions
and
26 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 |
---|---|---|
|
@@ -14,7 +14,6 @@ mcdc | |
microkernel | ||
MSYSTEM | ||
nextest | ||
normpath | ||
notcovered | ||
profdata | ||
profraw | ||
|
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