-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (50 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
59 lines (50 loc) · 1.01 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "laio"
version = "0.16.0"
edition = "2021"
description = "A simple flexbox-like layout manager for tmux."
homepage = "https://github.com/ck3mp3r/laio-cli"
[lib]
path = "src/lib.rs"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
debug = false
panic = "abort"
strip = "symbols"
[dependencies]
clap-verbosity-flag = "3.0.4"
clap_complete = "4.6.0"
clap_complete_nushell = "4.6.0"
crossterm = "0.29.0"
env_logger = "0.11.10"
inquire = "0.9.4"
lazy_static = "1.5.0"
log = "0.4.29"
regex = "1.12.3"
serde_json = "1.0.149"
serde_yaml = "0.9.34"
sha2 = "0.11.0"
sysinfo = "0.38.4"
tabled = "0.20.0"
tera = "1.20.1"
urlencoding = "2.1.3"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.kdl]
version = "6.5.0"
features = ["v1"]
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_valid]
version = "2.0.1"
features = ["yaml"]
[dev-dependencies]
lazy_static = "1.5.0"
mockall = "0.14.0"