shrooms-vb-native/Cargo.toml

25 lines
505 B
TOML
Raw Normal View History

2024-11-02 20:18:41 +00:00
[package]
name = "shrooms-vb-native"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
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"
2024-11-02 20:18:41 +00:00
imgui = "0.12"
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"
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-02 20:18:41 +00:00
wgpu = "22.1"
winit = "0.30"
[build-dependencies]
2024-11-03 16:32:53 +00:00
cc = "1"