summaryrefslogtreecommitdiff
path: root/client/Cargo.toml
blob: d73c28259238fc2319f93bce124ddb0f366b5345 (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.95"
audiopus = "0.2.0"
clap = { version = "4.5.23", features = ["derive"] }
cpal = "0.15.3"
env_logger = "0.11.6"
log = "0.4.22"
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.8"
weareshared = { path = "../shared" }
rand = "0.9.0-beta.1"
glam = { version = "0.29.2", features = ["bytemuck"] }
image = "0.25.5"
egui-wgpu = "0.30.0"
egui = { version = "0.30.0", features = ["bytemuck"] }
bytemuck = "1.21.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"]