Essential session storage is required to sign in. Optional analytics remain off unless you allow them.
Turn the path into reviewable evidence with its scoped project milestones and explicit grading criteria.
Build a useful CLI with cargo (e.g. a word/line counter, a units converter, or a small todo manager). Read arguments/stdin, model your data with...
Build a reusable LIBRARY crate (cargo new --lib): a generic data structure or algorithm parameterized over a type with trait BOUNDS (e.g. T: Ord), at...
Build a concurrency-heavy Rust app — EITHER multi-threaded (e.g. a parallel file/data processor sharing state via Arc<Mutex<T>> and coordinating with...