-
Notifications
You must be signed in to change notification settings - Fork 603
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
keyword nostd vs no_std vs category no-std #7306
Comments
As there hasn't been any activity here in over 6 months I've marked this as stale and if no further activity happens for 7 days I will close it. I'm a bot so this may be in error! If this issue should remain open, could someone (the author, a team member, or any interested party) please comment to that effect? The team would be especially grateful if such a comment included details such as:
Thank you for contributing! (The cargo team is currently evaluating the use of Stale bot, and using rust-lang/cargo#6035 as the tracking issue to gather feedback.) If you're reading this comment from the distant future, fear not if this was closed automatically. If you believe it's still an issue please leave a comment and a team member can reopen this issue. Opening a new issue is also acceptable! |
Yes.
Nothing. |
crates.io manages the relevant validation for this (though we do have rust-lang/cargo#4377). Going to transfer this over to them. |
There are currently 7 crates using the keyword
nostd
and 104 crates using the keywordno_std
in their manifest files:Then there is the category
no-std
with 223 crates:Many of the crates using those keywords are not using the
no-std
category.With the current state of affairs I need to do 3 independent queries to find crates that work in
no_std
environments that are relevant to each of my use cases. I'd rather just do 1 query in theno-std
category.Potential actions:
cargo publish could forbid using
nostd
andno_std
as a keyword from now on and recommend the user to choose theno-std
category instead.crates.io could map the existing crates that have the
nostd
orno_std
keywords into theno-std
category.The text was updated successfully, but these errors were encountered: