Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more mutable iterator methods #47

Merged
merged 8 commits into from
Dec 18, 2023
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.12.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",]
keywords = ["2D", "array", "matrix", "data-structure", "2D-vector"]
categories = ["science", "data-structures"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/becheran/grid"
Expand All @@ -23,14 +23,14 @@ serde = { version = "1.0.188", features = ["derive"], optional = true }

[dev-dependencies]
criterion = "0.3.6"
rand="0.8.5"
rand = "0.8.5"
serde_json = "1.0.106"

[[bench]]
name = "benches"
harness = false

[features]
default = [ "std" ] # Default to using the std
default = ["std"] # Default to using the std
std = []
serde = [ "std", "dep:serde" ]
serde = ["std", "dep:serde"]
Loading