matten 0.1.0

A family car multidimensional array (tensor) library for small numerical trials / PoCs.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "matten"
version = "0.1.0"
authors = ["nabbisen"]
build = false
exclude = [
    "/docs",
    "/rfcs",
    "/handoffs",
    "/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A family car multidimensional array (tensor) library for small numerical trials / PoCs."
readme = "README.md"
keywords = [
    "tensor",
    "array",
    "ndarray",
    "numpy",
    "prototyping",
]
categories = [
    "science",
    "mathematics",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/nabbisen/matten"

[features]
csv = ["dep:csv"]
default = [
    "serde",
    "json",
    "csv",
]
dynamic = []
json = [
    "serde",
    "dep:serde_json",
]
serde = ["dep:serde"]

[lib]
name = "matten"
path = "src/lib.rs"

[[example]]
name = "hello_tensor"
path = "examples/hello_tensor.rs"

[[test]]
name = "smoke"
path = "tests/smoke.rs"

[dependencies.csv]
version = "1"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true