-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "piow"
version = "0.6.0"
authors = ["Korbinian Maier <korbinian.maier@posteo.de>"]
edition = "2018"
description = "Put Icons On your sway Workspaces"
homepage = "https://github.com/KuabeM/piow"
keywords = ["sway", "wayland", "workspaces"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/KuabeM/piow"
[dependencies]
# Async connection to sway
futures-util = "0.3"
swayipc-async = "2.0.0"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
# Config
dirs = "4"
indexmap = {"version" = "1", "features" = ["serde"]}
serde = "1"
serde_derive = "1"
toml = "0.5"
# Utils
docopt = "1"
env_logger = "0.9"
syslog = "6"
anyhow = "1"
log = "0.4"
sysinfo = "0.29.0"
[profile.release]
lto = true