diff --git a/nalgebra-glm/Cargo.toml b/nalgebra-glm/Cargo.toml index 07ba7478..5abdb0db 100644 --- a/nalgebra-glm/Cargo.toml +++ b/nalgebra-glm/Cargo.toml @@ -3,8 +3,17 @@ name = "nalgebra-glm" version = "0.1.0" authors = ["sebcrozet "] +description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library." +documentation = "https://www.nalgebra.org/rustdoc_glm/nalgebra_glm/index.html" +homepage = "https://nalgebra.org" +repository = "https://github.com/rustsim/nalgebra" +readme = "../README.md" +categories = [ "science" ] +keywords = [ "linear", "algebra", "matrix", "vector", "math" ] +license = "BSD-3-Clause" + [dependencies] num-traits = { version = "0.2", default-features = false } approx = { version = "0.3", default-features = false } alga = "0.7" -nalgebra = { path = ".." } \ No newline at end of file +nalgebra = { path = "..", version = "^0.16.3" } \ No newline at end of file