-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (48 loc) · 1.26 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
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "simple_clustering"
version = "0.2.0"
edition = "2021"
exclude = ["gfx", ".github"]
description = "Implementations of image clustering and segmentation algorithms such as SLIC and SNIC."
homepage = "https://github.com/okaneco/simple_clustering"
repository = "https://github.com/okaneco/simple_clustering"
readme = "README.md"
keywords = ["clustering", "superpixel", "image", "segmentation", "segments"]
categories = ["computer-vision", "multimedia::images", "mathematics"]
license = "MIT OR Apache-2.0"
[features]
# Use default-features=false if using as a library
default = ["app"]
# Features required for building the binary
app = [
"clap",
"image",
]
[dependencies.clap]
version = "3.1.18"
default-features = false
features = ["std", "suggestions", "derive"]
optional = true
[dependencies.fxhash]
version = "0.2.1"
default-features = false
[dependencies.image]
version = "0.24.6"
default-features = false
features = ["jpeg", "png"]
optional = true
[dependencies.num-traits]
version = "0.2.15"
default-features = false
features = ["std"]
[dependencies.palette]
version = "0.7.2"
default-features = false
features = ["std"]
[profile.release]
codegen-units = 1
strip = true
[package.metadata.docs.rs]
no-default-features = true
features = [""]
targets = []