Closed CAD97 closed 6 years ago
This was fixed by #229, right @behnam ?
Or wait, was this just the --features
change..... I'll probably have some time later this week to put into this again (finally) so I'll refresh myself on everything then.
nightly
build with --all-features
was failing bcz of the unicode
feature becoming partially stable, and the value we were using becoming a new feature, unicode_version
. All is passing already, so I believe there's nothing more to do here anymore.
See https://internals.rust-lang.org/t/help-us-test-the-breaking-bug-fix-to-cargo-features/ See https://travis-ci.org/behnam/rust-unic/jobs/372843062
The use of
--features
was not doing what we thought previously, and we'll need to change it to do what we want.#![feature(unicode_version)]
inunic/tests/unicode_version_tests
and removal of thebench_it
feature (it's not pulling weight anyway, just put the benches into./benches
) should resolve this issue.Unfortunately that means that the
--features serde
test will only happen on nightly (where we can use--all-features
since we have some nightly-only features)