forked from rust-ml/linfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (38 loc) · 1.02 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
47
[package]
name = "linfa-nn"
version = "0.7.0"
authors = ["YuhanLiin <[email protected]>"]
edition = "2018"
description = "A collection of nearest neighbour algorithms"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ml/linfa/"
readme = "README.md"
keywords = ["nearest-neighbour", "machine-learning", "linfa"]
categories = ["algorithms", "mathematics", "science"]
[features]
default = []
serde = ["serde_crate", "ndarray/serde"]
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
default-features = false
features = ["std", "derive"]
[dependencies]
ndarray = { version = "0.15", features = ["approx"]}
ndarray-stats = "0.5"
num-traits = "0.2.0"
noisy_float = "0.2.0"
order-stat = "0.1.3"
thiserror = "1.0"
kdtree = "0.6.0"
linfa = { version = "0.7.0", path = "../.." }
[dev-dependencies]
approx = "0.4"
criterion = "0.4.0"
rand_xoshiro = "0.6"
ndarray-rand = "0.14"
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] }
[[bench]]
name = "nn"
harness = false