ironbar/Cargo.toml

45 lines
1.3 KiB
TOML
Raw Normal View History

2022-08-14 16:30:13 +03:00
[package]
name = "ironbar"
2022-10-15 20:26:51 +03:00
version = "0.6.0"
2022-08-14 16:30:13 +03:00
edition = "2021"
2022-08-14 16:55:03 +03:00
license = "MIT"
description = "Customisable wlroots/sway bar"
2022-08-14 16:30:13 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_builder = "0.11.2"
2022-08-14 16:30:13 +03:00
gtk = "0.15.5"
gtk-layer-shell = "0.4.1"
glib = "0.15.12"
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread", "time"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tracing-error = "0.2.0"
tracing-appender = "0.2.2"
strip-ansi-escapes = "0.1.1"
color-eyre = "0.6.2"
2022-08-14 16:30:13 +03:00
futures-util = "0.3.21"
chrono = "0.4.19"
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.82"
serde_yaml = "0.9.4"
toml = "0.5.9"
cornfig = "0.3.0"
lazy_static = "1.4.0"
async_once = "0.2.6"
2022-08-14 16:30:13 +03:00
regex = "1.6.0"
2022-10-16 02:56:47 +03:00
stray = { version = "0.1.1" }
2022-08-14 16:30:13 +03:00
dirs = "4.0.0"
walkdir = "2.3.2"
notify = "5.0.0"
mpd_client = "1.0.0"
2022-10-16 02:56:47 +03:00
swayipc-async = { version = "2.0.1" }
sysinfo = "0.26.4"
wayland-client = "0.29.5"
wayland-protocols = { version = "0.29.5", features=["unstable_protocols", "client"] }
2022-10-16 02:56:47 +03:00
smithay-client-toolkit = "0.16.0"
[patch.crates-io]
stray = { git = "https://github.com/JakeStanger/stray.git", branch = "fix/tracing" }
swayipc-async = { git = "https://github.com/JakeStanger/swayipc-rs.git", branch = "feat/derive-clone" }