Update to the last Rust.
Version of rustc: 0.10-pre (698042d 2014-02-21 21:26:49 -0800)
This commit is contained in:
parent
0eab5e0d4f
commit
9a49bb5895
|
@ -1,5 +1,5 @@
|
|||
use std::rand::random;
|
||||
use extra::test::BenchHarness;
|
||||
use test::BenchHarness;
|
||||
use na::{Vec2, Vec3, Vec4, Vec5, Vec6, DVec, Mat2, Mat3, Mat4, Mat5, Mat6, DMat};
|
||||
|
||||
macro_rules! bench_mul_mat(
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use std::rand::random;
|
||||
use extra::test::BenchHarness;
|
||||
use test::BenchHarness;
|
||||
use na::{Vec2, Vec3, Vec4, Vec5, Vec6};
|
||||
use na;
|
||||
|
||||
|
|
|
@ -113,6 +113,9 @@ extern crate std;
|
|||
extern crate extra;
|
||||
extern crate serialize;
|
||||
|
||||
#[cfg(test)]
|
||||
extern crate test;
|
||||
|
||||
pub mod na;
|
||||
mod structs;
|
||||
mod traits;
|
||||
|
|
Loading…
Reference in New Issue