From what I have seen, std is more common than use_std. It also aligns better with the optional dependency / implicit feature mechanism. If you have an optional dependency on serde, the implicit feature is called serde not use_serde.
[features]
- use_std = []
+ std = []