{"id":20549917,"url":"https://github.com/itsthatguy/rust-samples","last_synced_at":"2025-06-13T09:35:49.155Z","repository":{"id":232207264,"uuid":"618104731","full_name":"itsthatguy/rust-samples","owner":"itsthatguy","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-23T19:04:22.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-16T16:46:23.797Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itsthatguy.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}},"created_at":"2023-03-23T19:03:33.000Z","updated_at":"2023-03-23T19:03:42.000Z","dependencies_parsed_at":"2024-04-08T16:21:37.124Z","dependency_job_id":"6f90f3ac-5432-4332-8d20-2acdcbaa4167","html_url":"https://github.com/itsthatguy/rust-samples","commit_stats":null,"previous_names":["itsthatguy/rust-samples"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsthatguy%2Frust-samples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsthatguy%2Frust-samples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsthatguy%2Frust-samples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsthatguy%2Frust-samples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsthatguy","download_url":"https://codeload.github.com/itsthatguy/rust-samples/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242157179,"owners_count":20081036,"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-16T02:21:58.935Z","updated_at":"2025-03-06T05:41:52.413Z","avatar_url":"https://github.com/itsthatguy.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\r\n  \u003ca href=\"\" rel=\"noopener\"\u003e\r\n \u003cimg width=200px height=200px src=\"https://media.giphy.com/media/LGzrggUppEBdm/giphy.gif\" alt=\"Project logo\"\u003e\u003c/a\u003e\r\n\u003c/p\u003e\r\n\r\n\u003ch3 align=\"center\"\u003eRust Samples\u003c/h3\u003e\r\n\r\n\u003cdiv align=\"center\"\u003e\r\n\r\n[![Status](https://img.shields.io/badge/status-active-success.svg)]() [![GitHub Issues](https://img.shields.io/github/issues/itsthatguy/rust-samples.svg)](https://github.com/itsthatguy/rust-samples/issues) [![GitHub Pull Requests](https://img.shields.io/github/issues-pr/itsthatguy/rust-samples.svg)](https://github.com/itsthatguy/rust-samples/pulls) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)\r\n\r\n\u003c/div\u003e\r\n\r\n---\r\n\r\n\u003cp align=\"center\"\u003e\r\n  A little playground for myself to try out various ideas in Rust.\r\n\u003c/p\u003e\r\n\r\n## 📝 Table of Contents\r\n\r\n- [Prerequisites](#prerequisites)\r\n- [Getting Started](#getting_started)\r\n- [Running](#running)\r\n- [Tests](#tests)\r\n- [Usage](#usage)\r\n\r\n## Prerequisites \u003ca name = \"prerequisites\"\u003e\u003c/a\u003e\r\n\r\nBefore you begin, ensure you have met the following requirements:\r\n\r\n- You have a recent version of Windows, macOS, or Linux installed on your system.\r\n- You have a basic understanding of the command line and Git.\r\n\r\n## 🏁 Getting Started \u003ca name = \"getting_started\"\u003e\u003c/a\u003e\r\n\r\nTo get started with this project, you will need to have Rust installed on your system. If you don't have Rust installed, you can download and install it from the official Rust website: https://www.rust-lang.org/tools/install.\r\n\r\nOnce you have Rust installed, you can clone this repository:\r\n\r\n```shell\r\ngit clone https://github.com/itsthatguy/rust-samples.git\r\n```\r\n\r\n## 🏃‍♂️ Running the Application \u003ca name = \"running\"\u003e\u003c/a\u003e\r\n\r\nTo run the application, navigate to the project directory and run the following command:\r\n\r\n```shell\r\ncargo run\r\n```\r\n\r\nThis will compile and run the project. You should see:\r\n\r\n```shell\r\nHello from tools\r\nHi from Hammer\r\nHi from Saw\r\nHello from hammer\r\nHello from saw\r\n```\r\n\r\n## 🔧 Running the tests \u003ca name = \"tests\"\u003e\u003c/a\u003e\r\n\r\nTo run the tests for this application, navigate to the project directory and run the following command:\r\n\r\n```shell\r\ncargo test\r\n```\r\n\r\nThis will run all of the tests in the project and report any failures.\r\n\r\n## ⛏️ Built Using \u003ca name = \"built_using\"\u003e\u003c/a\u003e\r\n\r\n- [Rust](https://www.rust-lang.org/)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsthatguy%2Frust-samples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsthatguy%2Frust-samples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsthatguy%2Frust-samples/lists"}