build(deps): update gitoxide crates (#4470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
David Knaack
2022-10-15 03:39:31 +02:00
committed by GitHub
parent 459fea30a6
commit 33dbe84e43
2 changed files with 126 additions and 131 deletions
+11 -4
View File
@@ -29,11 +29,18 @@ The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄
"""
[features]
default = ["battery", "notify"]
default = ["battery", "notify", "git-repository-max-perf"]
battery = ["starship-battery"]
config-schema = ["schemars"]
notify = ["notify-rust"]
# Enables most of the `max-performace` features of the `git_repository` module for better performance.
# This can be more difficult to build in some conditions and requires cmake.
git-repository-max-perf = ["git-features/zlib-ng", "git-repository/fast-sha1"]
# Slower than `git-repository-max-perf`, but better than the default.
# Unlike `git-repository-max-perf` this does not require cmake and allows dynamic zlib linking.
git-repository-faster = ["git-features/zlib-stock", "git-repository/fast-sha1"]
[dependencies]
chrono = { version = "0.4.22", features = ["clock", "std"] }
clap = { version = "4.0.15", features = ["derive", "cargo", "unicode"] }
@@ -41,9 +48,9 @@ clap_complete = "4.0.2"
dirs-next = "2.0.0"
dunce = "1.0.3"
gethostname = "0.3.0"
# Addresses https://github.com/starship/starship/issues/4251
git-features = { version = "0.22.6", features = ["fs-walkdir-single-threaded"] }
git-repository = "0.24.0"
git-features = { version = "0.23.0", optional = true }
# default feature restriction addresses https://github.com/starship/starship/issues/4251
git-repository = { version = "0.25.0", default-features = false, features = ["max-performance-safe"] }
indexmap = { version = "1.9.1", features = ["serde"] }
local_ipaddress = "0.1.3"
log = { version = "0.4.17", features = ["std"] }