30 lines
627 B
TOML
30 lines
627 B
TOML
[package]
|
|
name = "shrooms-vb"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bitflags = "2"
|
|
bytemuck = { version = "1", features = ["derive"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
cpal = "0.15"
|
|
imgui = { version = "0.12", features = ["tables-api"] }
|
|
imgui-wgpu = { git = "https://github.com/Yatekii/imgui-wgpu-rs", rev = "2edd348" }
|
|
imgui-winit-support = "0.13"
|
|
itertools = "0.13"
|
|
native-dialog = "0.7"
|
|
num-derive = "0.4"
|
|
num-traits = "0.2"
|
|
pollster = "0.4"
|
|
rtrb = "0.3"
|
|
rubato = "0.16"
|
|
thread-priority = "1"
|
|
wgpu = "22.1"
|
|
winit = "0.30"
|
|
|
|
[build-dependencies]
|
|
cc = "1"
|
|
|
|
[profile.release]
|
|
lto = true |