fdars-core 0.4.0

Functional Data Analysis algorithms 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"
rust-version = "1.81"
name = "fdars-core"
version = "0.4.0"
authors = ["Simon Muller"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Functional Data Analysis algorithms in Rust"
homepage = "https://github.com/sipemu/fdars"
documentation = "https://docs.rs/fdars-core"
readme = "README.md"
keywords = [
    "functional-data",
    "statistics",
    "fda",
    "depth",
    "clustering",
]
categories = [
    "science",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/sipemu/fdars"

[features]
default = ["parallel"]
js = ["getrandom/js"]
linalg = [
    "faer",
    "anofox-regression",
]
parallel = ["rayon"]

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

[[example]]
name = "basis_representation"
path = "examples/04_basis_representation/main.rs"

[[example]]
name = "clustering"
path = "examples/07_clustering/main.rs"

[[example]]
name = "complete_pipeline"
path = "examples/14_complete_pipeline/main.rs"

[[example]]
name = "depth_measures"
path = "examples/05_depth_measures/main.rs"

[[example]]
name = "detrending"
path = "examples/11_detrending/main.rs"

[[example]]
name = "distances_and_metrics"
path = "examples/06_distances_and_metrics/main.rs"

[[example]]
name = "functional_operations"
path = "examples/02_functional_operations/main.rs"

[[example]]
name = "irregular_data"
path = "examples/13_irregular_data/main.rs"

[[example]]
name = "outlier_detection"
path = "examples/09_outlier_detection/main.rs"

[[example]]
name = "regression"
path = "examples/08_regression/main.rs"

[[example]]
name = "seasonal_analysis"
path = "examples/10_seasonal_analysis/main.rs"

[[example]]
name = "simulation"
path = "examples/01_simulation/main.rs"

[[example]]
name = "smoothing"
path = "examples/03_smoothing/main.rs"

[[example]]
name = "streaming_depth"
path = "examples/12_streaming_depth/main.rs"

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

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

[dependencies.anofox-regression]
version = "0.4"
optional = true

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

[dependencies.getrandom]
version = "0.2"
optional = true

[dependencies.nalgebra]
version = "0.33"

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

[dependencies.rand]
version = "0.8"

[dependencies.rand_distr]
version = "0.4"

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

[dependencies.rustfft]
version = "6.2"

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

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

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

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]