-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (27 loc) · 768 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
[package]
name = "ls-interactive"
description = "Interactive ls command"
version = "1.7.0"
authors = ["Araxeus <[email protected]>"]
homepage = "https://github.com/Araxeus/ls-interactive"
license = "MIT"
edition = "2021"
readme = "README.md"
repository = "https://github.com/Araxeus/ls-interactive"
keywords = ["ls", "lsi", "cli", "files", "folders"]
categories = ["command-line-utilities"]
[[bin]]
name = "ls-interactive"
path = "src/main.rs"
[dependencies]
console = "0.15.8"
open = "5.1.3"
human-panic = "2.0.0"
lnk = "0.5.1"
fuzzy-matcher = "0.3.7"
crossterm = "0.27.0"
unicode-segmentation = "1.11.0"
tiny_update_notifier = "2.2.0"
cached = "0.51.3"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.56.0", features = ["Win32_Storage_FileSystem"] }