removed dependance on generic_arrays which was only needed for the matrix implementation of Interpolate, which was removed
This commit is contained in:
parent
350b7d9179
commit
59fc3b40c2
@ -22,16 +22,12 @@ default = ["std", "impl-cgmath"]
|
|||||||
serialization = ["serde", "serde_derive"]
|
serialization = ["serde", "serde_derive"]
|
||||||
std = []
|
std = []
|
||||||
impl-cgmath = ["cgmath"]
|
impl-cgmath = ["cgmath"]
|
||||||
impl-nalgebra = ["nalgebra", "generic-array"]
|
impl-nalgebra = ["nalgebra"]
|
||||||
|
|
||||||
[dependencies.nalgebra]
|
[dependencies.nalgebra]
|
||||||
version = "0.14"
|
version = "0.14"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.generic-array]
|
|
||||||
version = "^0.8"
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[dependencies.cgmath]
|
[dependencies.cgmath]
|
||||||
version = "0.16"
|
version = "0.16"
|
||||||
optional = true
|
optional = true
|
||||||
|
@ -102,7 +102,6 @@
|
|||||||
#[cfg(feature = "impl-cgmath")] extern crate cgmath;
|
#[cfg(feature = "impl-cgmath")] extern crate cgmath;
|
||||||
|
|
||||||
#[cfg(feature = "impl-nalgebra")] extern crate nalgebra;
|
#[cfg(feature = "impl-nalgebra")] extern crate nalgebra;
|
||||||
#[cfg(feature = "impl-nalgebra")] extern crate generic_array;
|
|
||||||
|
|
||||||
#[cfg(feature = "serialization")] extern crate serde;
|
#[cfg(feature = "serialization")] extern crate serde;
|
||||||
#[cfg(feature = "serialization")] #[macro_use] extern crate serde_derive;
|
#[cfg(feature = "serialization")] #[macro_use] extern crate serde_derive;
|
||||||
|
Loading…
Reference in New Issue
Block a user