From 84bfb9ed21fd20ba71f836bc32c5f566d493a0b9 Mon Sep 17 00:00:00 2001 From: Armin Becher Date: Mon, 6 Apr 2020 20:38:23 +0200 Subject: [PATCH] Update readme info --- Cargo.toml | 14 ++++++++++++++ README.md | 8 ++++++++ 2 files changed, 22 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 7ddc0d1..37ebb02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,20 @@ name = "grid" version = "0.1.0" authors = ["Armin Becher "] edition = "2018" +description = "Dynamic generic 2D data structure." +keywords = [ "2D", "array", "matrix", "data structure", "2D vector"] +categories = [ "science", "data-structure",] +readme = "README.md" +license = "MIT" +repository = "https://github.com/becheran/grid" +documentation = "https://docs.rs/grid" + +[badges.gitlab] +repository = "becheran/grid_ci" +branch = "master" + +[badges.maintenance] +status = "actively-developed" [dev-dependencies] criterion = "0.3.1" diff --git a/README.md b/README.md index 43e7b4a..40d7035 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # Grid +[![](http://meritbadge.herokuapp.com/grid)](https://crates.io/crates/grid) +[![](https://badgen.net/crates/d/grid)](https://crates.io/crates/grid) +[![Build Status](https://gitlab.com/becheran/grid_ci/badges/master/pipeline.svg)](https://gitlab.com/becheran/grid_ci/pipelines) +[![](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + Data structure grid for rust. Provide a two dimensional data storage that is easy to use and fast. + +- [documentation](https://docs.rs/grid/) +- [library on crates.io](https://crates.io/crates/grid)