{"id":15031759,"url":"https://github.com/lmammino/rust-advent","last_synced_at":"2025-08-17T03:37:38.534Z","repository":{"id":39619823,"uuid":"334898980","full_name":"lmammino/rust-advent","owner":"lmammino","description":"Learning Rust by solving advent of code challenges (Streaming live on Twitch every Monday)","archived":false,"fork":false,"pushed_at":"2024-12-06T17:29:20.000Z","size":2368,"stargazers_count":44,"open_issues_count":0,"forks_count":7,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-04-08T12:46:36.041Z","etag":null,"topics":["advent-of-code","advent-of-code-2020","coding-challenge","coding-challenges","hacktoberfest","hacktoberfest2021","rust","rustlang","twitch","youtube"],"latest_commit_sha":null,"homepage":"https://twitch.tv/loige","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/lmammino.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-02-01T09:37:57.000Z","updated_at":"2025-01-06T02:55:17.000Z","dependencies_parsed_at":"2023-12-16T19:53:18.356Z","dependency_job_id":"37f0e92d-c45c-4a7d-bf20-52de7fc20850","html_url":"https://github.com/lmammino/rust-advent","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lmammino/rust-advent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Frust-advent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Frust-advent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Frust-advent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Frust-advent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lmammino","download_url":"https://codeload.github.com/lmammino/rust-advent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmammino%2Frust-advent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270803431,"owners_count":24648685,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["advent-of-code","advent-of-code-2020","coding-challenge","coding-challenges","hacktoberfest","hacktoberfest2021","rust","rustlang","twitch","youtube"],"created_at":"2024-09-24T20:16:30.210Z","updated_at":"2025-08-17T03:37:38.508Z","avatar_url":"https://github.com/lmammino.png","language":"Rust","readme":"# Rust advent 🦀 🐚\n\n[![Rust](https://github.com/lmammino/rust-advent/actions/workflows/rust.yml/badge.svg)](https://github.com/lmammino/rust-advent/actions/workflows/rust.yml)\n\nLearning Rust by implementing solutions for [Advent of Code](https://adventofcode.com/) problems.\n\n\n🎥 **HEY, we are live-streaming our attempts to solve the exercises in this repo!** Check us out on:\n\n  - [Twitch](https://twitch.tv/loige) for the live streams\n  - [YouTube](https://www.youtube.com/channel/UCL0w2IAjTBx3NNka-l7InPw) for the recordings\n\n[![Eugen, Roberto and Luciano trying to solve Advent of Code in Rust](https://i.imgur.com/wVIPDnt.png)](https://twitch.tv/loige)\n\nAnd remember to follow and subscribe! 😎 😋\n\n## Requirements\n\nThis repo contains some code that is bespoke to Raspberry Pi Pico, therefore you need to install some additional dependencies:\n\n```bash\nrustup target install thumbv6m-none-eabi\n```\n\nand\n\n```bash\ncargo install flip-link\n```\n\n\n## How to run tests for all exercises\n\nSimply execute:\n\n```bash\ncargo test\n```\n\nIf you want to run only one test for a given part of an exercise you can run something like this:\n\n```bash\ncargo test --package ex01 --lib --all-features -- tests::part_2\n```\n\n\n## Create a new exercise\n\n**New**: You can now use the `scaffold.mjs` script to create a new exercise. Simply run:\n\n```bash\n./scaffold.mjs \u003cyear\u003e \u003cday\u003e\n```\n\n(Note: it requires [`zx`](https://github.com/google/zx) to be installed).\n\n---\n\n\nAlternatively, you can create a new exercise manually by following these steps:\n\n\nCd into the specific **year folder** (e.g. `y2020`) and run:\n\n```bash\ncargo new --lib exNN\n```\n\nReplace `NN` with the number of exercise for the given year. For instance:\n\n\n```bash\ncargo new --lib ex01\n```\n\nFinally add the new subproject in the workspace by editing the main [`Cargo.toml`](/Cargo.toml). For instance, assuming you just created `y2020/ex10`:\n\n\n```toml\n[workspace]\nmembers = [\n  \"y2020/ex01\",\n  # ...\n  \"y2020/ex10\" # \u003c- new entry\n]\n```\n\n## Contributing\n\nEveryone is very welcome to contribute to this project.\nYou can contribute just by submitting bugs or suggesting improvements by\n[opening an issue on GitHub](https://github.com/lmammino/rust-advent/issues).\n\n\n## License\n\nLicensed under [MIT License](LICENSE). © Luciano Mammino, Roberto Gambuzzi, Eugen Serbanescu, Stefano Abalsamo.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmammino%2Frust-advent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flmammino%2Frust-advent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmammino%2Frust-advent/lists"}