Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rustc features not depending on each other #199

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ rustc_1_40 = []

# features that require rustc 1.55
# use const generics to implement Array for all array lengths
rustc_1_55 = []
rustc_1_55 = ["rustc_1_40"]

# features that require rustc 1.57
# add try_reserve functions to types that heap allocate.
rustc_1_57 = ["rustc_1_55"]

# features that require rustc 1.61
# add retain_mut function to TinyVec
rustc_1_61 = []
rustc_1_61 = ["rustc_1_57"]

# allow use of nightly feature `slice_partition_dedup`,
# will become useless once that is stabilized:
Expand Down
Loading