forked from atanunq/viuer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 834 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
31
32
33
34
[package]
name = "viuer"
version = "0.6.1"
authors = ["Atanas Yankov <[email protected]>"]
edition = "2021"
description = "Display images in the terminal"
documentation = "https://docs.rs/viuer"
readme = "README.md"
repository = "https://github.com/atanunq/viuer"
license = "MIT"
categories = ["command-line-interface"]
keywords = ["terminal", "image"]
exclude = [".github"]
[dependencies]
termcolor = "1.1"
crossterm = "0.23"
ansi_colours = "1.0"
image = "0.24"
base64 = "0.13"
tempfile = "3.1"
console = { version = "0.15", default-features = false }
lazy_static = "1.4"
sixel-sys = { version = "0.3.1", optional = true }
# avoid feature and crate name collision (thanks rabite0/hunter)
[dependencies.sixel-rs]
package = "sixel"
version = "0.3.2"
optional = true
[features]
default = []
sixel = ["sixel-rs", "sixel-sys"]