cheby 0.2.0

Unit-safe Chebyshev approximation and spectral numerics for 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"
name = "cheby"
version = "0.2.0"
authors = ["VPRamon <vallespuigramon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unit-safe Chebyshev approximation and spectral numerics for Rust."
readme = "README.md"
keywords = [
    "chebyshev",
    "interpolation",
    "clenshaw",
    "numerics",
    "science",
]
categories = [
    "science",
    "mathematics",
]
license = "AGPL-3.0-only"
repository = "https://github.com/Siderust/cheby"

[features]
adaptive = [
    "approx",
    "alloc",
]
alloc = ["qtty/alloc"]
approx = []
binary = ["alloc"]
calculus = []
default = [
    "std",
    "approx",
    "calculus",
    "piecewise",
]
full = [
    "std",
    "alloc",
    "approx",
    "adaptive",
    "minimax",
    "calculus",
    "piecewise",
    "quadrature",
    "spectral",
    "serde",
    "binary",
]
minimax = [
    "approx",
    "alloc",
]
piecewise = ["alloc"]
quadrature = []
serde = [
    "dep:serde",
    "qtty/serde",
    "alloc",
]
spectral = [
    "calculus",
    "alloc",
]
std = ["qtty/std"]

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

[[example]]
name = "adaptive_fit"
path = "examples/adaptive_fit.rs"
required-features = ["adaptive"]

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

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

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

[[example]]
name = "binary_roundtrip"
path = "examples/binary_roundtrip.rs"
required-features = ["binary"]

[[example]]
name = "clenshaw_curtis_integral"
path = "examples/clenshaw_curtis_integral.rs"
required-features = ["quadrature"]

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

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

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

[[example]]
name = "gauss_chebyshev"
path = "examples/gauss_chebyshev.rs"
required-features = ["quadrature"]

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

[[example]]
name = "minimax_exp"
path = "examples/minimax_exp.rs"
required-features = ["minimax"]

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

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

[[example]]
name = "spectral_differentiation"
path = "examples/spectral_differentiation.rs"
required-features = ["spectral"]

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "cheby"
path = "benches/cheby.rs"
harness = false
required-features = ["full"]

[dependencies.qtty]
version = "0.7.1"
features = ["cross-unit-ops"]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

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

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.trybuild]
version = "1.0"