2018-08-05 01:12:22 +02:00
|
|
|
[package]
|
|
|
|
name = "splines"
|
2018-10-13 03:31:44 +02:00
|
|
|
version = "0.2.3"
|
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"]
|
2018-08-07 23:40:52 +02:00
|
|
|
serialization = ["serde", "serde_derive"]
|
2019-04-17 11:35:17 +02:00
|
|
|
std = ["num-traits/std"]
|
2018-09-30 16:11:35 +02:00
|
|
|
impl-nalgebra = ["nalgebra"]
|
|
|
|
|
2019-04-17 14:16:42 +02:00
|
|
|
[dependencies]
|
|
|
|
nalgebra = { version = ">=0.14, <0.19", optional = true }
|
|
|
|
num-traits = { version = "0.2", default-features = false }
|
|
|
|
serde = { version = "1", optional = true }
|
|
|
|
serde_derive = { version = "1", optional = true }
|