-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 963 Bytes
/
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
[package]
name = "lsplus"
version = "0.6.0"
edition = "2021"
authors = ["Grant Ramsay <seapagan@gmail.com>"]
description = "A replacement for the 'ls' command written in Rust."
license = "MIT"
homepage = "https://seapagan.github.io/lsplus/"
repository = "https://github.com/seapagan/lsplus"
readme = "README.md"
categories = ["command-line-utilities", "filesystem"]
keywords = ["ls", "command-line", "utility", "file-system", "listing"]
exclude = [".github/*", "docs/*"]
[[bin]]
name = "lsp"
path = "src/main.rs"
[dependencies]
chrono = "0.4.38"
glob = "0.3.1"
clap = { version = "4.5.26", features = ["derive"] }
inline_colorization = "0.1.6"
nix = { version = "0.29.0", features = ["user"] }
prettytable = "0.10.0"
term_size = "0.3.2"
config = "0.15.5"
serde = { version = "1.0.215", features = ["derive"] }
dirs-next = "2.0.0"
strip-ansi-escapes = "0.2.0"
[dev-dependencies]
tempfile = "3.8.1"
assert_cmd = "2.0.12"
predicates = "3.0.4"
filetime = "0.2.23"