-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
46 lines (37 loc) · 1.1 KB
/
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
45
46
[package]
name = "ndarray-stats"
version = "0.6.0"
authors = ["Jim Turner <[email protected]>", "LukeMathWalker <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-ndarray/ndarray-stats"
documentation = "https://docs.rs/ndarray-stats/"
readme = "README.md"
description = "Statistical routines for ArrayBase, the n-dimensional array data structure provided by ndarray."
keywords = ["array", "multidimensional", "statistics", "matrix", "ndarray"]
categories = ["data-structures", "science"]
[dependencies]
ndarray = "0.16.0"
noisy_float = "0.2.0"
num-integer = "0.1"
num-traits = "0.2"
rand = "0.8.3"
itertools = { version = "0.13", default-features = false }
indexmap = "2.4"
[dev-dependencies]
ndarray = { version = "0.16.1", features = ["approx"] }
criterion = "0.3"
quickcheck = { version = "0.9.2", default-features = false }
ndarray-rand = "0.15.0"
approx = "0.5"
quickcheck_macros = "1.0.0"
num-bigint = "0.4.0"
[[bench]]
name = "sort"
harness = false
[[bench]]
name = "summary_statistics"
harness = false
[[bench]]
name = "deviation"
harness = false