cargo hakari
is a command-line application to manage workspace-hack crates.
For an explanation of what workspace-hack packages are and how they can help, see the
about
module.
Cargo.toml
-- it is recommended that repositories disable automatic line ending conversion.
Here's how to do it in Git.
(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.
Initialize a workspace-hack crate for a workspace at path my-workspace-hack
:
sh
cargo hakari init my-workspace-hack
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
Publish a crate that currently depends on the workspace-hack crate (cargo publish
can't be
used in this circumstance):
sh
cargo hakari publish -p <crate>
Disable the workspace-hack crate temporarily by removing generated contents. (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 .guppy/hakari.toml
at the root of the workspace.
Example configuration:
```toml
hakari-package = "workspace-hack"
resolver = "2"
platforms = [ ## "x8664-unknown-linux-gnu", ## "x8664-apple-darwin", ## "x86_64-pc-windows-msvc", ]
[output]
Cargo.toml
and Cargo.lock
files are kept in sync, e.g. in some configurations of```
For more options, see the config
module.
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.