You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
651 B
29 lines
651 B
[package]
|
|
name = "visual_haarcascades"
|
|
version = "0.1.0"
|
|
authors = ["Ruben van de Ven <git@rubenvandeven.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "visual_haarcascades"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "visual_haarcascades_test"
|
|
path = "src/test.rs"
|
|
|
|
[dependencies]
|
|
nannou = "0.14"
|
|
# clang-sys = "0.29.3"
|
|
v4l = {version = "0.5.1", features = ["libv4l"]}
|
|
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" |