[dependencies.cgmath]
optional = true
version = ">=0.17, <0.19"
[dependencies.glam]
optional = true
version = ">=0.10, <0.31"
[dependencies.nalgebra]
optional = true
version = ">=0.21, <0.34"
[dependencies.num-traits]
default-features = false
features = ["libm"]
optional = true
version = "0.2"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1"
[dev-dependencies.float-cmp]
version = ">=0.6, < 0.11"
[dev-dependencies.serde_json]
version = "1"
[[example]]
name = "hello-world"
path = "examples/hello-world.rs"
[[example]]
name = "serialization"
path = "examples/serialization.rs"
required-features = ["serde"]
[features]
default = ["std"]
std = []
[lib]
name = "splines"
path = "src/lib.rs"
[package]
authors = ["Dimitri Sabadie <hadronized@strongly-typed-thoughts.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science"]
description = "Spline interpolation made easy"
documentation = "https://docs.rs/splines"
edition = "2024"
homepage = "https://git.sr.ht/~hadronized/splines"
keywords = ["spline", "interpolation"]
license = "BSD-3-Clause"
name = "splines"
readme = "README.md"
repository = "https://git.sr.ht/~hadronized/splines"
rust-version = "1.86.0"
version = "5.0.0"
[package.metadata.docs.rs]
features = ["std", "cgmath", "glam", "nalgebra", "serde"]
[[test]]
name = "cgmath"
path = "tests/cgmath.rs"
[[test]]
name = "integ"
path = "tests/integ.rs"
[[test]]
name = "nalgebra"
path = "tests/nalgebra.rs"