2018-08-05 01:12:22 +02:00
|
|
|
[package]
|
|
|
|
name = "splines"
|
|
|
|
version = "0.1.0"
|
|
|
|
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" }
|
|
|
|
|
|
|
|
[dependencies]
|
2018-08-05 17:23:30 +02:00
|
|
|
cgmath = "0.16"
|