Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ serde = [

## Re-export the progress tree root which allows to obtain progress from various functions which take `impl gix::Progress`.
## Applications which want to display progress will probably need this implementation.
progress-tree = ["prodash/progress-tree"]
progress-tree = ["dep:prodash", "prodash?/progress-tree"]
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Preserve the public prodash feature alias

If any downstream manifest still enables gix with features = ["prodash"] (or forwards gix/prodash transitively), this change makes Cargo fail during feature resolution: using dep:prodash removes the implicit public prodash feature entirely. I verified that the parent revision still exposed prodash => ["dep:prodash"], while the new manifest rejects that feature name, so this is a breaking change for existing consumers rather than just an internal cleanup.

Useful? React with 👍 / 👎.


## Print debugging information about usage of object database caches, useful for tuning cache sizes.
cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
Expand Down
Loading