Update to the last rust-nightly.
Version of rustc: 0.13.0-nightly (222ae8b9b 2014-10-18 00:47:22 +0000).
This commit is contained in:
parent
8288ebdfab
commit
276bf3f999
|
@ -107,8 +107,6 @@ extern crate serialize;
|
|||
|
||||
#[cfg(test)]
|
||||
extern crate test;
|
||||
#[cfg(test)]
|
||||
extern crate debug;
|
||||
|
||||
use std::num::{Zero, One, FloatMath};
|
||||
use std::cmp;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![feature(macro_rules)]
|
||||
|
||||
extern crate debug;
|
||||
extern crate "nalgebra" as na;
|
||||
|
||||
use std::num::{Float, abs};
|
||||
|
@ -247,7 +246,7 @@ fn test_dmat_from_vec() {
|
|||
]
|
||||
);
|
||||
|
||||
println!("mat1: {:?}, mat2: {:?}", mat1, mat2);
|
||||
println!("mat1: {}, mat2: {}", mat1, mat2);
|
||||
|
||||
assert!(mat1 == mat2);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![feature(macro_rules)]
|
||||
|
||||
extern crate debug;
|
||||
extern crate "nalgebra" as na;
|
||||
|
||||
use na::{Pnt3, Vec3, Rot3, UnitQuat, Rotation};
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![feature(macro_rules)]
|
||||
|
||||
extern crate debug;
|
||||
extern crate "nalgebra" as na;
|
||||
|
||||
use std::rand::random;
|
||||
|
|
Loading…
Reference in New Issue