lemur/Cargo.toml

36 lines
752 B
TOML
Raw Normal View History

2024-11-02 20:18:41 +00:00
[package]
2024-12-08 19:49:54 +00:00
name = "lemur"
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"] }
cpal = { git = "https://github.com/sidit77/cpal.git", rev = "66ed6be" }
2024-11-26 05:38:03 +00:00
egui = "0.29"
egui_extras = "0.29"
egui-winit = "0.29"
egui-wgpu = { version = "0.29", features = ["winit"] }
2024-11-19 03:49:56 +00:00
gilrs = "0.11"
2024-11-04 14:59:58 +00:00
itertools = "0.13"
num-derive = "0.4"
num-traits = "0.2"
oneshot = "0.1"
2024-11-02 20:18:41 +00:00
pollster = "0.4"
2024-11-26 05:38:03 +00:00
rfd = "0.15"
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-26 05:38:03 +00:00
wgpu = "22.1"
2024-11-02 20:18:41 +00:00
winit = "0.30"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = ["Win32_System_Threading"] }
2024-11-02 20:18:41 +00:00
[build-dependencies]
2024-11-03 16:32:53 +00:00
cc = "1"
2024-11-07 04:55:25 +00:00
[profile.release]
lto = true