diff --git a/.travis.yml b/.travis.yml index 7e6f389..6265f3c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,17 +50,17 @@ before_script: cargo fmt --all -- --check; cargo clippy --all-targets --all-features -- -Dwarnings -Aclippy::transmute_int_to_float -Aclippy::new-without-default; fi - - if [ ${TRAVIS_RUST_VERSION} == "nightly" ]; then - cd "${TRAVIS_BUILD_DIR}/random-trait" - rustup component add miri; - cargo miri setup; - cargo miri test -- -- -Zunstable-options --exclude-should-panic; - - cd "${TRAVIS_BUILD_DIR}/random-fast-rng" - rustup component add miri; - cargo miri setup; - cargo miri test -- -- -Zunstable-options --exclude-should-panic; - fi +# - if [ ${TRAVIS_RUST_VERSION} == "nightly" ]; then +# cd "${TRAVIS_BUILD_DIR}/random-trait" +# rustup component add miri; +# cargo miri setup; +# cargo miri test -- -- -Zunstable-options --exclude-should-panic; +# +# cd "${TRAVIS_BUILD_DIR}/random-fast-rng" +# rustup component add miri; +# cargo miri setup; +# cargo miri test -- -- -Zunstable-options --exclude-should-panic; +# fi notifications: email: diff --git a/random-fast-rng/README.md b/random-fast-rng/README.md index 1f1e8bf..6e8607c 100644 --- a/random-fast-rng/README.md +++ b/random-fast-rng/README.md @@ -22,7 +22,7 @@ random-fast-rng = "0.1" # Examples ```rust -use fast_rng::{FastRng, Random}; +use random_fast_rng::{FastRng, Random}; fn do_something() { let mut rng = FastRng::new();