splines/Cargo.toml

50 lines
1.3 KiB
TOML
Raw Normal View History

2018-08-05 01:12:22 +02:00
[package]
name = "splines"
2021-03-05 02:42:39 +01:00
version = "4.0.0"
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"
2019-04-13 20:56:59 +02:00
edition = "2018"
2018-08-05 01:12:22 +02:00
[badges]
travis-ci = { repository = "phaazon/splines", branch = "master" }
is-it-maintained-issue-resolution = { repository = "phaazon/splines" }
is-it-maintained-open-issues = { repository = "phaazon/splines" }
2018-08-05 01:12:22 +02:00
maintenance = { status = "actively-developed" }
[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"]
2019-04-21 17:54:24 +02:00
serialization = ["serde", "serde_derive"]
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.15", optional = true }
nalgebra = { version = ">=0.21, <0.25", optional = true }
2019-04-17 14:16:42 +02:00
serde = { version = "1", optional = true }
serde_derive = { version = "1", 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.9"
2019-10-22 13:25:55 +02:00
serde_json = "1"
2019-09-22 19:15:57 +02:00
[package.metadata.docs.rs]
all-features = true
2019-10-22 13:25:55 +02:00
[[example]]
name = "hello-world"
[[example]]
name = "serialization"
required-features = ["serialization"]