forked from SaltedByte/TackleCast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (49 loc) · 1.25 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
53
[package]
name = "tacklecast"
version = "2.0.0"
edition = "2021"
[build-dependencies]
winresource = "0.1.31"
[dependencies]
bytemuck = { version = "1", features = ["derive"] }
cpal = "0.15"
crossbeam-channel = "0.5"
egui = "0.31"
egui-wgpu = "0.31"
egui-winit = "0.31"
ffmpeg-next = "8"
image = "0.25"
instant = "0.1"
pollster = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3", features = ["formatting", "local-offset", "macros"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "time"] }
wgpu = "24"
winit = "0.30"
windows = { version = "0.58", features = [
"Win32_Media_Audio",
"Win32_Media_DirectShow",
"Win32_Media_MediaFoundation",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_System_LibraryLoader",
"Win32_System_Power",
"Win32_System_Variant",
"Win32_Devices_FunctionDiscovery",
"Win32_System_Threading",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_Graphics_Direct3D12",
"Win32_Graphics_Dxgi_Common",
"Win32_Security",
] }
libloading = { version = "0.8", optional = true }
[features]
default = ["gpu-decode"]
gpu-decode = ["dep:libloading"]
[profile.release]
opt-level = 3
lto = "thin"