Cargo.toml
with cargo update[dependencies] rand = 0.8.5
to
[dependencies] rand = 0.8.6
If you want to 0.9.0 version, manually update the Cargo.toml
[dependencies] rand = 0.9.0
alias cb='cargo build'
alias cbr='cargo build --release'
alias cr='cargo run'
alias cc='cargo check'
alias cn='cargo new'
The variable is immutable default, If you want to edit the assigned value, you need to add mut when declare the variable.
Immutablelet a = 10
Mutable
let mut a = 10
RUST start - https://doc.rust-kr.org/title-page.html
Open source - https://crates.io/