forked from atomashpolskiy/rustface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 910 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
[package]
name = "rustface"
description = "Face detection library, based on the C++ SeetaFace engine."
version = "0.1.7"
repository = "https://github.com/atomashpolskiy/rustface"
readme = "README.md"
keywords = ["face", "detection"]
categories = ["multimedia::images", "science"]
authors = ["Andrei Tomashpolskiy <[email protected]>"]
license = "BSD-2-Clause"
exclude = [
"assets/*",
]
edition = "2021"
[dependencies]
num = "0.3"
byteorder = "1.2.6"
image = { version = "0.23", default-features = false }
rayon = { version = "1.4.1", optional = true }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.88"
[dev-dependencies]
imageproc = "0.22.0"
criterion = "0.3"
[lib]
bench = false # workaround for "Unrecognized option: 'save-baseline'"
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
lto = true
[features]
default = ["rayon"]
include_default_model = [ ]