-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (43 loc) · 1.5 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (43 loc) · 1.5 KB
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
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "unknown_studio"
version = "0.1.0"
edition = "2024"
[dependencies]
eframe = "0.27"
# action_engine
base64 = "0.22"
# FFmpeg 8 (vcpkg) compatible; 7.0 fails against FFmpeg 8 (avfft.h removed).
ffmpeg-next = "8.1"
reqwest = { version = "0.12", features = ["blocking", "json", "multipart"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# JSON Schema generated from the Rust types the model must return, so the
# schema and the struct cannot drift apart.
schemars = "0.8"
tokio = { version = "1", features = ["fs", "io-util", "macros", "process", "rt", "rt-multi-thread", "sync", "time"] }
uuid = { version = "1.8", features = ["v4"] }
# media ingest
rfd = "0.14"
# audio_engine
cpal = "0.15"
egui-phosphor = "0.5"
directories = "5"
thiserror = "2.0.19"
dotenvy = "0.15.7"
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
futures-util = "0.3.33"
# visual_analysis — needs a system OpenCV build, so it is opt-in:
# cargo build --features visual-analysis
opencv = { version = "0.93", optional = true, default-features = false, features = ["videoio", "imgproc"] }
# audio_analysis — needs a whisper.cpp build, so it is opt-in:
# cargo build --features audio-analysis
whisper-rs = { version = "0.14", optional = true }
[features]
default = []
visual-analysis = ["dep:opencv"]
audio-analysis = ["dep:whisper-rs"]
# Decode/analysis hot loops are unusably slow in an unoptimized debug build.
[profile.dev]
opt-level = 2
[profile.dev.package."*"]
opt-level = 3