Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 381 Bytes

README.learnings.md

File metadata and controls

9 lines (5 loc) · 381 Bytes

Cargo.toml is the manifest file for Rust. It’s where you keep metadata for your project, as well as dependencies.

libraries on crates.io

Cargo build install all the pending packages

documentation the rust https://doc.rust-lang.org/reference/index.html

for logging use levels of error, warn, info, debug, and trace (error has the highest priority, trace the lowest).