-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
37 lines (31 loc) · 855 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "grid"
version = "0.16.0"
authors = ["Armin Becher <[email protected]>"]
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"
rust-version = "1.51"
[badges.gitlab]
repository = "becheran/grid_ci"
branch = "master"
[badges.maintenance]
status = "actively-developed"
[dependencies]
serde = { version = "1.0.188", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.3.6"
rand = "0.8.5"
serde_json = "1.0.106"
[[bench]]
name = "benches"
harness = false
[features]
default = ["std"] # Default to using the std
std = []
serde = ["std", "dep:serde"]