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

52 lines
1.3 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-11-21 21:24:22 +00:00
version = "2.7.3"
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"
2020-10-31 13:14:32 +00:00
exclude = ["assets/*", "tools/*"]
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. \
2020-10-03 19:18:48 +00:00
Onefetch supports more than 50 different programming languages. If your language of choice isn't supported: Open up an issue and support will be added. \
2020-08-02 21:04:24 +00:00
"""
depends = "$auto"
section = "utility"
priority = "optional"
2018-09-14 22:56:14 +00:00
[dependencies]
color_quant = "1.1" # Use version required by image
colored= "2.0.0"
git2 = { version = "0.13.12", default-features = false }
json = "0.12.4"
2020-06-27 09:21:35 +00:00
tokei = "12.0.0"
askalono = "0.4.3"
bytecount = "0.6.2"
clap = "2.33.3"
strum = { version = "0.20.0", features = ["derive"] }
term_size = "0.3.2"
image = "0.23.12"
regex = "1"
2020-10-11 01:28:06 +00:00
error-chain = "0.12"
toml = "0.5.7"
serde = "1.0.118"
serde_json = "1.0.60"
2019-10-17 14:36:27 +00:00
[target.'cfg(windows)'.dependencies]
ansi_term = "0.12"
[target.'cfg(not(windows))'.dependencies]
libc = "0.2.81"
base64 = "0.13.0"
2020-09-04 12:50:49 +00:00
[dev-dependencies]
more-asserts = "0.2"
paste = "1"
2020-10-26 14:25:11 +00:00
[features]
fail-on-deprecated = []