-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
46 lines (40 loc) · 1.15 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
[dependencies]
slog = "2.7.0"
termcolor = "1.1"
ansi_colours = "1.0"
crossterm = "0.28.1"
image = "0.25.5"
imageproc = "0.25"
include-flate = "0.3"
ab_glyph = "0.2.25"
vte = "0.15.0"
lazy_static = "1.4.0"
slog-term = "2.9.1"
slog-async = "2.8.0"
[dependencies.clap]
features = ["derive"]
version = "4.5.28"
[dependencies.nu-plugin]
version = "0.102.0"
[dependencies.nu-protocol]
features = ["plugin"]
version = "0.102.0"
[features]
all-fonts = ["font-iosevka_term", "font-anonymous_pro", "font-ubuntu"]
default = []
font-anonymous_pro = []
font-iosevka_term = []
font-ubuntu = []
with-debug = ["slog/max_level_debug", "slog/release_max_level_debug"]
with-trace = ["slog/max_level_trace", "slog/release_max_level_trace"]
[package]
authors = ["Motalleb Fallahnezhad <[email protected]>"]
description = "A nushell plugin to open png images in the shell and save ansi string as images (like tables or ...)"
edition = "2021"
homepage = "https://github.com/FMotalleb/nu_plugin_image"
keywords = ["nushell", "image", "render", "plugin"]
license = "MIT"
name = "nu_plugin_image"
readme = "README.md"
repository = "https://github.com/FMotalleb/nu_plugin_image"
version = "0.102.0"