Libraries#
Rust’s standard library is small but high-quality; the broader ecosystem on crates.io fills in the rest.
Standard Library#
std::io/std::fs, streams and filesstd::collections,HashMap,BTreeMap,VecDequestd::sync,Mutex,RwLock, atomics, channelsstd::thread, OS threadsstd::time,DurationandInstantstd::process, spawn and inspect processesstd::env, arguments and environment
Cargo#
$ cargo new myproj
$ cargo add serde --features derive
$ cargo build --release
$ cargo test
$ cargo doc --open