splines/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2018-08-05 01:12:22 +02:00
[package]
name = "splines"
2023-11-22 19:10:19 +01:00
version = "4.3.1"
2018-08-05 01:12:22 +02:00
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <dimitri.sabadie@gmail.com>"]
description = "Spline interpolation made easy"
keywords = ["spline", "interpolation"]
categories = ["science"]
homepage = "https://github.com/phaazon/splines"
repository = "https://github.com/phaazon/splines"
documentation = "https://docs.rs/splines"
2018-08-05 01:12:22 +02:00
readme = "README.md"
2022-03-22 16:14:28 +01:00
edition = "2021"
2019-04-13 20:56:59 +02:00
[features]
2019-04-17 14:16:42 +02:00
default = ["std"]
impl-cgmath = ["cgmath"]
2020-10-19 18:35:56 +02:00
impl-glam = ["glam"]
impl-nalgebra = ["nalgebra"]
serialization = ["serde"]
2024-01-05 15:50:26 +01:00
std = ["nalgebra/std"]
2019-04-17 14:16:42 +02:00
[dependencies]
2021-02-27 22:42:12 +01:00
cgmath = { version = ">=0.17, <0.19", optional = true }
glam = { version = ">=0.10, <0.25", optional = true }
2024-01-05 15:50:26 +01:00
nalgebra = { version = ">=0.21, <0.33", default-features = false, optional = true }
serde = { version = "1", features = ["derive"], optional = true }
2019-09-22 19:15:57 +02:00
2019-10-22 13:25:55 +02:00
[dev-dependencies]
float-cmp = ">=0.6, < 0.10"
2019-10-22 13:25:55 +02:00
serde_json = "1"
2019-09-22 19:15:57 +02:00
[package.metadata.docs.rs]
features = ["std", "cgmath", "glam", "nalgebra", "serde"]
2019-10-22 13:25:55 +02:00
[[example]]
name = "hello-world"
[[example]]
name = "serialization"
required-features = ["serde"]