-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
42 lines (35 loc) · 846 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
[package]
name = "kmeans"
version = "1.1.0"
authors = ["Markus Ebner <[email protected]>"]
edition = "2021"
description = "Small and fast library for k-means clustering calculations."
repository = "https://github.com/seijikun/kmean-rs"
readme = "README.md"
license = "Apache-2.0"
keywords = ["kmeans", "k-means", "means", "cluster", "clustering"]
categories = ["algorithms", "science"]
exclude = ["examples/*"]
[dependencies]
rayon = "1.10.0"
rand = "0.8.5"
num = "0.4.3"
num-traits = "0.2.19"
aligned-vec = "0.6"
[lib]
name = "kmeans"
path = "src/lib.rs"
[[example]]
name = "lloyd"
path = "examples/lloyd.rs"
[[example]]
name = "minibatch"
path = "examples/minibatch.rs"
[[example]]
name = "status_events"
path = "examples/status_events.rs"
[profile.profiling]
inherits = "release"
debug = "full"
strip = "none"
incremental = false