diff --git a/.travis.yml b/.travis.yml index bd8d585f64c..903aa748463 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,7 @@ matrix: - cargo test --features=serde1,log - cargo test --examples - cargo test --manifest-path rand_core/Cargo.toml - - cargo test --manifest-path rand_core/Cargo.toml --no-default-feature + - cargo test --manifest-path rand_core/Cargo.toml --no-default-features - cargo test --manifest-path rand_distr/Cargo.toml - cargo test --manifest-path rand_isaac/Cargo.toml --features=serde1 # TODO: cannot test rand_pcg due to explicit dependency on i128 diff --git a/rand_distr/README.md b/rand_distr/README.md index 44e0ff1ca2c..68acd2f0799 100644 --- a/rand_distr/README.md +++ b/rand_distr/README.md @@ -11,7 +11,7 @@ Implements a full suite of random number distributions sampling routines. This crate is a super-set of the [rand::distributions] module, including support -for sampling from Beta, Binomial, Cauchy, CircleChiSquared, Dirichlet, exponential, +for sampling from Beta, Binomial, Cauchy, ChiSquared, Dirichlet, exponential, Fisher F, Gamma, Log-normal, Normal, Pareto, Poisson, StudentT, Triangular and Weibull distributions, as well as sampling points from the unit circle and unit sphere surface.