-
Notifications
You must be signed in to change notification settings - Fork 12
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
Check for use std::
statements in crate itself
#10
Labels
enhancement
New feature or request
Comments
One special case would be going from |
hobofan
added a commit
that referenced
this issue
Jan 17, 2019
#12 added a primitive version of this check Stuff that's still to do there:
|
hobofan
added a commit
that referenced
this issue
Jan 17, 2019
hobofan
added a commit
that referenced
this issue
Jan 28, 2019
hobofan
added a commit
that referenced
this issue
Jan 28, 2019
hobofan
added a commit
that referenced
this issue
Jan 28, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just adding
#![no_std]
to a crate is not enough. Especially in the main crate, we should also scan foruse std::
statements and report those. Optimally the help message should also suggest switching fromstd::
tocore::
if possible.See also this Reddit thread and this commit, of strength_reduce adding no_std support.
The text was updated successfully, but these errors were encountered: