spatialarray 0.2.0

SpatialArray: labeled n-dimensional arrays with spatial-aware helpers for geospatial and scientific workflows.
Documentation
[package]
name = "spatialarray"
version = "0.2.0"
edition = "2021"
license = "MIT"
license-file = "LICENSE"
description = "SpatialArray: labeled n-dimensional arrays with spatial-aware helpers for geospatial and scientific workflows."
authors = ["Ben Smith <benjamin@bnjam.dev>"]
readme = "README.md"
repository = "https://github.com/Wayfinder-Foundry/spatialarray"
homepage = "https://wayfinder-foundry.org"
documentation = "https://docs.rs/spatialarray"
exclude = ["examples/data/*"]

# Optional: files to include when publishing
include = [
  "README.md",
  "LICENSE",
  "Cargo.toml",
  "src/**"
]

keywords = ["spatial", "ndarray", "geospatial", "scientific-computing", "array"]

[dev-dependencies]
csv = "1.1"

[dependencies]
# Make the "rayon" support opt-in for consumers via the crate feature `parallel`.
# This avoids forcing a parallel runtime on all downstream users but still
# provides an ergonomic opt-in for parallel workloads.
ndarray = "0.15"
# Optional dependencies and features are declared below.

[features]
# Default to ship with parallel enabled for CI and development users. Projects
# depending on this crate can opt out by disabling default features.
default = ["parallel"]
# Feature to enable Rayon-backed parallelism in ndarray
parallel = ["ndarray/rayon"]

[package.metadata.docs.rs]
# Ensure docs.rs builds the crate with the default features (including `parallel`)
features = ["default"]

# Categories for crates.io classification
categories = ["science", "data-structures", "geospatial"]