nabled-ml 0.0.4

ML-oriented algorithms built on ndarray-native nabled 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 = "nabled-ml"
version = "0.0.4"
authors = [
    "Niklaus Parcell <nik.parcell@gmail.com>",
    "George Lee Patterson <patterson.george@gmail.com>",
]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ML-oriented algorithms built on ndarray-native nabled primitives"
homepage = "https://github.com/MontOpsInc/nabled"
documentation = "https://docs.rs/nabled-ml"
readme = "README.md"
keywords = [
    "machine-learning",
    "ndarray",
    "optimization",
    "regression",
    "pca",
]
categories = [
    "mathematics",
    "science",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MontOpsInc/nabled"

[features]
blas = ["nabled-linalg/blas"]
default = []
lapack-provider = ["nabled-linalg/lapack-provider"]
netlib-static = [
    "blas",
    "lapack-provider",
    "nabled-linalg/netlib-static",
]
netlib-system = [
    "blas",
    "lapack-provider",
    "nabled-linalg/netlib-system",
]
openblas-static = [
    "blas",
    "lapack-provider",
    "nabled-linalg/openblas-static",
]
openblas-system = [
    "blas",
    "lapack-provider",
    "nabled-linalg/openblas-system",
]

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

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

[dependencies.nabled-core]
version = "=0.0.4"

[dependencies.nabled-linalg]
version = "=0.0.4"

[dependencies.ndarray]
version = "0.17"
features = ["serde"]

[dependencies.ndarray-linalg]
version = "0.18"
default-features = false

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

[dependencies.num-traits]
version = "0.2"

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

[lints.clippy]
clone_on_ref_ptr = "warn"
large_futures = "warn"
must_use_candidate = "allow"

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

[lints.rust]
elided_lifetimes_in_paths = "deny"
explicit_outlives_requirements = "warn"
let_underscore_drop = "warn"
missing_copy_implementations = "warn"
redundant_lifetimes = "warn"
rust_2024_incompatible_pat = "warn"
single_use_lifetimes = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unnameable_types = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_import_braces = "warn"
unused_imports = "deny"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
unused_results = "warn"
variant_size_differences = "warn"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]