Skip to content

Commit

Permalink
Properly use 'max-performance' feature toggle to get pack caches :D (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Mar 4, 2022
1 parent 537e5aa commit a39d476
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ default = ["max"]
## Makes the crate execute as fast as possible by supporting parallel computation of otherwise long-running functions
## as well as fast, hardware accelerated hashing, along with a faster zlib backend.
## If disabled, the binary will be visibly smaller.
fast = ["git-features/parallel", "git-features/fast-sha1", "git-features/zlib-ng-compat"]
fast = ["git-features/parallel", "git-features/fast-sha1", "git-features/zlib-ng-compat", "git-repository/max-performance"]

## Use `clap` 3.0 to build the prettiest, best documented and most user-friendly CLI at the expense of binary size.
## Provides a terminal user interface for detailed and exhaustive progress.
Expand Down
2 changes: 1 addition & 1 deletion src/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub mod pretty {
use std::io::{stderr, stdout};

use anyhow::Result;
use git_repository::progress;
use git_features::progress;

use crate::shared::ProgressRange;

Expand Down

0 comments on commit a39d476

Please sign in to comment.