Skip to content

Commit a39d476

Browse files
committed
Properly use 'max-performance' feature toggle to get pack caches :D (#301)
1 parent 537e5aa commit a39d476

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ default = ["max"]
3030
## Makes the crate execute as fast as possible by supporting parallel computation of otherwise long-running functions
3131
## as well as fast, hardware accelerated hashing, along with a faster zlib backend.
3232
## If disabled, the binary will be visibly smaller.
33-
fast = ["git-features/parallel", "git-features/fast-sha1", "git-features/zlib-ng-compat"]
33+
fast = ["git-features/parallel", "git-features/fast-sha1", "git-features/zlib-ng-compat", "git-repository/max-performance"]
3434

3535
## Use `clap` 3.0 to build the prettiest, best documented and most user-friendly CLI at the expense of binary size.
3636
## Provides a terminal user interface for detailed and exhaustive progress.

Diff for: src/shared.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub mod pretty {
4949
use std::io::{stderr, stdout};
5050

5151
use anyhow::Result;
52-
use git_repository::progress;
52+
use git_features::progress;
5353

5454
use crate::shared::ProgressRange;
5555

0 commit comments

Comments
 (0)