2020-03-31 22:26:00 +00:00
|
|
|
[package]
|
2020-04-01 20:17:54 +00:00
|
|
|
name = "grid"
|
2022-10-07 18:26:26 +00:00
|
|
|
version = "0.9.1-alpha.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]
|
2022-08-10 17:37:18 +00:00
|
|
|
criterion = "0.3.6"
|
2022-08-06 09:38:36 +00:00
|
|
|
rand="0.8.5"
|
2020-03-31 22:26:00 +00:00
|
|
|
|
2021-08-19 10:35:33 +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
|
2021-08-19 10:35:33 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [ "std" ] # Default to using the std
|
2021-08-22 17:28:05 +00:00
|
|
|
std = [ "no-std-compat/std" ]
|