Skip to content

Commit 8d261c2

Browse files
committed
Merge branch 'master' into nonzero
2 parents 55dabec + 2075267 commit 8d261c2

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

ndarray-rand/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "ndarray-rand"
33
version = "0.9.0"
4+
edition = "2018"
45
authors = ["bluss"]
56
license = "MIT/Apache-2.0"
67

ndarray-rand/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
//! Constructors for randomized arrays. `rand` integration for `ndarray`.
1010
//!
1111
//! See [**`RandomExt`**](trait.RandomExt.html) for usage examples.
12-
extern crate ndarray;
13-
extern crate rand;
1412
1513
use rand::distributions::Distribution;
1614
use rand::rngs::SmallRng;

ndarray-rand/tests/tests.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
extern crate ndarray;
2-
extern crate ndarray_rand;
3-
extern crate rand;
4-
51
use ndarray::Array;
62
use ndarray_rand::RandomExt;
73
use rand::distributions::Uniform;

0 commit comments

Comments
 (0)