dep: Bump gix from v0.52.0 => v0.53.1 (#1354)

* dep: Bump gix from v0.52.0 => v0.53.1

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Fix `gix` compilation: Enable `gix/max-performance-safe`

without this feature, `ThreadSafeRepository` does not implement `Sync`,
causes the `binstalk-registry` compilation to fail.

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Enable `gix/comfort` for progress tracing

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Fixed gix progress tracking: Enable `gix/progress-tree`

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Rm feature `gix/{comfort, progress-tree}`

Since they do not enable progress support and merely adds bloat.

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Fix gix progress logging: Allow logging from simple-git

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Re-enable feature `gix/comfort` for more readable logging

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

---------

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2023-09-14 23:31:00 +10:00 committed by GitHub
parent f26ab41961
commit f31db762b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 164 additions and 231 deletions

View file

@ -13,11 +13,20 @@ license = "Apache-2.0 OR MIT"
[dependencies]
compact_str = "0.7.0"
derive_destructure2 = "0.1"
gix = { version = "0.52.0", features = ["blocking-http-transport-reqwest"] }
thiserror = "1.0.40"
tokio = { version = "1.30.0", features = ["rt", "time"], default-features = false }
tracing = "0.1.37"
[dependencies.gix]
version = "0.53.1"
default-features = false
features = [
"comfort",
"blocking-http-transport-reqwest",
"max-performance-safe",
"worktree-mutation",
]
[features]
rustls = [
"gix/blocking-http-transport-reqwest-rust-tls",