Cargo |
Cargo is the package manager for RUST acts as a tool and manages Rust projects commonly used cargo commands
acts like a package manager can also build own libraries Cargo is installed by default when Rust is installed to check Cargo version cargo --versionto create a new cargo project use the commands below create a binary crate
cargo new project_name --bin create a library crate
cargo new project_name --lib |
Create a Binary Cargo project |
Create a Binary Cargo project
game generates a random number and prompts the user to guess the number
Create a project folder
in a terminal and enter the following command
cargo new guess-game-app --bincreates a new folder structure guess-game-app/ Cargo.toml src/ main.rspublic crates are stored in a central repository called crates.io Include references to external libraries
example needs to generate a random numberstandard library does not provide random number generation logic need to look at external libraries or crates use rand crate which is available at crates.io rand is a rust library for random number generation rand provides
Compile the Project
in the console navigate to the project folderexecute the command cargo buildthe output will be similar to Updating registry `https://github.com/rust-lang/crates.io-index` Downloading rand v0.9.0 Downloading rand_core v0.2.2 Downloading winapi v0.3.6 Downloading rand_core v0.3.0 Compiling winapi v0.3.6 Compiling rand_core v0.3.0 Compiling rand_core v0.2.2 Compiling rand v0.5.5 Compiling guess-game-app v0.1.0 (file:///d:/rust/guess-game-app) Finished dev [unoptimized + debuginfo] target(s) in 1.08sthe rand crate and all transitive dependencies (inner dependencies of rand) will be automatically downloaded Understanding the Business Logic
the logic is simple so the code should be simple
Edit the main.rs file
replace the default code with the code below
use std::io; extern crate rand; //importing external crate use rand::random; fn get_guess() -> u8 { loop { println!("Input guess") ; let mut guess = String::new(); io::stdin().read_line(&mut guess).expect("could not read from stdin"); match guess.trim().parse:: Compile and Execute the Project
from the project directory in the console run the command
cargo runoutput Welcome to no guessing game correct value is 97 Input guess 20 Too low Input guess 100 Too high Input guess 97 You got it .. |