2022-08-14 16:30:13 +03:00
|
|
|
[package]
|
|
|
|
name = "ironbar"
|
2023-08-30 00:49:26 +03:00
|
|
|
version = "0.14.0-pre"
|
2022-08-14 16:30:13 +03:00
|
|
|
edition = "2021"
|
2022-08-14 16:55:03 +03:00
|
|
|
license = "MIT"
|
2022-11-02 01:56:47 +03:00
|
|
|
description = "Customisable GTK Layer Shell wlroots/sway bar"
|
2023-06-23 01:06:45 +03:00
|
|
|
repository = "https://github.com/jakestanger/ironbar"
|
2023-08-11 23:15:45 +03:00
|
|
|
categories = ["gui"]
|
2023-07-30 00:00:24 +03:00
|
|
|
keywords = ["gtk", "bar", "wayland", "wlroots", "gtk-layer-shell"]
|
2022-08-14 16:30:13 +03:00
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
[features]
|
|
|
|
default = [
|
2023-06-23 01:06:45 +03:00
|
|
|
"cli",
|
|
|
|
"ipc",
|
2023-02-01 23:42:05 +03:00
|
|
|
"http",
|
|
|
|
"config+all",
|
2023-02-25 17:30:45 +03:00
|
|
|
"clipboard",
|
2023-02-01 23:42:05 +03:00
|
|
|
"clock",
|
|
|
|
"music+all",
|
|
|
|
"sys_info",
|
|
|
|
"tray",
|
2023-03-18 23:46:49 +03:00
|
|
|
"upower",
|
2023-02-01 23:42:05 +03:00
|
|
|
"workspaces+all"
|
|
|
|
]
|
2023-06-23 01:06:45 +03:00
|
|
|
|
|
|
|
cli = ["dep:clap", "ipc"]
|
|
|
|
ipc = ["dep:serde_json"]
|
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
http = ["dep:reqwest"]
|
|
|
|
|
2023-06-29 21:20:10 +03:00
|
|
|
"config+all" = [
|
|
|
|
"config+json",
|
|
|
|
"config+yaml",
|
|
|
|
"config+toml",
|
|
|
|
"config+corn",
|
|
|
|
"config+ron",
|
|
|
|
]
|
2023-03-19 19:17:31 +03:00
|
|
|
"config+json" = ["universal-config/json"]
|
|
|
|
"config+yaml" = ["universal-config/yaml"]
|
|
|
|
"config+toml" = ["universal-config/toml"]
|
|
|
|
"config+corn" = ["universal-config/corn"]
|
2023-05-03 22:15:37 +03:00
|
|
|
"config+ron" = ["universal-config/ron"]
|
2023-02-01 23:42:05 +03:00
|
|
|
|
2023-02-25 17:30:45 +03:00
|
|
|
clipboard = ["nix"]
|
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
clock = ["chrono"]
|
|
|
|
|
|
|
|
music = ["regex"]
|
|
|
|
"music+all" = ["music", "music+mpris", "music+mpd"]
|
|
|
|
"music+mpris" = ["music", "mpris"]
|
|
|
|
"music+mpd" = ["music", "mpd_client"]
|
|
|
|
|
|
|
|
sys_info = ["sysinfo", "regex"]
|
|
|
|
|
2023-08-13 17:11:29 +03:00
|
|
|
tray = ["system-tray"]
|
2023-02-01 23:42:05 +03:00
|
|
|
|
2023-06-23 01:06:45 +03:00
|
|
|
upower = ["upower_dbus", "zbus", "futures-lite"]
|
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
workspaces = ["futures-util"]
|
|
|
|
"workspaces+all" = ["workspaces", "workspaces+sway", "workspaces+hyprland"]
|
|
|
|
"workspaces+sway" = ["workspaces", "swayipc-async"]
|
|
|
|
"workspaces+hyprland" = ["workspaces", "hyprland"]
|
|
|
|
|
2022-08-14 16:30:13 +03:00
|
|
|
[dependencies]
|
2023-02-01 23:42:05 +03:00
|
|
|
# core
|
2023-03-19 03:14:59 +03:00
|
|
|
gtk = "0.17.0"
|
|
|
|
gtk-layer-shell = "0.6.0"
|
2023-06-12 18:03:53 +03:00
|
|
|
glib = "0.17.10"
|
2023-10-09 17:14:18 +03:00
|
|
|
tokio = { version = "1.33.0", features = [
|
2023-06-29 21:20:10 +03:00
|
|
|
"macros",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"time",
|
|
|
|
"process",
|
|
|
|
"sync",
|
|
|
|
"io-util",
|
|
|
|
"net",
|
|
|
|
] }
|
2023-10-23 17:09:04 +03:00
|
|
|
tracing = "0.1.40"
|
2023-05-29 18:25:15 +03:00
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
2022-08-22 01:36:07 +03:00
|
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing-appender = "0.2.2"
|
2023-08-14 17:49:32 +03:00
|
|
|
strip-ansi-escapes = "0.2.0"
|
2022-08-22 01:36:07 +03:00
|
|
|
color-eyre = "0.6.2"
|
2023-10-16 17:58:11 +03:00
|
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
2023-10-02 17:38:19 +03:00
|
|
|
indexmap = "2.0.2"
|
2023-05-26 21:50:02 +03:00
|
|
|
dirs = "5.0.1"
|
2023-09-11 23:35:49 +03:00
|
|
|
walkdir = "2.4.0"
|
2023-08-28 17:29:26 +03:00
|
|
|
notify = { version = "6.1.1", default-features = false }
|
2023-06-05 18:04:15 +03:00
|
|
|
wayland-client = "0.30.2"
|
2023-07-17 17:49:10 +03:00
|
|
|
wayland-protocols = { version = "0.30.1", features = ["unstable", "client"] }
|
2023-04-30 00:08:02 +03:00
|
|
|
wayland-protocols-wlr = { version = "0.1.0", features = ["client"] }
|
2023-06-29 21:20:10 +03:00
|
|
|
smithay-client-toolkit = { version = "0.17.0", default-features = false, features = [
|
|
|
|
"calloop",
|
|
|
|
] }
|
2023-08-30 23:37:46 +03:00
|
|
|
universal-config = { version = "0.4.3", default_features = false }
|
2023-09-04 17:56:47 +03:00
|
|
|
ctrlc = "3.4.1"
|
2023-02-25 17:30:45 +03:00
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
async_once = "0.2.6"
|
|
|
|
cfg-if = "1.0.0"
|
|
|
|
|
2023-06-23 01:06:45 +03:00
|
|
|
# cli
|
2023-10-30 17:45:04 +03:00
|
|
|
clap = { version = "4.4.7", optional = true, features = ["derive"] }
|
2023-06-23 01:06:45 +03:00
|
|
|
|
|
|
|
# ipc
|
2023-09-18 17:27:13 +03:00
|
|
|
serde_json = { version = "1.0.107", optional = true }
|
2023-06-23 01:06:45 +03:00
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
# http
|
2023-10-09 17:15:07 +03:00
|
|
|
reqwest = { version = "0.11.22", optional = true }
|
2023-02-01 23:42:05 +03:00
|
|
|
|
2023-02-25 17:30:45 +03:00
|
|
|
# clipboard
|
2023-09-04 21:43:49 +03:00
|
|
|
nix = { version = "0.27.1", optional = true, features = ["event"] }
|
2023-02-25 17:30:45 +03:00
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
# clock
|
2023-09-18 17:28:54 +03:00
|
|
|
chrono = { version = "0.4.31", optional = true, features = ["unstable-locales"] }
|
2023-02-01 23:42:05 +03:00
|
|
|
|
|
|
|
# music
|
2023-10-30 17:45:24 +03:00
|
|
|
mpd_client = { version = "1.3.0", optional = true }
|
2023-06-26 18:05:17 +03:00
|
|
|
mpris = { version = "2.0.1", optional = true }
|
2023-02-01 23:42:05 +03:00
|
|
|
|
|
|
|
# sys_info
|
2023-09-18 17:26:43 +03:00
|
|
|
sysinfo = { version = "0.29.10", optional = true }
|
2023-02-01 23:42:05 +03:00
|
|
|
|
|
|
|
# tray
|
2023-08-13 17:11:29 +03:00
|
|
|
system-tray = { version = "0.1.4", optional = true }
|
2023-02-01 23:42:05 +03:00
|
|
|
|
2023-03-18 23:46:49 +03:00
|
|
|
# upower
|
|
|
|
upower_dbus = { version = "0.3.2", optional = true }
|
|
|
|
futures-lite = { version = "1.12.0", optional = true }
|
2023-07-03 17:47:28 +03:00
|
|
|
zbus = { version = "3.14.1", optional = true }
|
2023-03-18 23:46:49 +03:00
|
|
|
|
2023-02-01 23:42:05 +03:00
|
|
|
# workspaces
|
|
|
|
swayipc-async = { version = "2.0.1", optional = true }
|
2023-09-25 17:53:06 +03:00
|
|
|
hyprland = { version = "0.3.12", features = ["silent"], optional = true }
|
2023-10-30 17:44:54 +03:00
|
|
|
futures-util = { version = "0.3.29", optional = true }
|
2023-02-01 23:42:05 +03:00
|
|
|
|
|
|
|
# shared
|
2023-10-16 17:56:34 +03:00
|
|
|
regex = { version = "1.10.2", default-features = false, features = [
|
2023-06-29 21:20:10 +03:00
|
|
|
"std",
|
2023-08-13 17:11:29 +03:00
|
|
|
], optional = true } # music, sys_info
|