no_std unstable - why? #549
Replies: 1 comment
-
I didn't write the comment you're referring to, but to my eyes it seems to be referring to something different than what you seem to have gotten out of it. I think it's referring to the removal of the heuristic about which features to test with by default: https://github.com/obi1kenobi/cargo-semver-checks#what-features-does-cargo-semver-checks-enable-in-the-tested-crates This is case of " |
Beta Was this translation helpful? Give feedback.
-
Why, or in which contexts/use cases/situations would
#[no_std]
equal/imply/be simnilar to unstable? But, if #61 > "Things to remove" means that this (treating of#[no_std]
as unstable) is (likely) going to be removed, then please ignore this.Otherwise: All that
#[no_std]
does is removal ofstd::
. Code can still use itscore::
subset (which aliases/re-exports itsstd::
counterpart, or rather vice-versa). And withextern crate alloc;
they can use heap, too (but I believe that hardly matters here).Either way,
#[no_std]
is only a subset of what is instd::
, so I can't see why it would be unstable.Thank you for cargo-semver-checks, of course.
Beta Was this translation helpful? Give feedback.
All reactions