Closed japaric closed 10 years ago
The new mat! expansion does much less work at runtime.
mat!
If you were using the mat! macro, you'll have to change your crate linking from:
#[phase(link, plugin)] extern crate linalg;
to
extern crate linalg; #[phase(plugin)] extern crate linalg_macros;
[breaking-change]
The new
mat!
expansion does much less work at runtime.If you were using the
mat!
macro, you'll have to change your crate linking from:to
[breaking-change]