[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"]
exclude = ["/docs", "/rfcs", "/handoffs", "/.github"]
[features]
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 }