-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (39 loc) · 983 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
[package]
name = "petal-clustering"
version = "0.10.0"
edition = "2021"
rust-version = "1.74"
description = "A collection of clustering algorithms."
readme = "README.md"
documentation = "https://docs.rs/petal-clustering"
homepage = "https://github.com/petabi/petal-clustering"
repository = "https://github.com/petabi/petal-clustering"
license = "Apache-2.0"
keywords = [
"clustering",
"dbscan",
"optics",
"unsupervised",
"machine-learning",
]
categories = ["algorithms", "data-structures"]
authors = ["Min Kim <msk@dolbo.net>", "Min Shao <min.shao1988@gmail.com>"]
exclude = ["./github"]
[badges]
codecov = { repository = "petabi/petal-clustering", service = "github" }
[dependencies]
ndarray = "0.16"
num-traits = "0.2"
petal-neighbors = "0.11.0"
rayon = "1"
serde = { version = "1", features = ["derive"] }
succinct = "0.5"
[dev-dependencies]
approx = "0.5"
criterion = "0.5"
csv = "1.1.6"
maplit = "1"
ndarray-rand = "0.15.0"
[[bench]]
name = "main"
harness = false