matten 0.2.0

A family car multidimensional array (tensor) library for small numerical trials / PoCs.
Documentation
[package]
name = "matten"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
description = "A family car multidimensional array (tensor) library for small numerical trials / PoCs."
authors = ["nabbisen"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/nabbisen/matten"
keywords = ["tensor", "array", "ndarray", "numpy", "prototyping"]
categories = ["science", "mathematics", "data-structures"]
# Keep the published crate small: docs, RFCs, and CI are repo-only.
exclude = ["/docs", "/rfcs", "/handoffs", "/.github"]

[features]
# Locked v2-reconciliation matrix. Convenient PoC profile by default;
# `default-features = false` gives the lean core.
default = ["serde", "json", "csv"]
serde = ["dep:serde"]
json = ["serde", "dep:serde_json"]
csv = ["dep:csv"]
dynamic = []

[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
csv = { version = "1", optional = true }