cargo hakari
is a command-line application to manage workspace-hack crates. Use it to speed up
local cargo build
and cargo check
commands by 15-95%, and cumulatively by
20-25% or more.
For an explanation of what workspace-hack packages are and how they make your builds faster, see
the about
module.
The cargo-guppy
repository uses a workspace-hack crate managed by cargo hakari
. See the
generated Cargo.toml
.
Cargo.toml
. Within Git repositories, cargo hakari init
automatically does this for you.
Here's how to do it manually.
(Pull requests to improve this are welcome.)All of the below commands take options that control their behavior.
To install, run:
sh
cargo install cargo-hakari
To update, run:
sh
cargo install --force cargo-hakari
If $HOME/.cargo/bin
is in your PATH
, the cargo hakari
command will be available.
There are three steps you must take for cargo hakari
to work properly.
Initialize a workspace-hack crate for a workspace at path workspace-hack
:
sh
cargo hakari init workspace-hack
Cargo.toml
Generate or update the contents of a workspace-hack crate:
sh
cargo hakari generate
Add the workspace-hack crate as a dependency to all other workspace crates:
sh
cargo hakari manage-deps
These are things that are not absolutely necessary to do, but will make cargo hakari
work
better.
Open up .config/hakari.toml
, then:
resolver = "2"
in your workspace's Cargo.toml
.Remember to run cargo hakari generate
after changing the config.
Run the following commands in CI:
sh
cargo hakari generate --diff # workspace-hack Cargo.toml is up-to-date
cargo hakari manage-deps --dry-run # all workspace crates depend on workspace-hack
If either of these commands exits with a non-zero status, you can choose to fail CI or produce a warning message.
For an example, see this GitHub action used by
cargo-guppy
.
All cargo hakari
commands take a --quiet
option to suppress output, though showing diff
output in CI is often useful.
If you publish crates to crates.io
or other registries, see the
publishing
module.
Disable the workspace-hack crate temporarily by removing generated lines from Cargo.toml
.
(Re-enable by running cargo hakari generate
.)
sh
cargo hakari disable
Remove the workspace-hack crate as a dependency from all other workspace crates:
sh
cargo hakari remove-deps
cargo hakari
is configured through .config/hakari.toml
at the root of the workspace. Running
cargo hakari init
causes a new file to be created at this location.
Example configuration:
```toml
hakari-package = "workspace-hack"
resolver = "2"
workspace-hack = ...
lines in other Cargo.tomls. Version 2 requires cargo-hakaridep-format-version = "2"
platforms = [ # "x8664-unknown-linux-gnu", # "x8664-apple-darwin", # "x86_64-pc-windows-msvc", ]
Cargo.toml
and Cargo.lock
files are kept in sync, e.g. in some configurations of```
For more options, including how to exclude crates from the output, see the
config
module.
cargo-hakari
follows semantic versioning, where the public API is the command-line interface.
Within a given series, the command-line interface will be treated as append-only.
The generated Cargo.toml
will also be kept the same unless:
* a new config option is added, in which case the different output will be gated on the new
option, or
* there is a bugfix involved.
See the CONTRIBUTING file for how to help out.
This project is available under the terms of either the Apache 2.0 license or the MIT license.