{"id":21743679,"url":"https://github.com/argodevops/learning-rust","last_synced_at":"2025-03-21T01:34:09.631Z","repository":{"id":219746694,"uuid":"749128530","full_name":"argodevops/learning-rust","owner":"argodevops","description":"Repository of examples to help with learning Rust.","archived":false,"fork":false,"pushed_at":"2024-02-04T08:35:19.000Z","size":3212,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-25T22:21:13.615Z","etag":null,"topics":["rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/argodevops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-01-27T17:01:31.000Z","updated_at":"2024-12-24T14:12:07.000Z","dependencies_parsed_at":"2024-02-09T09:00:28.318Z","dependency_job_id":null,"html_url":"https://github.com/argodevops/learning-rust","commit_stats":null,"previous_names":["argodevops/learning-rust"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argodevops%2Flearning-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argodevops%2Flearning-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argodevops%2Flearning-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argodevops%2Flearning-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/argodevops","download_url":"https://codeload.github.com/argodevops/learning-rust/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244722111,"owners_count":20499094,"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":["rust"],"created_at":"2024-11-26T07:08:43.949Z","updated_at":"2025-03-21T01:34:09.612Z","avatar_url":"https://github.com/argodevops.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# learning-rust\n\nRepository of examples to help with learning Rust.\n\nThe Rust Lang Book https://doc.rust-lang.org/stable/book/title-page.html.\n\nThis repo follows the YouTube Let's Get Rusty series https://www.youtube.com/playlist?list=PLai5B987bZ9CoVR-QEIN9foz4QCJ0H2Y8 which goes over every chapter of the Rust book. The repo is split into sections covering the aspects of the Rust language with snippets of Rust code.\n\n## Rust Goals\n\nThe goal of Rust is to be a good programming language for creating highly concurrent, safe and performant systems.\n\n\u003e **\"Rust is a systems programming language focused on three goals: safety, speed, and concurrency.\"**\n\u003e \\_\\_ Rust Documentation\n\nRust is very young and very modern language. It is a **[compiled programming language](https://en.wikipedia.org/wiki/Compiled_language)** and it uses [LLVM](https://en.wikipedia.org/wiki/LLVM) on the backend. Also, Rust is a **[multi-paradigm programming language](https://en.wikipedia.org/wiki/Comparison_of_multi-paradigm_programming_languages)**, which supports imperative procedural, concurrent actor, object-oriented and pure functional styles. It also supports generic programming and metaprogramming, in both static and dynamic styles.\n\n\u003e 🔎 One of Rust’s most unique and compelling features is [Ownership](/docs/ownership), which is used to achieve memory safety. Rust creates memory pointers optimistically, checks memory pointers’ limited accesses at compile-time with the usage of [References and Borrowing](/docs/borrowing). And it does automatic compile-time memory management by checking the [Lifetimes](/docs/lifetimes).\n\n## Influences\nIts design elements came from a wide range of sources.\n\n- Abstract Machine Model: **C**\n- Data types: **C, SML, OCaml, Lisp, Limbo**\n- Optional Bindings: **Swift**\n- Functional Programming: **Haskell, OCaml, F\\#**\n- Attributes: **ECMA**-335\n- Memory Model and Memory Management: **C++, ML Kit, Cyclone**\n- Type Classes: **Haskell**\n\nRust **doesn't use an automated garbage collection** system\\(GC\\) by default.\n\nRust compiler observes the code **at compile-time** and helps to [**prevent many types of errors**](https://doc.rust-lang.org/error-index.html) that are possible to write in C, C++ like programming languages.\n\n## Installing Rust\n\n`curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh`\n\n## Sections\n\n* [Hello Cargo](hello_cargo/README.md)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargodevops%2Flearning-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fargodevops%2Flearning-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargodevops%2Flearning-rust/lists"}