-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 767 Bytes
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
[package]
name = "audio_vis"
version = "0.1.0"
edition = "2021"
authors = ["Muhammad Ragib Hasin <ragib.hasin@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
bytemuck = { version = "1.13.1", features = ["derive"] }
euclid = { version = "0.22.9", features = ["bytemuck"] }
itertools = "0.10.5"
rodio = "0.17.1"
futures-channel = "0.3.28"
image = "0.24.6"
pollster = "0.3.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
wgpu = "0.16.1"
winit = "0.28.6"
pico-args = "0.5.0"
clap = { version = "4.3.4", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
toml_edit = { version = "0.19.10", features = ["serde"] }
[profile.dev]
opt-level = 3