-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 915 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 = "hide-my-mess"
description = "Virtual camera reliably crops your wonderful self out of your webcam"
authors = ["Mathieu Amiot <[email protected]>"]
version = "0.1.1"
edition = "2021"
readme = "README.md"
repository = "https://github.com/OtaK/hide-my-mess-rs"
license = "MIT/Apache-2.0"
[features]
default = ["gpu"]
gpu = ["tensorflow/tensorflow_gpu"]
[dependencies]
eyre = "0.6"
thiserror = "1.0"
log = "0.4"
pretty_env_logger = "0.4"
tensorflow = "0.17"
clap = { version = "3.0", features = ["derive"] }
nokhwa = { version = "0.10", features = ["input-v4l"] }
image = "0.24"
v4l = "0.12"
dirs = "4.0"
zip = "0.5"
attohttpc = "0.18"
[patch.crates-io.nokhwa]
git = "https://github.com/l1npengtul/nokhwa"
rev = "043d326583c1ea82e0e8f6f62a267cea954a751a"
# [dependencies.nokhwa]
# version = "0.10"
# features = ["input-v4l", "input-msmf", "input-avfoundation"]
[profile.release]
lto = true