-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (37 loc) · 1.04 KB
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
[package]
name = "wlm"
version = "0.4.0"
authors = ["Erich Schroeter <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
description = "A command-line tool to move and resize windows based on a config."
readme = "README.md"
homepage = "https://github.com/erichschroeter/wlm"
repository = "https://github.com/erichschroeter/wlm"
keywords = ["cli", "windowing"]
categories = ["command-line-utilities"]
[lib]
name = "wlm"
path = "src/lib.rs"
[[bin]]
name = "wlm"
path = "src/bin/main.rs"
[dependencies]
clap = { version = "4.4.8", features = ["string", "env"] }
config = "0.13.3"
cor-args = "0.1.1"
derive_builder = "0.12.0"
directories = "5.0.1"
env_logger = "0.10.1"
log = "0.4.20"
prettytable-rs = "^0.10"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.27"
[dev-dependencies]
assert_cmd = "1.0.1"
assert_fs = "1.0.0"
predicates = "1.0.4"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser", "processthreadsapi", "psapi", "handleapi", "dwmapi"] }