Update to the last Rust api.

RngUtils is dead.
rustdoc_ng became rustdoc.
This commit is contained in:
Sébastien Crozet 2013-09-22 21:12:50 +02:00
parent 4ffe274b03
commit 410bbd1d25
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ bench:
doc:
mkdir -p $(nalgebra_doc_path)
rustdoc_ng html src/lib.rs
rustdoc html src/lib.rs
distcheck:
rm -rf $(tmp)

View File

@ -1,5 +1,5 @@
use std::num::{One, Zero};
use std::rand::{Rand, Rng, RngUtil};
use std::rand::{Rand, Rng};
use std::cmp::ApproxEq;
use traits::geometry::{Cross, Rotation, Rotate, RotationMatrix, AbsoluteRotate, Transform,
ToHomogeneous, Norm};

View File

@ -1,5 +1,5 @@
use std::num::{One, Zero};
use std::rand::{Rand, Rng, RngUtil};
use std::rand::{Rand, Rng};
use std::cmp::ApproxEq;
use traits::structure::{Dim, Mat, Col};
use traits::operations::{Absolute, Inv, RMul};