shrooms-vb-native/Cargo.toml

30 lines
627 B
TOML
Raw Normal View History

2024-11-02 20:18:41 +00:00
[package]
2024-11-07 04:55:25 +00:00
name = "shrooms-vb"
2024-11-02 20:18:41 +00:00
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
2024-11-05 05:07:48 +00:00
bitflags = "2"
2024-11-03 18:49:10 +00:00
bytemuck = { version = "1", features = ["derive"] }
2024-11-03 16:32:53 +00:00
clap = { version = "4", features = ["derive"] }
2024-11-04 14:59:58 +00:00
cpal = "0.15"
imgui = { version = "0.12", features = ["tables-api"] }
2024-11-02 20:18:41 +00:00
imgui-wgpu = { git = "https://github.com/Yatekii/imgui-wgpu-rs", rev = "2edd348" }
imgui-winit-support = "0.13"
2024-11-04 14:59:58 +00:00
itertools = "0.13"
2024-11-05 03:18:57 +00:00
native-dialog = "0.7"
2024-11-04 14:59:58 +00:00
num-derive = "0.4"
num-traits = "0.2"
2024-11-02 20:18:41 +00:00
pollster = "0.4"
2024-11-04 14:59:58 +00:00
rtrb = "0.3"
rubato = "0.16"
2024-11-10 20:53:14 +00:00
thread-priority = "1"
2024-11-02 20:18:41 +00:00
wgpu = "22.1"
winit = "0.30"
[build-dependencies]
2024-11-03 16:32:53 +00:00
cc = "1"
2024-11-07 04:55:25 +00:00
[profile.release]
lto = true