-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: remove ignore's dependency on crossbeam-utils
Scoped threads are now part of std.
- Loading branch information
1 parent
2f484d8
commit e95254a
Showing
3 changed files
with
3 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
e95254a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One of my dependencies is using this crate https://crates.io/crates/ignore/0.4.19
Just started getting this issue:
Is this crate intended to be unstable only on older rust versions?
e95254a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scoped threads were added to the standard library in Rust 1.63. You'll need to use at least that version to use the latest release of
ignore
.The
ignore
crate doesn't enable any nightly features, so you can't use an older nightly Rust even if you wanted to.e95254a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I was able to update to a newer rust version so i don't have any issues with this.
A lot of crates depend on this one - could a MSRV be set?
e95254a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It has the same MSRV as ripgrep and ripgrep tracks latest Rust stable: https://github.com/BurntSushi/ripgrep/#building
Discussing policy in the comments of a commit message is not great. if you have a specific proposal to make, please open a new issue. Please describe the problem you're trying to solve and what justifies the extra maintenance resources (i.e., my free time) required to satisfy the request.