einsum-ndarray 0.1.0

Einstein summation for dynamically shaped ndarray arrays
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 = "2021"
rust-version = "1.75"
name = "einsum-ndarray"
version = "0.1.0"
authors = ["Justin Jones <hey.jones@icloud.com>"]
build = "build.rs"
exclude = [
    "tests/common/naive.rs",
    "reviews/**",
    "fuzz/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Einstein summation for dynamically shaped ndarray arrays"
documentation = "https://docs.rs/einsum-ndarray"
readme = "README.md"
keywords = [
    "einsum",
    "ndarray",
    "tensor",
    "linear-algebra",
    "scientific-computing",
]
categories = [
    "mathematics",
    "science",
]
license = "MIT"
repository = "https://github.com/hey-jj/einsum-ndarray"

[features]
blas = ["ndarray/blas"]
default = []
openblas = ["blas"]

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

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

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

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

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

[dependencies.ndarray]
version = "0.17.2"

[dev-dependencies.serde_json]
version = "1.0"