-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (35 loc) · 998 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
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "zenity"
version = "3.6.1"
authors = ["Arteii <[email protected]>"]
edition = "2021"
license-file = "LICENSE.md"
readme = "README.md"
categories = ["command-line-utilities", "command-line-interface"]
description = "100+ spinner animations and Progress Bars and Support for Multiple Animations at Once"
repository = "https://github.com/Arteiii/zenity"
keywords = ["console", "animations", "cli", "spinner", "loading"]
homepage = "https://arteiii.github.io"
include = [
"Cargo.toml",
"LICENSE.md",
"src/**/*",
]
[lib]
name = "zenity"
path = "src/lib.rs"
test = true
[features]
default = ["spinner", "progressbar", "menu"]
spinner = []
progressbar = []
menu = ["spinner"]
[dependencies]
crossterm = "0.27.0"
supports-color = "3.0.0"
lazy_static = "1.4.0"
regex = "1.10.4"
chrono = "0.4.38"
[dev-dependencies]
rand = "0.8.5"
unicode-icons = { version = "2.1.2", default-features = false, features = ["symbols"] }