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
no_std
std
Currently using this from std:
decompound/src/lib.rs
Line 18 in b2f4151
BTreeSet is in alloc (luckily: HashMap should be more widely usable rust-lang-nursery/portability-wg#11, see also nostd Sovereign-Labs/nmt-rs#16 for an example where this had to be circumvented; HashMap isn't relevant here though, as it breaks determinism), but it would be trivial to throw it out entirely and code around it; would make the code uglier though (manual deduplication... not a big deal but less pretty):
BTreeSet
alloc
HashMap
Lines 259 to 268 in b2f4151
Error in core is unstable; once that is stable, can move this crate to no_std. See: Tracking Issue for Error in core rust-lang/rust#103765
Error
core
Display is in core
Display
decompound/Cargo.toml
Line 17 in b2f4151
is no_std as a feature:
https://github.com/bitflags/bitflags/blob/472e392c0d082c0894b18fb31f4e68e0b145e29c/src/lib.rs#L241
https://github.com/rust-lang/log/blob/b7ac2baea9f814feb1bf21fd05523840ff6a19c4/src/lib.rs#L328
Line 19 in b2f4151
is no_std.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
std
ImportsCurrently using this from
std
:decompound/src/lib.rs
Line 18 in b2f4151
BTreeSet
is inalloc
(luckily: HashMap should be more widely usable rust-lang-nursery/portability-wg#11, see also nostd Sovereign-Labs/nmt-rs#16 for an example where this had to be circumvented;HashMap
isn't relevant here though, as it breaks determinism), but it would be trivial to throw it out entirely and code around it; would make the code uglier though (manual deduplication... not a big deal but less pretty):decompound/src/lib.rs
Lines 259 to 268 in b2f4151
Error
incore
is unstable; once that is stable, can move this crate tono_std
. See: Tracking Issue forError
incore
rust-lang/rust#103765Display
is incore
3rd party dependencies
decompound/Cargo.toml
Line 17 in b2f4151
is
no_std
as a feature:https://github.com/bitflags/bitflags/blob/472e392c0d082c0894b18fb31f4e68e0b145e29c/src/lib.rs#L241
decompound/Cargo.toml
Line 18 in b2f4151
is
no_std
as a feature:https://github.com/rust-lang/log/blob/b7ac2baea9f814feb1bf21fd05523840ff6a19c4/src/lib.rs#L328
decompound/Cargo.toml
Line 19 in b2f4151
is
no_std
.The text was updated successfully, but these errors were encountered: