blob: ab677e8b40dd3867ab937505b060b1a768accd1d (
plain)
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
|
[package]
name = "weareclient"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "weareplaying"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.97"
audiopus = "0.2.0"
clap = { version = "4.5.32", features = ["derive"] }
cpal = "0.15.3"
env_logger = "0.11.7"
log = "0.4.26"
pollster = "0.4.0"
# wgpu = "23.0.1" # Switch back when deadlock fix is upstream
wgpu = { git = "https://github.com/metamuffin/wgpu", rev = "a9189e0" }
winit = "0.30.9"
weareshared = { path = "../shared" }
rand = "0.9.0"
glam = { version = "0.30.0", features = ["bytemuck"] }
image = "0.25.5"
egui-wgpu = "0.31.1"
egui = { version = "0.31.1", features = ["bytemuck"] }
bytemuck = "1.22.0"
xdg = "2.5.2"
nnnoiseless = "0.5.1"
humansize = "2.1.3"
rayon = "1.10.0"
parking_lot = "0.12.3"
[features]
deadlock_detection = ["parking_lot/deadlock_detection"]
|