-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
63 lines (55 loc) · 1.39 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
59
60
61
62
63
[package]
name = "pico-detect"
version = "0.5.0"
authors = ["Rostyslav Bohomaz <[email protected]>"]
edition = "2018"
keywords = ["pico", "detection", "localization", "prediction"]
categories = ["computer-vision", "wasm"]
license = "MIT"
description = "Pixel Intensity Comparison-based Object (PICO) detection library."
repository = "https://github.com/rostyq/pico-detect"
readme = "README.md"
exclude = [
"assets",
"tests",
"models",
"examples",
".gitattributes"
]
[lib]
name = "pico_detect"
bench = false
[dependencies]
nalgebra = { version = "0.32.1", default-features = false, features = [ "std" ] }
image = { version = "0.25.1", default-features = false }
imageproc = { version = "0.24.0", default-features = false }
rand = "0.8.5"
similarity-least-squares = "0.2.0"
rand_xoshiro = "0.6.0"
derive_builder = "0.12.0"
pixelutil-image = "0.1"
thiserror = "1.0"
[dev-dependencies]
image = "0.25.1"
imageproc = "0.24.0"
criterion = "0.4.0"
approx = "0.5.0"
rstest = "0.17.0"
clap = { version = "4.1.8", features = ["derive"] }
anyhow = "1.0"
ab_glyph = "0.2.23"
[dev-dependencies.cargo-husky]
version = "1.5.0"
features = ["precommit-hook", "run-cargo-clippy"]
[[bench]]
name = "pico_detect_bench"
harness = false
path = "benches/lib.rs"
[[example]]
name = "detect-faces"
path = "examples/detect-faces/main.rs"
# uncomment for debugging
# [profile.release]
# debug = true
[profile.bench]
lto = true