grid/Cargo.toml
2023-04-18 20:32:48 +02:00

31 lines
692 B
TOML

[package]
name = "grid"
version = "0.9.1-alpha.1"
authors = ["Armin Becher <armin.becher@gmai.com>"]
edition = "2018"
description = "Dynamic generic 2D data structure."
keywords = [ "2D", "array", "matrix", "data-structure", "2D-vector"]
categories = [ "science", "data-structures",]
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.6"
rand="0.8.5"
[[bench]]
name = "benches"
harness = false
[features]
default = [ "std" ] # Default to using the std
std = []