orthos 0.1.3

High-performance linear algebra library written in Rust
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"
name = "orthos"
version = "0.1.3"
build = false
exclude = [
    ".github/",
    "python/",
    "tests/",
    "examples/*.py",
    "pyproject.toml",
    "Dockerfile",
    ".dockerignore",
    "docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance linear algebra library written in Rust"
documentation = "https://docs.rs/orthos"
readme = "README.crates.md"
keywords = [
    "linear-algebra",
    "matrix",
    "vector",
    "math",
    "numpy",
]
categories = [
    "mathematics",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/cosmos-orthos/orthos"

[features]
default = []
python = [
    "pyo3",
    "numpy",
]

[lib]
name = "orthos"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

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

[dependencies.faer]
version = "0.22"

[dependencies.numpy]
version = "0.23"
optional = true

[dependencies.pyo3]
version = "0.23"
features = ["extension-module"]
optional = true

[dependencies.thiserror]
version = "2.0"

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

[profile.release]
opt-level = 3
lto = true
codegen-units = 1

[profile.release.build-override]
opt-level = 3