Update to the last Rust api.
RngUtils is dead. rustdoc_ng became rustdoc.
This commit is contained in:
parent
4ffe274b03
commit
410bbd1d25
2
Makefile
2
Makefile
|
@ -16,7 +16,7 @@ bench:
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
mkdir -p $(nalgebra_doc_path)
|
mkdir -p $(nalgebra_doc_path)
|
||||||
rustdoc_ng html src/lib.rs
|
rustdoc html src/lib.rs
|
||||||
|
|
||||||
distcheck:
|
distcheck:
|
||||||
rm -rf $(tmp)
|
rm -rf $(tmp)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::num::{One, Zero};
|
use std::num::{One, Zero};
|
||||||
use std::rand::{Rand, Rng, RngUtil};
|
use std::rand::{Rand, Rng};
|
||||||
use std::cmp::ApproxEq;
|
use std::cmp::ApproxEq;
|
||||||
use traits::geometry::{Cross, Rotation, Rotate, RotationMatrix, AbsoluteRotate, Transform,
|
use traits::geometry::{Cross, Rotation, Rotate, RotationMatrix, AbsoluteRotate, Transform,
|
||||||
ToHomogeneous, Norm};
|
ToHomogeneous, Norm};
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::num::{One, Zero};
|
use std::num::{One, Zero};
|
||||||
use std::rand::{Rand, Rng, RngUtil};
|
use std::rand::{Rand, Rng};
|
||||||
use std::cmp::ApproxEq;
|
use std::cmp::ApproxEq;
|
||||||
use traits::structure::{Dim, Mat, Col};
|
use traits::structure::{Dim, Mat, Col};
|
||||||
use traits::operations::{Absolute, Inv, RMul};
|
use traits::operations::{Absolute, Inv, RMul};
|
||||||
|
|
Loading…
Reference in New Issue