forked from JackDerksen/lx-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 719 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
[package]
name = "lx-cli"
version = "0.1.6"
edition = "2024"
authors = ["Jack Derksen <hello@viis.dev>"]
description = "A nicer way to list your files ✨"
license = "MIT"
repository = "https://github.com/JackDerksen/lx-cli"
homepage = "https://github.com/JackDerksen/lx-cli"
documentation = "https://docs.rs/lx-cli"
readme = "README.md"
keywords = ["cli", "ls", "file-listing", "terminal"]
categories = ["command-line-utilities"]
[[bin]]
name = "lx"
path = "src/main.rs"
[dependencies]
chrono = "0.4.42"
clap = { version = "4.4", features = ["derive"] }
colored = "2"
dirs = "6.0.0"
libc = "0.2.177"
serde = { version = "1.0.228", features = ["derive"] }
terminal_size = "0.3"
toml = "0.9.8"
unicode-width = "0.2.2"