2018-08-05 01:12:22 +02:00
|
|
|
[package]
|
|
|
|
name = "splines"
|
2019-09-22 19:15:57 +02:00
|
|
|
version = "1.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"]
|
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"
|
|
|
|
|
2019-04-13 20:56:59 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
2018-08-05 01:12:22 +02:00
|
|
|
[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]
|
2019-04-17 14:16:42 +02:00
|
|
|
default = ["std"]
|
2019-09-23 17:06:32 +02:00
|
|
|
bezier = []
|
2019-04-19 15:45:27 +02:00
|
|
|
impl-cgmath = ["cgmath"]
|
2019-04-21 17:54:24 +02:00
|
|
|
impl-nalgebra = ["alga", "nalgebra", "num-traits"]
|
|
|
|
serialization = ["serde", "serde_derive"]
|
|
|
|
std = []
|
2018-09-30 16:11:35 +02:00
|
|
|
|
2019-04-17 14:16:42 +02:00
|
|
|
[dependencies]
|
2019-04-21 17:54:24 +02:00
|
|
|
alga = { version = "0.9", optional = true }
|
2019-04-21 19:05:51 +02:00
|
|
|
cgmath = { version = "0.17", optional = true }
|
2019-04-17 14:16:42 +02:00
|
|
|
nalgebra = { version = ">=0.14, <0.19", optional = true }
|
2019-04-21 17:54:24 +02:00
|
|
|
num-traits = { version = "0.2", 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
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|