concision-traits 0.2.8

this crate implements the core modules for the concision framework
[dependencies.approx]
optional = true
version = "0.5"

[dependencies.getrandom]
default-features = false
optional = true
version = "0.3"

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

[dependencies.num-complex]
default-features = false
optional = true
version = "0.4"

[dependencies.num-traits]
default-features = false
version = "0.2"

[dependencies.paste]
version = "1"

[dependencies.rand]
default-features = false
optional = true
version = "0.9"

[dependencies.rand_distr]
default-features = false
optional = true
version = "0.5"

[dependencies.thiserror]
default-features = false
version = "2"

[dependencies.variants]
default-features = false
features = ["derive"]
version = "0.0.1"

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

[features]
alloc = []
approx = ["dep:approx", "ndarray/approx"]
blas = ["ndarray/blas"]
complex = ["dep:num-complex"]
default = ["std"]
full = ["default", "approx", "complex", "rand"]
nightly = []
rand = ["dep:rand", "dep:rand_distr", "num-complex?/rand", "rng"]
rng = ["dep:getrandom", "rand?/small_rng", "rand?/thread_rng"]
std = ["alloc", "ndarray/std", "num-complex?/std", "num-traits/std", "rand?/std", "rand?/std_rng", "thiserror/std"]
wasi = []
wasm = ["getrandom?/wasm_js"]

[lib]
bench = false
crate-type = ["cdylib", "rlib"]
doc = true
doctest = true
name = "concision_traits"
path = "src/lib.rs"
test = true

[package]
authors = ["FL03 <jo3mccain@icloud.com> (https://github.com/FL03)", "Scattered-Systems <support@scsys.io> (https://github.com/scattered-systems)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["algorithms", "mathematics", "science"]
description = "this crate implements the core modules for the concision framework"
edition = "2024"
homepage = "https://github.com/FL03/concision/wiki"
keywords = ["data-science", "machine-learning", "scsys", "toolkit"]
license = "Apache-2.0"
name = "concision-traits"
readme = "README.md"
repository = "https://github.com/FL03/concision.git"
rust-version = "1.85.0"
version = "0.2.8"

[package.metadata.docs.rs]
all-features = false
features = ["full"]
rustc-args = ["--cfg", "docsrs"]
version = "v{{version}}"

[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"

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

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