forked from Shubhamai/StableView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1.1 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
[package]
name = "StableView"
description = "A Head tracking application using only webcam"
version = "0.0.2"
edition = "2021"
authors = ["Shubhamai"]
publish = false # To prevent accidental publish on crates.io
license = "MIT"
repository = "https://github.com/Shubhamai/StableView"
homepage = "https://github.com/Shubhamai/StableView"
readme = "README.md"
[dependencies]
opencv = {version = "0.84.5"}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
once_cell = "1.18.0"
rand = "0.8.5"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-appender = "0.2.2"
nokhwa = {version = "0.10.4", features = ["input-msmf", "input-v4l"]}
confy = "0.5.1"
directories = "5.0.0"
iced = {version = "0.10.0", features = ["image", "smol"]}
iced_native = "0.10.3"
image = "0.24.7"
onnxruntime = {git = "https://github.com/Shubhamai/onnxruntime-rs"}
crossbeam-channel = "0.5.6"
anyhow = "1.0.72"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
version-compare = "0.1"
[profile.release]
debug = 0
strip = "symbols"
overflow-checks = false
panic = "abort"
opt-level = 3 # optimizing for speed
lto = "thin"