mirror of
https://github.com/danbulant/rshell
synced 2026-06-13 03:22:33 +00:00
32 lines
929 B
TOML
32 lines
929 B
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"] }
|
|
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"
|
|
|
|
[patch.crates-io]
|
|
winit = { path = "../winit" }
|