oxiblas-ndarray 0.2.0

ndarray integration for OxiBLAS
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 = "oxiblas-ndarray"
version = "0.2.0"
authors = ["COOLJAPAN OU <contact@cooljapan.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ndarray integration for OxiBLAS"
readme = "README.md"
keywords = [
    "blas",
    "lapack",
    "ndarray",
    "linear-algebra",
    "matrix",
]
categories = [
    "mathematics",
    "science",
    "algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiblas"
resolver = "2"

[features]
default = [
    "oxiblas-core/std",
    "oxiblas-matrix/std",
]
parallel = [
    "oxiblas-blas/parallel",
    "oxiblas-core/parallel",
]
sparse = ["dep:oxiblas-sparse"]

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

[[bench]]
name = "faer_comparison"
path = "benches/faer_comparison.rs"
harness = false

[[bench]]
name = "ndarray_blas"
path = "benches/ndarray_blas.rs"
harness = false

[dependencies.bytemuck]
version = "1.25"
features = ["derive"]

[dependencies.ndarray]
version = "0.17"

[dependencies.num-complex]
version = "0.4"
features = ["bytemuck"]

[dependencies.oxiblas-blas]
version = "0.2.0"

[dependencies.oxiblas-core]
version = "0.2.0"
default-features = false

[dependencies.oxiblas-lapack]
version = "0.2.0"

[dependencies.oxiblas-matrix]
version = "0.2.0"
default-features = false

[dependencies.oxiblas-sparse]
version = "0.2.0"
optional = true

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.faer]
version = "0.23"

[lints.clippy]
all = "warn"

[lints.rust]
unsafe_op_in_unsafe_fn = "allow"