-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (29 loc) · 942 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
[package]
name = "video_sentry"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dlib-face-recognition = { version = "0.3.0", features = ["embed-all"] }
image = "0.24.6"
clap = "4.2.7"
dotenvy = "0.15"
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "sqlite", "macros", "migrate" ] }
tokio = { version = "1.20.0", features = ["macros"]}
serde_json = "1.0"
regex = "1"
colored = "2.0.0"
spinners = "4.1.0"
debug_print = "1.0.0"
egui = "0.21.0"
eframe = "0.21.3"
env_logger = "0.10.0"
egui_extras = { version = "0.21.0", features = ["image"] }
ffmpeg-next = "6.0.0"
[dependencies.uuid]
version = "1.3.3"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]