Installing and Using Legion
Learn how to install and use Legion.
We'll cover the following...
We'll cover the following...
Legion is included in Rust’s crates
system, so installing it is similar to installing bracket-lib. Legion dependency is added in Cargo.toml
as shown.
Note that we’re using an exact version number for Legion with the equals (=
) sign. Legion is rapidly improving, and this guarantees that our code will work with that published version.
When you’re working on a project, it’s a good idea to pin your dependencies with the equals (
=
) sign once you progress beyond initial planning. This guarantees that your project won’t break when a library upgrades and ...