-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathCargo.toml
More file actions
120 lines (110 loc) · 3.43 KB
/
Copy pathCargo.toml
File metadata and controls
120 lines (110 loc) · 3.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[package]
name = "ashell"
description = "A ready to go status bar for Wayland compositors"
homepage = "https://malpenzibo.github.io/ashell/"
repository = "https://github.com/MalpenZibo/ashell"
authors = ["Simone Camito (Zibo)"]
license = "GPL-3.0-or-later"
version = "0.9.0"
edition = "2024"
rust-version = "1.89"
[profile.release]
lto = "thin"
strip = true
opt-level = 3
panic = "abort"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
[package.metadata.nfpm]
provides = ["ashell"]
depends = ["libxkbcommon", "dbus"]
[package.metadata.nfpm.deb]
depends = ["libwayland-client0", "libpipewire-0.3-0t64", "libpulse0"]
[package.metadata.nfpm.rpm]
depends = ["libwayland-client", "pipewire-libs", "pulseaudio-libs"]
[dependencies]
iced = { package = "iced_layershell", git = "https://github.com/MalpenZibo/iced_layershell", tag = "v0.2.1", features = [
"tokio",
"advanced",
"wgpu",
"tiny-skia",
"image",
"svg",
"canvas",
] }
iced_anim = "0.3"
chrono = { version = "0.4", default-features = false, features = [
"clock",
"serde",
"unstable-locales",
] }
hyprland = { git = "https://github.com/hyprland-community/hyprland-rs", branch = "master" }
serde = { version = "1.0", default-features = false, features = [] }
sysinfo = { version = "0.39", features = ["linux-netdevs"] }
tokio = { version = "1", default-features = false, features = ["net"] }
zbus = { version = "5", default-features = false, features = ["tokio"] }
libpulse-binding = { version = "2.28", features = ["pa_v15"] }
log = { version = "0.4", features = [] }
flexi_logger = "0.31"
pipewire = "0.9"
itertools = "0.15"
unicode-segmentation = "1.13.2"
hex_color = { version = "3", features = ["serde"] }
anyhow = "1"
udev = { version = "0.9", features = ["send", "sync"] }
toml = "1"
freedesktop-icons = "0.4"
linicon-theme = "1.2.0"
serde_json = "1"
regex = "1.12.2"
serde_with = { version = "3.12", default-features = false, features = [
"macros",
] }
tokio-stream = { version = "0.1", default-features = false, features = [
"sync",
] }
clap = { version = "4.5", default-features = false, features = [
"std",
"derive",
"help",
] }
shellexpand = { version = "3", features = ["path"] }
inotify = { version = "0.11.1", default-features = false, features = [
"stream",
] }
pin-project-lite = "0.2.16"
niri-ipc = "26.4"
reqwest = { version = "0.13", default-features = false, features = [
"json",
"rustls",
] }
url = "2.5.7"
signal-hook = "0.4.3"
signal-hook-tokio = { version = "0.4", features = ["futures-v0_3"] }
libc = "0.2.182"
chrono-tz = "0.10.4"
wayland-client = "0.31"
wayland-protocols = { version = "0.32", features = ["client", "staging"] }
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
i18n-embed = { version = "0.16", default-features = false, features = [
"fluent-system",
"rust-embed",
] }
i18n-embed-fl = "0.10"
rust-embed = "8"
unic-langid = "0.9"
[patch.crates-io]
# Patched softbuffer that uses wl_shm Argb8888 so the tiny-skia fallback
# renderer honors alpha on Wayland (upstream hardcodes Xrgb8888, which
# makes translucent backgrounds render opaque). Pinned to a branch off
# v0.4.8 to match the release iced_tiny_skia 0.14 depends on.
softbuffer = { git = "https://github.com/MalpenZibo/softbuffer", branch = "wayland-argb" }
[build-dependencies]
allsorts = "0.17"
[package.metadata.rpm]
package = "ashell"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
ashell = { path = "/usr/bin/ashell" }