2018-08-05 01:12:22 +02:00
|
|
|
[package]
|
|
|
|
name = "splines"
|
2018-09-30 21:38:49 +02:00
|
|
|
version = "0.2.2"
|
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"]
|
2018-08-05 18:28:46 +02:00
|
|
|
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"
|
|
|
|
|
|
|
|
[badges]
|
2018-08-05 18:28:46 +02:00
|
|
|
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" }
|
|
|
|
|
2018-08-07 23:40:52 +02:00
|
|
|
[features]
|
2018-09-06 15:16:55 +02:00
|
|
|
default = ["std", "impl-cgmath"]
|
2018-08-07 23:40:52 +02:00
|
|
|
serialization = ["serde", "serde_derive"]
|
2018-08-09 01:23:45 +02:00
|
|
|
std = []
|
2018-09-06 15:16:55 +02:00
|
|
|
impl-cgmath = ["cgmath"]
|
2018-10-01 03:17:36 +02:00
|
|
|
impl-nalgebra = ["nalgebra"]
|
2018-09-29 19:03:37 +02:00
|
|
|
|
|
|
|
[dependencies.nalgebra]
|
2018-09-30 16:11:35 +02:00
|
|
|
version = "0.14"
|
2018-09-29 19:03:37 +02:00
|
|
|
optional = true
|
2018-08-07 23:40:52 +02:00
|
|
|
|
2018-09-06 15:16:55 +02:00
|
|
|
[dependencies.cgmath]
|
|
|
|
version = "0.16"
|
|
|
|
optional = true
|
2018-08-07 23:40:52 +02:00
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.serde_derive]
|
|
|
|
version = "1"
|
|
|
|
optional = true
|