-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
39 lines (31 loc) · 861 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
[package]
name = "plr"
description = "Performs greedy or optimal error-bounded piecewise linear regression (PLR) and spline regression"
repository = "https://github.com/RyanMarcus/plr"
keywords = ["plr", "piecewise", "regression"]
license = "GPL-3.0-or-later"
version = "0.3.1"
authors = ["Ryan Marcus <[email protected]>"]
edition = "2018"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
approx = "0.3"
rug = "1.6"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
criterion = "0.3"
superslice = "1.0.0"
#[profile.release]
#debug = true
[badges]
travis-ci = { repository = "RyanMarcus/plr", branch = "master" }
#[[bin]]
#name = "plr"
#path = "src/bin.rs"
[[bench]]
name = "plr_bench"
harness = false
[[bench]]
name = "spline_bench"
harness = false