We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 55dabec + 2075267 commit 8d261c2Copy full SHA for 8d261c2
ndarray-rand/Cargo.toml
@@ -1,6 +1,7 @@
1
[package]
2
name = "ndarray-rand"
3
version = "0.9.0"
4
+edition = "2018"
5
authors = ["bluss"]
6
license = "MIT/Apache-2.0"
7
ndarray-rand/src/lib.rs
@@ -9,8 +9,6 @@
9
//! Constructors for randomized arrays. `rand` integration for `ndarray`.
10
//!
11
//! See [**`RandomExt`**](trait.RandomExt.html) for usage examples.
12
-extern crate ndarray;
13
-extern crate rand;
14
15
use rand::distributions::Distribution;
16
use rand::rngs::SmallRng;
ndarray-rand/tests/tests.rs
@@ -1,7 +1,3 @@
-extern crate ndarray_rand;
-
use ndarray::Array;
use ndarray_rand::RandomExt;
use rand::distributions::Uniform;
0 commit comments