From 276bf3f9996b1d906940a2ec53dc373f2eb79335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sat, 18 Oct 2014 20:52:35 +0200 Subject: [PATCH] Update to the last rust-nightly. Version of rustc: 0.13.0-nightly (222ae8b9b 2014-10-18 00:47:22 +0000). --- src/lib.rs | 2 -- tests/mat.rs | 3 +-- tests/quat.rs | 1 - tests/vec.rs | 1 - 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e3ef023b..68d99af5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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; diff --git a/tests/mat.rs b/tests/mat.rs index dc0ed56b..c4a2100d 100644 --- a/tests/mat.rs +++ b/tests/mat.rs @@ -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); } diff --git a/tests/quat.rs b/tests/quat.rs index bec1b231..5c7afbfd 100644 --- a/tests/quat.rs +++ b/tests/quat.rs @@ -1,6 +1,5 @@ #![feature(macro_rules)] -extern crate debug; extern crate "nalgebra" as na; use na::{Pnt3, Vec3, Rot3, UnitQuat, Rotation}; diff --git a/tests/vec.rs b/tests/vec.rs index 51524a91..0c3054a2 100644 --- a/tests/vec.rs +++ b/tests/vec.rs @@ -1,6 +1,5 @@ #![feature(macro_rules)] -extern crate debug; extern crate "nalgebra" as na; use std::rand::random;