-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 963 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (33 loc) · 963 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
29
30
31
32
33
34
[package]
name = "fishez"
version = "0.4.0"
edition = "2024"
description = "Lightning-fast terminal file manager for developers: type-to-filter, quick view, fd/ripgrep, cd-on-exit"
license = "MIT"
repository = "https://github.com/ioma8/fishez"
readme = "README.md"
keywords = ["file-manager", "tui", "terminal", "crossterm"]
categories = ["command-line-utilities", "filesystem"]
exclude = [
"demo.gif",
"demo.tape",
"docs/",
"openspec/",
"scripts/",
"tests/",
"*.md",
"!README.md",
]
[dependencies]
base64 = "0.22.1"
crossterm = "0.28.1"
tui-input = { version = "0.10", features = ["crossterm"] }
image = { version = "0.25.5", default-features = false, features = ["gif", "jpeg", "png"] }
iterm2img = "0.1.0"
libc = "0.2"
little_exif = "0.6.2"
resvg = "0.44"
textwrap = "0.16.2"
trash = "5.2.0"
jpgfromrawlib = { package = "jpgfromraw-lib", version = "0.7", default-features = false }
tokio = { version = "1", features = ["rt"] }