grid/Cargo.toml
Nico Burns 082e01153b
Remove "no-std-compat" dependency (#24)
* Remove dependency on no-std-compat crate

* Run tests with no_std (alloc) config on CI
2022-12-30 22:22:55 +01:00

31 lines
692 B
TOML

[package]
name = "grid"
version = "0.9.1-alpha.0"
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 = []