Rust Notes
Installation
See Rust installation.
Updating
Regularly update your Rust toolchain with the following command which takes care of everything:
rustup update
GraphArch Rust Documentation
To generate the technical documentation of GraphArch, from the source code, run the following command:
cargo doc --open
Upgrade Dependencies
The Cargo.toml
file in the root of the repository specifies all the dependent rust packages (called “crates”) and their version numbers.
As a developer, in your clone of the repo, you can upgrade these dependencies to their latest versions by using the following command:
cargo upgrade