{"id":20917256,"url":"https://github.com/c1m50c/rust-algorithms","last_synced_at":"2025-08-23T02:33:54.827Z","repository":{"id":137446578,"uuid":"417314239","full_name":"c1m50c/rust-algorithms","owner":"c1m50c","description":"Library containing various algorithms implemented with a Rust counter-part.","archived":false,"fork":false,"pushed_at":"2022-06-12T23:26:49.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T23:31:01.583Z","etag":null,"topics":["algorithms","binary-search","bubble-sort","comb-sort","gnome-sort","hashing-algorithms","heap-sort","insertion-sort","library","linear-search","merge-sort","mit-license","quick-sort","rust","searching-algorithms","selection-sort","sha256","shell-sort","sorting-algorithms"],"latest_commit_sha":null,"homepage":"","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/c1m50c.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-10-14T23:47:38.000Z","updated_at":"2022-01-02T19:16:55.000Z","dependencies_parsed_at":"2024-04-19T02:00:55.587Z","dependency_job_id":null,"html_url":"https://github.com/c1m50c/rust-algorithms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/c1m50c/rust-algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Frust-algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Frust-algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Frust-algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Frust-algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/c1m50c","download_url":"https://codeload.github.com/c1m50c/rust-algorithms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c1m50c%2Frust-algorithms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271732468,"owners_count":24811335,"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-23T02:00:09.327Z","response_time":69,"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":["algorithms","binary-search","bubble-sort","comb-sort","gnome-sort","hashing-algorithms","heap-sort","insertion-sort","library","linear-search","merge-sort","mit-license","quick-sort","rust","searching-algorithms","selection-sort","sha256","shell-sort","sorting-algorithms"],"created_at":"2024-11-18T16:31:27.911Z","updated_at":"2025-08-23T02:33:54.805Z","avatar_url":"https://github.com/c1m50c.png","language":"Rust","readme":"# **📚 rust-algorithms**\n[![Build](https://github.com/c1m50c/rust-algorithms/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/c1m50c/rust-algorithms/actions/workflows/build.yml)\n\nLibrary containing various algorithms implemented with a Rust counter-part.\n\n\n## **Running**\nYou can test the algorithms to ensure they work by using `cargo test`, an example of it's usage is shown below.\n```bash\n$ cd rust-algorithms # Change directory to repository.\n$ cargo test # Run the `cargo test` command to run the library's tests.\n...\ntest result: ok. # If things go well all tests should pass.\n```\n\n\n## **Implemented Algorithms**\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003e🥔 Hashing Algorithms\u003c/strong\u003e\u003c/summary\u003e\n    \u003cul\u003e\n        \u003cli\u003e❌ SHA256\u003c/li\u003e\n    \u003c/ul\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003e🔎 Searching Algorithms\u003c/strong\u003e\u003c/summary\u003e\n    \u003cul\u003e\n        \u003cli\u003e✔ Linear Search\u003c/li\u003e\n        \u003cli\u003e✔ Binary Search\u003c/li\u003e\n    \u003c/ul\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003e🧮 Sorting Algorithms\u003c/strong\u003e\u003c/summary\u003e\n    \u003cul\u003e\n        \u003cli\u003e✔ Selection Sort\u003c/li\u003e\n        \u003cli\u003e✔ Insertion Sort\u003c/li\u003e\n        \u003cli\u003e✔ Bubble Sort\u003c/li\u003e\n        \u003cli\u003e✔ Gnome Sort\u003c/li\u003e\n        \u003cli\u003e✔ Quick Sort\u003c/li\u003e\n        \u003cli\u003e✔ Merge Sort\u003c/li\u003e\n        \u003cli\u003e✔ Shell Sort\u003c/li\u003e\n        \u003cli\u003e✔ Heap Sort\u003c/li\u003e\n        \u003cli\u003e✔ Comb Sort\u003c/li\u003e\n    \u003c/ul\u003e\n\u003c/details\u003e\n\n\n## **License**\n\u003ca href=\"https://github.com/c1m50c/rust-algorithms/blob/main/LICENSE\"\u003eMIT License\u003c/a\u003e","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc1m50c%2Frust-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc1m50c%2Frust-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc1m50c%2Frust-algorithms/lists"}