[package]
edition = "2024"
name = "tablero"
version = "0.2.4"
authors = ["piny4man <development@pinya.dev>"]
build = false
include = [
"src/**",
"tests/**",
"examples/**",
"config.example.toml",
"LICENSE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, native Wayland status bar for Hyprland"
homepage = "https://github.com/piny4man/tablero"
readme = "README.md"
keywords = [
"wayland",
"hyprland",
"status-bar",
"desktop",
"linux",
]
categories = [
"gui",
"visualization",
]
license = "GPL-3.0-only"
repository = "https://github.com/piny4man/tablero"
resolver = "2"
[lib]
name = "tablero"
path = "src/lib.rs"
[[bin]]
name = "tablero"
path = "src/main.rs"
[[example]]
name = "volume-bridge"
path = "examples/volume-bridge.rs"
[[example]]
name = "volume-probe"
path = "examples/volume-probe.rs"
[[test]]
name = "backlight"
path = "tests/backlight.rs"
[[test]]
name = "battery_redraw"
path = "tests/battery_redraw.rs"
[[test]]
name = "bluetooth"
path = "tests/bluetooth.rs"
[[test]]
name = "config_render"
path = "tests/config_render.rs"
[[test]]
name = "hypridle"
path = "tests/hypridle.rs"
[[test]]
name = "hyprland_activewindow"
path = "tests/hyprland_activewindow.rs"
[[test]]
name = "hyprland_workspaces"
path = "tests/hyprland_workspaces.rs"
[[test]]
name = "networkmanager"
path = "tests/networkmanager.rs"
[[test]]
name = "notifications"
path = "tests/notifications.rs"
[[test]]
name = "power_profiles"
path = "tests/power_profiles.rs"
[[test]]
name = "producer_bridge"
path = "tests/producer_bridge.rs"
[[test]]
name = "sni_tray"
path = "tests/sni_tray.rs"
[[test]]
name = "system_redraw"
path = "tests/system_redraw.rs"
[[test]]
name = "system_stats"
path = "tests/system_stats.rs"
[[test]]
name = "updates"
path = "tests/updates.rs"
[[test]]
name = "upower_battery"
path = "tests/upower_battery.rs"
[[test]]
name = "volume"
path = "tests/volume.rs"
[[test]]
name = "widget_redraw"
path = "tests/widget_redraw.rs"
[dependencies.calloop]
version = "0.14"
[dependencies.calloop-wayland-source]
version = "0.4"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.cosmic-text]
version = "0.19"
features = [
"swash",
"std",
]
default-features = false
[dependencies.env_logger]
version = "0.11"
default-features = false
[dependencies.futures-util]
version = "0.3.32"
features = ["std"]
default-features = false
[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.mio]
version = "1"
features = [
"os-poll",
"os-ext",
]
[dependencies.nix]
version = "0.30"
features = ["signal"]
[dependencies.pipewire]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.smithay-client-toolkit]
version = "0.20"
features = ["calloop"]
[dependencies.tiny-skia]
version = "0.11"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"time",
"net",
"io-util",
"sync",
"fs",
"process",
]
[dependencies.toml]
version = "0.8"
[dependencies.udev]
version = "0.9.3"
[dependencies.wayland-client]
version = "0.31"
[dependencies.zbus]
version = "5.16.0"
features = ["tokio"]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
all = "deny"
[lints.rust]
unsafe_code = "deny"