kitsune2_bootstrap_srv is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing the kitsune2-bootstrap-srv executable

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install kitsune2_bootstrap_srv

It will make the kitsune2-bootstrap-srv command available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall kitsune2_bootstrap_srv uninstalls.

Adding kitsune2_bootstrap_srv library as a dependency

Run this command in a terminal, in your project's directory:

cargo add kitsune2_bootstrap_srv

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

kitsune2_bootstrap_srv = "0.4.0"

The kitsune2_bootstrap_srv library will be automatically available globally. Read the kitsune2_bootstrap_srv library documentation.

Back to the crate overview.