-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (58 loc) · 1.56 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (58 loc) · 1.56 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "openmeters"
version = "1.10.0"
edition = "2024"
rust-version = "1.95"
license = "GPL-3.0-or-later"
publish = false
description = "Fast and professional audio metering application for Linux."
repository = "https://github.com/httpsworldview/openmeters"
homepage = "https://github.com/httpsworldview/openmeters"
readme = "README.md"
[dependencies]
pipewire = "0.10.0"
serde_json = "1.0.150"
async-channel = "2.5"
iced_wgpu = { version = "0.14.0", default-features = false }
wgpu = { version = "27.0.1", default-features = false, features = [ "std", "wgsl", "vulkan" ] }
rustfft = "6.4.1"
realfft = "3.5"
tracing = "0.1.44"
wayland-client = "0.31.14"
[dependencies.serde]
version = "1.0.228"
features = [ "derive" ]
[dependencies.iced]
version = "0.14.0"
default-features = false
features = [ "advanced", "wgpu-bare", "wayland", "x11", "thread-pool", "web-colors" ]
[dependencies.bytemuck]
version = "1.25.0"
features = [ "derive" ]
[dependencies.tracing-subscriber]
version = "0.3.23"
default-features = false
features = [ "env-filter", "fmt" ]
[dependencies.iced_layershell]
version = "0.18.1"
default-features = false
[patch.crates-io.iced_layershell]
git = "https://github.com/httpsworldview/exwlshelleventloop"
rev = "49c4b9bd21b6d800b1dfb73fbf58d52822e272bc"
[dev-dependencies]
ebur128 = "0.1.10"
tempfile = "3.27.0"
[profile.dev]
opt-level = 1
[profile.release]
lto = "thin"
codegen-units = 1
opt-level = 3
strip = true
panic = "abort"
[profile.profiling]
inherits = "release"
lto = "off"
codegen-units = 8
strip = "none"
debug = 2