-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 1009 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
44
45
[package]
name = "ckmeans"
description = "A Rust implementation of Wang and Song's Ckmeans clustering algorithm"
version = "1.1.0"
edition = "2021"
license = "BlueOak-1.0.0"
repository = "https://github.com/urschrei/ckmeans"
documentation = "https://docs.rs/ckmeans"
readme = "README.md"
keywords = ["gis", "geo", "spatial", "clustering"]
autobenches = true
rust-version = "1.70"
categories = ["science::geo"]
[badges]
maintenance = { status = "passively-maintained" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
headers = ["cbindgen"]
[dependencies]
js-sys = "0.3.64"
libc = "0.2.147"
num-traits = "0.2.16"
wasm-bindgen = "0.2"
[dev-dependencies]
criterion = "0.5.1"
rand = "0.8.5"
rand_distr = "0.4.3"
[build-dependencies]
cbindgen = { version = "0.24.5", default-features=false, optional = true }
[[bench]]
name = "benchmark"
harness = false
[lib]
name = "ckmeans"
crate-type = ["rlib", "cdylib"]
test = true
doctest = true
doc = true