-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (53 loc) · 1.35 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "mixxc"
version = "0.2.3"
authors = ["Elvyria <[email protected]>"]
description = "Minimalistic volume mixer."
repository = "https://github.com/Elvyria/mixxc"
license = "MIT"
edition = "2021"
[features]
Wayland = ["dep:gtk4-layer-shell"]
Sass = ["dep:grass"]
X11 = ["dep:x11rb", "dep:gdk-x11"]
PipeWire = []
Accent = ["dep:zbus"]
[dependencies]
argh = "0.1"
bitflags = "2.6"
color-print = "0.3.6"
derive_more = { version = "1", features = ["deref", "deref_mut", "from", "debug"] }
enum_dispatch = "0.3"
glib = "0.20"
grass = { version = "0.13", package = "grass_compiler", optional = true }
gtk = { version = "0.9", package = "gtk4" }
gtk4-layer-shell = { version = "0.4", optional = true }
num-traits = "0.2"
parking_lot = "0.12.3"
smallvec = { version = "1.13", features = ["union"] }
thiserror = "1.0"
tokio = { version = "1.40", features = ["time", "macros"] }
tokio-util = "0.7.12"
tracker = "0.2"
[dependencies.x11rb]
version = "0.13"
optional = true
features = ["xinerama"]
[dependencies.gdk-x11]
package = "gdk4-x11"
version = "0.9"
optional = true
features = ["xlib"]
[dependencies.relm4]
version = "0.9.1"
default-features = false
features = ["macros"]
[dependencies.libpulse-binding]
version = "2.28"
default-features = false
features = ["pa_v8"]
[dependencies.zbus]
version = "5"
default-features = false
features = ["tokio"]
optional = true