grid/Cargo.toml

35 lines
783 B
TOML
Raw Normal View History

2020-03-31 22:26:00 +00:00
[package]
2020-04-01 20:17:54 +00:00
name = "grid"
2022-08-06 09:46:36 +00:00
version = "0.7.0"
2020-04-01 21:31:42 +00:00
authors = ["Armin Becher <armin.becher@gmai.com>"]
2020-03-31 22:26:00 +00:00
edition = "2018"
2020-04-06 18:38:23 +00:00
description = "Dynamic generic 2D data structure."
2020-04-06 19:59:47 +00:00
keywords = [ "2D", "array", "matrix", "data-structure", "2D-vector"]
2020-04-24 09:23:36 +00:00
categories = [ "science", "data-structures",]
2020-04-06 18:38:23 +00:00
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"
2020-03-31 22:26:00 +00:00
2020-04-01 20:17:54 +00:00
[dev-dependencies]
2020-03-31 22:26:00 +00:00
criterion = "0.3.1"
2022-08-06 09:38:36 +00:00
rand="0.8.5"
2020-03-31 22:26:00 +00:00
[dependencies]
no-std-compat = { version = "0.4.1", features = [ "alloc" ] }
2020-03-31 22:26:00 +00:00
[[bench]]
2020-04-01 20:17:54 +00:00
name = "benches"
2020-04-06 19:59:47 +00:00
harness = false
[features]
default = [ "std" ] # Default to using the std
2021-08-22 17:28:05 +00:00
std = [ "no-std-compat/std" ]