mirror of
https://github.com/danbulant/rshell
synced 2026-05-19 04:18:33 +00:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "rshell"
|
|
description = "Another GUI shell"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# cushy = { version = "0.4.0", features=["tokio", "tokio-multi-thread", "plotters", "roboto-flex"], default-features = false }
|
|
cushy = { git = "https://github.com/khonsulabs/cushy.git", branch = "main", features = [
|
|
"tokio",
|
|
"tokio-multi-thread",
|
|
"plotters",
|
|
"roboto-flex",
|
|
] }
|
|
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "time"] }
|
|
plotters = { version = "0.3.7", default-features = false }
|
|
image = { version = "0.25.0", features = ["png"] }
|
|
mpris = "2.0.1"
|
|
reqwest = "0.12.8"
|
|
reqwest-middleware = "0.3.3"
|
|
http-cache-reqwest = "0.14.0"
|
|
color_quant = "1.0"
|
|
hsl = "0.1.1"
|
|
itertools = "0.10.0"
|
|
palette = "0.7.3"
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
fuzzy-matcher = "0.3.5"
|
|
freedesktop-desktop-entry = "0.7.5"
|
|
which = "7.0.1"
|
|
chrono = "0.4.39"
|
|
hyprland = "0.4.0-beta.2"
|
|
pipewire = "0.8.0"
|
|
networkmanager = "0.4"
|
|
dbus = "0.9"
|
|
battery = "0.7.8"
|
|
systemstat = "0.2.4"
|
|
|
|
[patch.crates-io]
|
|
winit = { path = "../winit" }
|
|
# winit = { git = "https://github.com/danbulant/winit", branch = "ls_release" }
|
|
|
|
[profile.release]
|
|
debug = true
|