-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.02 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
[package]
name = "lsplus"
version = "0.8.0"
edition = "2024"
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.41"
glob = "0.3.1"
clap = { version = "4.5.37", features = ["derive"] }
colored_text = "0.4.1"
nix = { version = "0.31.0", features = ["user"] }
prettytable = "0.10.0"
terminal_size = "0.4.4"
config = "0.15.7"
serde = { version = "1.0.219", features = ["derive"] }
dirs-next = "2.0.0"
strip-ansi-escapes = "0.2.1"
unicode-width = "0.2.0"
ignore = "0.4.25"
[dev-dependencies]
tempfile = "3.19.1"
assert_cmd = "2.0.12"
predicates = "3.0.4"
filetime = "0.2.23"
temp-env = "0.3.6"
husky-rs = "0.3.2"