2020-12-21 11:29:45 +01:00
|
|
|
[package]
|
2020-12-22 05:30:27 +01:00
|
|
|
name = "rsblocks"
|
2021-06-04 21:14:02 +02:00
|
|
|
version = "0.1.18"
|
2020-12-21 11:29:45 +01:00
|
|
|
authors = ["mustafa salih <mustafasalih1991@gmail.com>"]
|
|
|
|
edition = "2018"
|
2020-12-30 01:13:08 +01:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
2021-01-02 23:47:40 +01:00
|
|
|
keywords = ["linux", "dwm","statusbar"]
|
2020-12-30 01:13:08 +01:00
|
|
|
repository = "https://github.com/MustafaSalih1993/rsblocks"
|
2021-01-02 23:47:40 +01:00
|
|
|
description = "a multi threaded status bar for dwm window manager for linux"
|
2020-12-21 11:29:45 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-05-09 21:14:29 +02:00
|
|
|
alsa = "0.5"
|
2021-02-15 02:31:29 +01:00
|
|
|
chrono = "0.4"
|
|
|
|
mpd = "0.0.12"
|
2021-05-09 21:14:29 +02:00
|
|
|
nix = "0.20"
|
2021-04-29 20:59:59 +02:00
|
|
|
battery = "0.7"
|
2021-05-19 21:44:58 +02:00
|
|
|
dbus = "0.9.1"
|
|
|
|
serde_yaml = "0.8.15"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
|
|
|
|
# Async deps
|
|
|
|
futures = "0.3.15"
|
|
|
|
async-trait = "0.1.50"
|
|
|
|
|
|
|
|
[dependencies.async-std]
|
|
|
|
version = "1.9.0"
|
|
|
|
features = ["attributes"]
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.6.0"
|
|
|
|
features = ["full"]
|
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0.120"
|
|
|
|
features = ["derive"]
|
2021-01-09 02:10:19 +01:00
|
|
|
|
|
|
|
[dependencies.breadx]
|
2021-05-28 18:20:17 +02:00
|
|
|
version = "0.2.9"
|
2021-01-09 02:10:19 +01:00
|
|
|
features = ["async"]
|
2021-05-19 21:44:58 +02:00
|
|
|
|
|
|
|
[dependencies.minreq]
|
|
|
|
version = "2.2"
|
|
|
|
features = ["https", "json-using-serde"]
|