-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 863 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 863 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
35
36
[package]
name = "termviz"
version = "0.2.5"
edition = "2024"
rust-version = "1.85"
description = "Terminal-first viewer for images and plots"
license = "MIT"
repository = "https://github.com/siriusctrl/termviz"
readme = "README.md"
keywords = ["terminal", "image", "plot", "viewer", "cli"]
categories = ["command-line-utilities", "visualization"]
exclude = [".github/"]
[[bin]]
name = "termviz"
path = "src/bin/termviz.rs"
[[bin]]
name = "tvz"
path = "src/bin/tvz.rs"
[dependencies]
ab_glyph = "0.2.32"
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
crossterm = "0.29.0"
base64 = "0.22.1"
flate2 = "1.1.9"
image = { version = "0.25.9", default-features = false, features = ["png", "jpeg", "gif", "webp"] }
serde_json = "1.0.140"
unicode-width = "0.2.2"
[dev-dependencies]
assert_cmd = "2.2.1"
predicates = "3.1.4"
tempfile = "3.27.0"