-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.13 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "coffeevis"
version = "0.5.0"
edition = "2021"
authors = ["Cas Pascal <casboi86@gmail.com>"]
description = "Personal graphical/console music visualizer for Linux."
license = "MIT"
keywords = ["graphics", "audio", "music", "visualizer"]
repository = "https://github.com/khoidauminh/coffeevis_rs"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cpal = "0.15"
softbuffer = { version = "0.4", default-features = false }
winit = { version = "0.30", default-features = false }
qoi = "0.4.1"
minifb = { version = "0.27", optional = true }
crossterm = { version = "0.27", optional = true }
fps_clock = "2.0"
[features]
default = [
"winit/rwh_06",
"winit/wayland-csd-adwaita",
"winit/wayland",
"winit/x11",
"softbuffer/wayland",
"softbuffer/x11",
]
terminal = ["dep:crossterm"]
minifb = ["dep:minifb"]
fast_color = []
[profile.dev]
overflow-checks = false
[profile.release]
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary