38 lines
No EOL
782 B
TOML
38 lines
No EOL
782 B
TOML
[package]
|
|
name = "visual_haarcascades"
|
|
version = "0.1.0"
|
|
authors = ["Ruben van de Ven <git@rubenvandeven.com>"]
|
|
edition = "2018"
|
|
|
|
|
|
[features]
|
|
build-binary = ["v4l"]
|
|
|
|
[[bin]]
|
|
name = "visual_haarcascades"
|
|
path = "src/main.rs"
|
|
required-features = ["build-binary"] # https://stackoverflow.com/a/46017284
|
|
|
|
[[bin]]
|
|
name = "visual_haarcascades_test"
|
|
path = "src/test.rs"
|
|
|
|
[lib]
|
|
name = "visual_haarcascades_lib"
|
|
path = "src/lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
nannou = "0.14"
|
|
# clang-sys = "0.29.3"
|
|
v4l = {version = "0.5.1", features = ["libv4l"], optional = true}
|
|
image = "0.23"
|
|
log = "0.4"
|
|
xml-rs = "0.8.3"
|
|
simplelog = "0.8.0"
|
|
# image2 = "0.11.3" # seems deprecated and advices imaged
|
|
# rscam = "0.5.5"
|
|
roxmltree = "0.13.0"
|
|
ndarray = "0.13"
|
|
stopwatch = "0.0.7"
|
|
libc = "*" |