The [C-FEATURE](https://rust-lang-nursery.github.io/api-guidelines/naming.html#c-feature) guideline discourages calling a Cargo feature `"use_std"`. I would recommend `"std"` instead.
Activity
BurntSushi commentedon May 2, 2018
Funnily enough, I was using
std
, but switched touse_std
just before the release because it's whatlibc
uses.I think this can be done in a backwards compatible way, but we'd need to keep
use_std
around. Not sure whether I prefer justuse_std
or having both...ethanpailes commentedon May 2, 2018
Personally I would rather have just one way to do it. Small api surface and all that.
feature: add 'std' feature, deprecated 'use_std'
feature: add 'std' feature, deprecate 'use_std'
feature: add 'std' feature, deprecate 'use_std'