cheby 0.1.0

Chebyshev polynomial toolkit: node generation, coefficient fitting (DCT), and Clenshaw evaluation — generic over scalar type.
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"
name = "cheby"
version = "0.1.0"
authors = ["VPRamon <vallespuigramon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Chebyshev polynomial toolkit: node generation, coefficient fitting (DCT), and Clenshaw evaluation — generic over scalar type."
readme = "README.md"
keywords = [
    "chebyshev",
    "interpolation",
    "clenshaw",
    "numerics",
    "science",
]
categories = [
    "science",
    "mathematics",
]
license = "AGPL-3.0-only"
repository = "https://github.com/Siderust/cheby"

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

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

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

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

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

[dependencies.qtty]
version = "0.3.0"

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