We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consists of multiple things:
--allow-alloc
alloc
std
use std::
use alloc::
use
use std::vec::Vec
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consists of multiple things:
--allow-alloc
flag; By default thealloc
should not be assumed to be present on target systems.std
withalloc
similar to this: https://github.com/CraneStation/cranelift/blob/4e096e29cecc762e345cfc62c34e3113ba5777d7/lib/wasm/src/lib.rs#L30-L38 . If that is detected, filter out alluse std::
offenses that have an equivalent validuse alloc::
statement.use
related the alloc crate (e.g.use std::vec::Vec
is detected)The text was updated successfully, but these errors were encountered: