[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"