csaps 0.5.0

Cubic spline approximation (smoothing)
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.85.0"
name = "csaps"
version = "0.5.0"
authors = ["Eugene Prilepin <esp.home@gmail.com>"]
build = false
exclude = [
    ".github/",
    ".gitignore",
    "assets/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cubic spline approximation (smoothing)"
homepage = "https://github.com/espdev/csaps-rs"
documentation = "https://docs.rs/csaps"
readme = "README.md"
keywords = [
    "spline",
    "interpolation",
    "approximation",
    "csaps",
    "smoothing",
]
categories = ["science"]
license = "MIT"
repository = "https://github.com/espdev/csaps-rs"

[badges.coveralls]
branch = "master"
repository = "espdev/csaps-rs"
service = "github"

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

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

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

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

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

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

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

[dependencies.almost]
version = "0.2.0"

[dependencies.itertools]
version = "0.14.0"

[dependencies.ndarray]
version = "0.17.2"

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

[dependencies.sprs]
version = "0.11.4"

[dependencies.sprs-ldl]
version = "0.10.0"

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.approx]
version = "0.5.1"

[dev-dependencies.ndarray]
version = "0.17.2"
features = ["approx"]