scivex-core 0.1.1

Scivex — Tensors, linear algebra, FFT, and math primitives
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 = "scivex-core"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scivex — Tensors, linear algebra, FFT, and math primitives"
homepage = "https://github.com/scivex/scivex"
readme = "README.md"
keywords = [
    "tensor",
    "linear-algebra",
    "fft",
    "simd",
    "scientific-computing",
]
categories = [
    "science",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/scivex/scivex"

[features]
mixed-precision = ["dep:half"]
parallel = ["dep:rayon"]
serde-support = ["dep:serde"]
simd = []

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

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

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

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

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

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

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

[dependencies.half]
version = "2"
optional = true

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

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

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

[dev-dependencies.proptest]
version = "1"

[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
many_single_char_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_op_in_unsafe_fn = "deny"