From e82185d38443d25f38e1c1cf64ee188f6894c2fb Mon Sep 17 00:00:00 2001 From: o2sh Date: Wed, 13 Dec 2023 21:23:13 +0100 Subject: [PATCH] rename package --- Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9d290c1ba..9dda9a405 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,12 +37,13 @@ bytecount = "0.6.7" clap.workspace = true clap_complete = "4.4.4" crossbeam-channel = "0.5.8" -gix-features-for-configuration-only = { package = "gix-features", version = "0.34.0", features = [ - "zlib-ng", -] } gix = { version = "0.56.0", default-features = false, features = [ - "max-performance-safe", "blob-diff", "mailmap", "index" + "max-performance-safe", + "blob-diff", + "mailmap", + "index", ] } +gix-features = { version = "0.34.0", features = ["zlib-ng"] } git2 = { version = "0.18.1", default-features = false } globset = "0.4.14" human-panic = "1.2.1"