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: 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)

View File

@ -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};

View File

@ -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};