# 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 = "splines" version = "4.4.0" authors = ["Dimitri Sabadie "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Spline interpolation made easy" homepage = "https://github.com/hadronized/splines" documentation = "https://docs.rs/splines" readme = "README.md" keywords = [ "spline", "interpolation", ] categories = ["science"] license = "BSD-3-Clause" repository = "https://github.com/hadronized/splines" [package.metadata.docs.rs] features = [ "std", "cgmath", "glam", "nalgebra", "serde", ] [lib] name = "splines" path = "src/lib.rs" [[example]] name = "hello-world" path = "examples/hello-world.rs" [[example]] name = "serialization" path = "examples/serialization.rs" required-features = ["serde"] [[test]] name = "cgmath" path = "tests/cgmath.rs" [[test]] name = "integ" path = "tests/integ.rs" [[test]] name = "nalgebra" path = "tests/nalgebra.rs" [dependencies.cgmath] version = ">=0.17, <0.19" optional = true [dependencies.glam] version = ">=0.10, <0.30" optional = true [dependencies.nalgebra] version = ">=0.21, <0.34" optional = true [dependencies.serde] version = "1" features = ["derive"] optional = true [dev-dependencies.float-cmp] version = ">=0.6, < 0.11" [dev-dependencies.serde_json] version = "1" [features] default = ["std"] impl-cgmath = ["cgmath"] impl-glam = ["glam"] impl-nalgebra = ["nalgebra"] serialization = ["serde"] std = []