1
0
mirror of https://github.com/o2sh/onefetch synced 2024-07-02 15:48:51 +00:00
onefetch/Cargo.toml
dependabot[bot] eb27cea143
Bump clap from 4.2.5 to 4.2.7 (#1053)
Bumps [clap](https://github.com/clap-rs/clap) from 4.2.5 to 4.2.7.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.2.5...v4.2.7)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-19 10:59:47 +02:00

78 lines
2.0 KiB
TOML

[package]
authors = ["o2sh <ossama-hjaji@live.fr>"]
categories = ["command-line-utilities"]
description = "Command-line Git information tool"
edition = "2021"
exclude = ["docs/vercel/*"]
keywords = ["git", "cli", "terminal"]
license = "MIT"
name = "onefetch"
readme = "README.md"
repository = "https://github.com/o2sh/onefetch"
homepage = "https://onefetch.dev"
rust-version = "1.64.0"
version = "2.17.1"
[workspace]
members = ["ascii", "image", "manifest"]
[dependencies]
anyhow = "1.0"
askalono = "0.4.6"
byte-unit = "4.0.19"
bytecount = "0.6.3"
clap = { version = "4.2.7", features = ["derive"] }
clap_complete = "4.2.3"
gix-features-for-configuration-only = { package = "gix-features", version = "0.29.0", features = [
"zlib-ng",
] }
gix = { version = "0.44.1", default-features = false, features = [
"max-performance-safe",
] }
git2 = { version = "0.17.1", default-features = false }
human-panic = "1.1.4"
image = "0.24.6"
num-format = "0.4.4"
onefetch-ascii = { path = "ascii", version = "2.17.1" }
onefetch-image = { path = "image", version = "2.17.1" }
onefetch-manifest = { path = "manifest", version = "2.17.1" }
owo-colors = "3.5.0"
regex = "1.8.1"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9.21"
# TODO With the new value parsers, we're really close to being able to eliminate
# the strum dependency
strum = { version = "0.24.1", features = ["derive"] }
time = { version = "0.3.21", features = ["formatting"] }
time-humanize = { version = "0.1.3", features = ["time"] }
tokei = "12.1.2"
typetag = "0.2"
yaml-rust = "0.4.5"
[dev-dependencies]
criterion = "0.4.0"
gix-testtools = "0.12.0"
insta = { version = "1.29.0", features = ["json", "redactions"] }
pretty_assertions = "1.3.0"
[[bench]]
name = "repo"
harness = false
[build-dependencies]
lazy_static = "1"
regex = "1"
serde_json = "1"
serde_yaml = "0.9"
tera = { version = "1", default-features = false }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[target.'cfg(windows)'.dependencies]
enable-ansi-support = "0.2.1"
[features]
fail-on-deprecated = []