{"id":21434716,"url":"https://github.com/ilmoi/rust-course-udemy","last_synced_at":"2025-06-28T22:36:59.935Z","repository":{"id":112510081,"uuid":"363588840","full_name":"ilmoi/rust-course-udemy","owner":"ilmoi","description":"https://www.udemy.com/course/ultimate-rust-crash-course","archived":false,"fork":false,"pushed_at":"2021-05-02T07:07:45.000Z","size":5746,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-16T23:12:19.376Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ilmoi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-02T07:06:29.000Z","updated_at":"2021-05-02T07:07:47.000Z","dependencies_parsed_at":"2023-05-15T13:30:37.363Z","dependency_job_id":null,"html_url":"https://github.com/ilmoi/rust-course-udemy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ilmoi/rust-course-udemy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilmoi%2Frust-course-udemy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilmoi%2Frust-course-udemy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilmoi%2Frust-course-udemy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilmoi%2Frust-course-udemy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilmoi","download_url":"https://codeload.github.com/ilmoi/rust-course-udemy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilmoi%2Frust-course-udemy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262507992,"owners_count":23321973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-22T23:40:12.929Z","updated_at":"2025-06-28T22:36:59.929Z","avatar_url":"https://github.com/ilmoi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ultimate Rust Crash Course\n\nThis is the companion repository for the [Ultimate Rust Crash Course] published online, presented\nlive at O'Reilly virtual events, or in person.  You will get the most out of this training \nexperience by trying to accomplish the [exercises] in this repository and watching (or attending)\nthe instructor-led training.\n\nThis repository is for you hands-on-learners who are ready to roll.\n\nI use macOS, and that is what I developed this course on.  Everything _ought_ to work similarly on\nmajor Linux distributions and Windows. Please [contact me](mailto:nathan.stocks@gmail.com) ASAP if you have trouble with anything on this page.\n\n## Install Rust\n\nRust is required for this course!  The latest stable version is always recommended.\n\n- Go to [rust-lang.org](https://rust-lang.org) and click on the `Get Started`\n   button and follow the instructions to install Rust for your operating system.\n   - Please DO NOT install rust via some other package manager.  It will probably be a version that is _really old_.\n\nYou should get somewhat similar output if you run commands like the ones below (newer versions are okay).  If you \nalready have an old version of Rust installed, then run `rustup update` to install a newer version.\n\n```shell\n$ rustc --version\nrustc 1.49.0 (e1884a8e3 2020-12-29)\n$ cargo --version\ncargo 1.49.0 (d00d64df9 2020-12-05)\n```\n\n- Clone or download this repository to your computer.\n\n## Prepare Your Development Environment\n\nPlease do the following (see the [How To Learn Rust](https://github.com/CleanCut/ultimate_rust_crash_course/blob/master/HowToLearnRust.md)\npage for details on all of these)\n- [ ] Choose an IDE (or Editor) and configure it with Rust support and customize it to your liking\n- [ ] Choose one place to \"find answers\" and either introduce yourself (if it's a forum, IRC, etc.) or find the answer\n      to one question you have.\n- [ ] Try doing something in Rust!  If you don't have a better idea, then just do this:\n  - `cargo new message`\n  - `cd message`\n  - `cargo run`\n  - Edit `src/main.rs` and change the message.\n  - `cargo run` again to see your new message.\n- [ ] Check out the descriptions of the tools and books.\n\n# Training!\n\nNow you are ready for the training!  Go watch the [Ultimate Rust Crash Course] (or attend the live\nsession) and come back here for the [exercises].\n\n# Resources\n\n- Training by the instructor (Nathan Stocks) in the form of the [Ultimate Rust Crash Course] or a\n  live session.\n- This Repository :tada:\n- [How To Learn Rust](https://github.com/CleanCut/rust_a_crash_course/blob/master/HowToLearnRust.md)\n- [The Rust Standard Library](https://doc.rust-lang.org/std/)\n\n# Exercises\n\nPlease clone this repository! These exercises are designed as Rust projects for you to edit on your\nown computer, with the exception of Exercise A (which is just a `README.md` file).\n\nThe exercises are separate Rust projects inside the `exercises/` subdirectory.  For each exercise,\nyou should:\n- Open the corresponding`exercise/EXERCISE_NAME` directory in your IDE/Editor\n  - Seriously, just open the _individual exercise directory_ in your IDE. If you open the entire repository, your IDE will probably complain that it sees multiple Rust projects.\n- Navigate to the same directory with your Terminal application (so you can run `cargo run`, etc.)\n- Open up the `src/main.rs` file.\n- Follow the numbered exercise instructions in the code comments.\n\nIf you encounter any problems with the exercises, please feel free to use the online course\ncommunication tools to contact me, or [open an discussion]. Either way. 😄\n\nFor your convenience, here is a list of all the exercises, with links to view the code on GitHub.\n\n- [Exercise A - Variables \u0026 Scope](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/a_variables)\n- [Exercise B - Functions](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/b_functions)\n- [Exercise C - Simple Types](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/c_simple_types)\n- [Exercise D - Control Flow \u0026 Strings](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/d_control_flow_strings)\n- [Exercise E - Ownership \u0026 References](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/e_ownership_references)\n- [Exercise F - Structs \u0026 Traits](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/f_structs_traits)\n- [Exercise G - Collections \u0026 Enums](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/g_collections_enums)\n- [Exercise H - Closures \u0026 Threads](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/h_closures_threads)\n- [Exercise Z - Final Project](https://github.com/CleanCut/ultimate_rust_crash_course/tree/master/exercise/z_final_project)\n\n# Projects\n\n- [Invaders](https://github.com/CleanCut/invaders) - A terminal-based Space Invaders arcade game clone.\n\n\n[exercises]: https://github.com/CleanCut/ultimate_rust_crash_course#exercises\n[open an discussion]: https://github.com/CleanCut/ultimate_rust_crash_course/discussions/new\n[Ultimate Rust Crash Course]: https://agileperception.com/ultimate_rust_crash_course\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filmoi%2Frust-course-udemy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filmoi%2Frust-course-udemy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filmoi%2Frust-course-udemy/lists"}