changed extern mod to extern crate
This commit is contained in:
parent
5872ef347e
commit
4bcb1a5406
2 changed files with 3 additions and 3 deletions
|
@ -16,8 +16,8 @@
|
||||||
|
|
||||||
#[feature(globs)];
|
#[feature(globs)];
|
||||||
|
|
||||||
extern mod cgmath;
|
extern crate cgmath;
|
||||||
extern mod extra;
|
extern crate extra;
|
||||||
|
|
||||||
// pub mod array;
|
// pub mod array;
|
||||||
pub mod matrix;
|
pub mod matrix;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
#[feature(globs)];
|
#[feature(globs)];
|
||||||
|
|
||||||
extern mod cgmath;
|
extern crate cgmath;
|
||||||
|
|
||||||
// pub mod array;
|
// pub mod array;
|
||||||
pub mod matrix;
|
pub mod matrix;
|
||||||
|
|
Loading…
Reference in a new issue