-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (28 loc) · 927 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
[package]
name = "skeletonize"
version = "0.2.0"
authors = ["okaneco <[email protected]>"]
edition = "2018"
exclude = ["gfx", ".github"]
description = "A crate for line thinning binary images, includes edge detection and threshold functions for preprocessing."
homepage = "https://github.com/okaneco/skeletonize"
repository = "https://github.com/okaneco/skeletonize"
readme = "README.md"
keywords = ["morphology", "thinning", "edge-detection", "image-processing", "computer-vision"]
categories = ["computer-vision", "multimedia::images", "science"]
license = "MIT OR Apache-2.0"
[dependencies]
[dependencies.image]
version = "0.24.5"
default-features = false
[dev-dependencies.image]
version = "0.24.5"
default-features = false
features = ["jpeg", "png", "gif"]
[dev-dependencies.structopt]
version = "0.3"
default-features = false
[[example]]
name = "skeletonize"
[profile.release]
strip = true