Merge pull request #170 from simnalamburt/pr-1

Rust version up
This commit is contained in:
Dzmitry Malyshau 2015-02-11 11:38:31 -05:00
commit 6da058ae60

View file

@ -15,7 +15,8 @@
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![crate_type = "dylib"] #![crate_type = "dylib"]
#![feature(old_impl_check, plugin, core, std_misc)] #![feature(old_impl_check, plugin, core, hash, std_misc)]
#![plugin(rand_macros)]
//! Computer graphics-centric math. //! Computer graphics-centric math.
//! //!
@ -33,9 +34,6 @@
extern crate "rustc-serialize" as rustc_serialize; extern crate "rustc-serialize" as rustc_serialize;
extern crate rand; extern crate rand;
#[plugin]
#[no_link]
extern crate rand_macros;
// Re-exports // Re-exports