-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
38 lines (31 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
[package]
name = "mosse"
version = "0.1.0"
edition = "2021"
authors = ["Jurriaan Barkey Wolf <jjhbarkeywolf@gmail.com>"]
description = "A proof-of-concept implementation of the MOSSE video object tracking algorithm by Bolme et al."
repository = "https://github.com/jjhbw/mosse-tracker"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["rayon"]
rayon = ["imageproc/rayon", "image/jpeg_rayon"]
[dependencies]
image = { version = "0.24.2", default-features = false, features = [
"png",
"jpeg",
] }
rustfft = "6.0.1"
imageproc = { version = "0.23.0", default-features = false }
# for font rendering on output/debug frames (same version as imageproc uses)
rusttype = "0.9.2"
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = { version = "0.2" }
[dev-dependencies]
anyhow = "1.0.65"
env_logger = "0.9.1"
log = "0.4.17"
time = "0.3.11"
[profile.release]
lto = true