Amanieu / cstr_core

Implementation of CStr and CString for no_std environments
Apache License 2.0
41 stars 17 forks source link

Fix travis build #12

Closed VictorKoenders closed 4 years ago

VictorKoenders commented 4 years ago

Travis-cargo inserts a --feature unstable automatically when building on nightly. The docs specifically mention:

If you do not wish to define an unstable or similar feature, setting TRAVIS_CARGO_NIGHTLY_FEATURE="" should avoid errors caused by undefined features.

But I couldn't get Travis to cooperate, and it seemed simpler to me to just use cargo directly.

Also fixed a minor documentation issue where [`String`] was referenced but does not exist. I've made it redirect to the stable docs directly.

Amanieu commented 4 years ago

AFAIK travis-cargo is no longer maintained so that's fine.