1
0
mirror of https://github.com/o2sh/onefetch synced 2024-07-02 15:48:51 +00:00
onefetch/Cargo.toml

39 lines
1.0 KiB
TOML
Raw Normal View History

2018-09-14 22:56:14 +00:00
[package]
edition = "2018"
2018-09-14 22:56:14 +00:00
name = "onefetch"
2019-10-28 18:16:29 +00:00
description = "Git repository summary on your terminal"
2020-08-02 19:42:57 +00:00
version = "2.3.0"
2018-10-02 20:04:22 +00:00
authors = ["o2sh <ossama-hjaji@live.fr>"]
2018-11-13 19:46:15 +00:00
readme = "README.md"
license = "MIT"
repository = "https://github.com/o2sh/onefetch"
exclude = ["assets/*.png"]
2018-09-14 22:56:14 +00:00
2020-08-02 21:04:24 +00:00
[package.metadata.deb]
extended-description = """\
Onefetch is a command line tool that displays information about your Git repository directly on your terminal. \
Onefetch supports almost 50 different programming languages. If your language of choice isn't supported: Open up an issue and support will be added. \
"""
depends = "$auto"
section = "utility"
priority = "optional"
2018-09-14 22:56:14 +00:00
[dependencies]
colored= "2.0.0"
git2 = {version = "0.13.10", default-features = false}
2020-06-27 09:21:35 +00:00
tokei = "12.0.0"
askalono = "0.4.2"
bytecount = "0.6.0"
clap = "2.33.3"
strum = { version = "0.19.2", features = ["derive"] }
image = "0.23.8"
regex = "1"
2020-08-23 13:51:40 +00:00
futures = "0.3.5"
2019-10-17 14:36:27 +00:00
[target.'cfg(windows)'.dependencies]
ansi_term = "0.12"
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2.76"
base64 = "0.12.3"