diff --git a/.travis.yml b/.travis.yml index d0b651a..76a90be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,10 +31,8 @@ script: - cargo test --verbose --features 'serde' - cargo test --verbose --features 'with_serde' - - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then - cargo bench --verbose --features 'bench_it'; - fi + - test "$TRAVIS_RUST_VERSION" != "nightly" || + cargo bench --verbose --features 'bench_it' - - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then - cargo run --verbose --features 'flame_it' --example 'flame_udhr'; - fi + - test "$TRAVIS_RUST_VERSION" != "nightly" || + cargo run --verbose --features 'flame_it' --example 'flame_udhr' diff --git a/Cargo.toml b/Cargo.toml index cbced3a..abfcaac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unicode-bidi" -version = "0.3.3" +version = "0.3.4" authors = ["The Servo Project Developers"] license = "MIT / Apache-2.0" description = "Implementation of the Unicode Bidirectional Algorithm" @@ -10,11 +10,11 @@ keywords = ["rtl", "unicode", "text", "layout", "bidi"] # No data is shipped; benches, examples and tests also depend on data. exclude = [ - "benches/", - "data/", - "examples/", - "tests/", - "tools/", + "benches/**", + "data/**", + "examples/**", + "tests/**", + "tools/**", ] [lib]