generated from TornaxO7/rust-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (36 loc) · 931 Bytes
/
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
[package]
name = "vibe-daemon"
version = "0.0.1"
edition = "2021"
authors = ["TornaxO7 <[email protected]>"]
description = "A desktop music visualizer"
license = "GPL-2.0"
repository = "https://github.com/TornaxO7/vibe"
[dependencies]
anyhow = "1"
bytemuck = "1.21"
pollster = "0.4"
raw-window-handle = "0.6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
wayland-client = "0.31"
wayland-backend = { version = "0.3", features = ["client_system"] }
smithay-client-toolkit = "0.19"
wgpu = { version = "24.0", default-features = false, features = [
"wgsl",
"glsl",
"naga-ir",
"serde",
] }
xdg = "2.5"
shady = { version = "6.0", default-features = false, features = [
"audio",
"time",
"resolution",
] }
toml = { version = "0.8", features = ["parse", "display"] }
serde = { version = "1", features = ["derive"] }
[profile.release-lto]
inherits = "release"
codegen-units = 1
lto = true