-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
44 lines (35 loc) · 942 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
43
44
[package]
name = "ndarray-interp"
version = "0.5.0"
edition = "2021"
license = "MIT"
description = "Interpolation package for ndarray"
repository = "https://github.com/jonasBoss/ndarray-interp"
keywords = ["interpolation", "multidimensional", "linear", "bilinear", "cubic-spline"]
categories = ["science", "algorithms", "mathematics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ndarray = "0.16"
num-traits = "0.2"
thiserror = "1.0"
[dev-dependencies]
cargo-tarpaulin = "0.27"
ndarray = {version = "0.16", features = ["approx", "rayon"] }
approx = "0.5"
criterion = "0.5"
rand = "0.8"
[[bench]]
name = "bench_vector_extensions"
harness = false
[[bench]]
name = "bench_interp1d"
harness = false
[[bench]]
name = "bench_interp1d_query_dim"
harness = false
[[bench]]
name = "bench_interp2d"
harness = false
[[bench]]
name = "bench_interp2d_query_dim"
harness = false