-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (41 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
50 lines (41 loc) · 1.13 KB
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
47
48
49
50
[package]
name = "ndarray-stats"
version = "0.7.0"
authors = [
"Jim Turner <ndarray-stats@turner.link>",
"LukeMathWalker <rust@lpalmieri.com>",
]
edition = "2018"
rust-version = "1.65.0"
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 the n-dimensional array data structures provided by ndarray."
keywords = ["array", "multidimensional", "statistics", "matrix", "ndarray"]
categories = ["data-structures", "science"]
[dependencies]
ndarray = "0.17.1"
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.17.1", features = ["approx"] }
criterion = "0.5.1"
quickcheck = { version = "0.9.2", default-features = false }
ndarray-rand = "0.16.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