From cad07f23dc482f3699f6e113bc90c4f372317b34 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sun, 23 Sep 2018 17:14:30 +0200 Subject: [PATCH] Release nalgebra-glm v0.1. --- nalgebra-glm/Cargo.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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