Closed GZTimeWalker closed 5 months ago
The deletions in the diff has destroyed support for no_std introduced in v0.10.3.
no_std
v0.10.3
You can simply change Cargo.toml to reproduce this issue on your local:
Cargo.toml
[features] - default = ["std"] + default = []
Then you'll find large number of errors caused by Vec / Sized etc.
Vec
Sized
Related issue: https://github.com/rust-lang/rust/issues/121362 https://github.com/rust-lang/rust-clippy/issues/12335 https://github.com/rust-lang/rust/issues/121708
The rust community is still working on this lint issue, as a suggestion, @kirk-baird, may you fix the errors?
cc @Kerollmops
Getting the code to work is more important than clippy's advice.
The deletions in the diff has destroyed support for
no_std
introduced inv0.10.3
.You can simply change
Cargo.toml
to reproduce this issue on your local:Then you'll find large number of errors caused by
Vec
/Sized
etc.Related issue: https://github.com/rust-lang/rust/issues/121362 https://github.com/rust-lang/rust-clippy/issues/12335 https://github.com/rust-lang/rust/issues/121708
The rust community is still working on this lint issue, as a suggestion, @kirk-baird, may you fix the errors?
cc @Kerollmops
Getting the code to work is more important than clippy's advice.