-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
42 lines (32 loc) · 1001 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "whittaker-eilers"
version = "0.2.0"
edition = "2021"
description = "A sparse matrix implementation of Whittaker-Eilers smoothing and interpolation"
authors = ["Andrew Bowell <[email protected]>"]
license = "MIT OR Apache-2.0"
exclude = ["target/*", "whittaker-eilers-py/*"]
keywords = ["smoothing", "interpolation", "filter", "signal-processing"]
categories = ["algorithms", "mathematics", "science"]
repository = "https://github.com/AnBowell/whittaker-eilers"
homepage = "https://github.com/AnBowell/whittaker-eilers"
documentation = "https://docs.rs/whittaker-eilers/latest/whittaker_eilers/"
readme = "README.md"
[dependencies]
sprs = "0.11.2"
sprs-ldl = "0.10.0"
nalgebra = "0.33.2"
rayon = { version = "1.10.0", optional = true }
[dev-dependencies]
plotly = "0.10.0"
approx = "0.5.1"
criterion = "0.5.1"
rand = "0.8.5"
rand_distr = "0.4.3"
[[bench]]
name = "whittaker"
harness = false
[workspace]
members = ["whittaker-eilers-py"]
[features]
rayon = ["dep:rayon"]