Update and fix implementors for the new API.

This commit is contained in:
Dimitri Sabadie
2021-03-05 02:05:36 +01:00
parent 0ccc3c0956
commit 3e85a1f026
6 changed files with 41 additions and 252 deletions

View File

@ -23,7 +23,7 @@ maintenance = { status = "actively-developed" }
default = ["std"]
impl-cgmath = ["cgmath"]
impl-glam = ["glam"]
impl-nalgebra = ["nalgebra", "num-traits", "simba"]
impl-nalgebra = ["nalgebra"]
serialization = ["serde", "serde_derive"]
std = []
@ -31,10 +31,8 @@ std = []
cgmath = { version = ">=0.17, <0.19", optional = true }
glam = { version = ">=0.10, <0.12", optional = true }
nalgebra = { version = ">=0.21, <0.25", optional = true }
num-traits = { version = "0.2", optional = true }
serde = { version = "1", optional = true }
serde_derive = { version = "1", optional = true }
simba = { version = ">=0.1.2, <0.5", optional = true }
[dev-dependencies]
float-cmp = ">=0.6, < 0.9"