-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 931 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 931 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
[package]
name = "glry"
version = "0.1.1"
edition = "2024"
description = "A terminal image gallery with thumbnails rendered as real pixels via Kitty, iTerm2, or Sixel."
license = "MIT"
repository = "https://github.com/uherman/glry"
homepage = "https://github.com/uherman/glry"
readme = "README.md"
keywords = ["tui", "terminal", "image", "gallery", "viewer"]
categories = ["command-line-utilities", "multimedia::images"]
exclude = [".assets/*", ".github/*"]
[dependencies]
ratatui = "0.30"
ratatui-image = { version = "10", default-features = false, features = ["crossterm", "image-defaults"] }
crossterm = "0.29"
image = "0.25"
kamadak-exif = "0.6"
clap = { version = "4", features = ["derive"] }
dirs = "6"
anyhow = "1"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
rayon = "1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
arboard = "3"
[profile.release]
lto = "thin"
codegen-units = 1