rvx is both an executable binary that can be run, and a library that can be used in Rust programs.
Assuming you have Rust/Cargo installed, run this command in a terminal:
cargo install rvx
It will make the rvx command available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall rvx uninstalls.
rvx
PATH
cargo uninstall rvx
Run this command in a terminal, in your project's directory:
cargo add rvx
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
Cargo.toml
[dependencies]
rvx = "0.2.0"
The rvx library will be automatically available globally. Read the rvx library documentation.
Back to the crate overview.