{"id":18877253,"url":"https://github.com/64bit/wordle-rs","last_synced_at":"2025-08-22T06:33:17.501Z","repository":{"id":57672309,"uuid":"456078669","full_name":"64bit/wordle-rs","owner":"64bit","description":"Wordle in Rust","archived":false,"fork":false,"pushed_at":"2022-12-02T22:20:06.000Z","size":1369,"stargazers_count":12,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T07:02:15.720Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://docs.rs/wordler","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/64bit.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}},"created_at":"2022-02-06T06:56:48.000Z","updated_at":"2024-11-02T16:46:53.000Z","dependencies_parsed_at":"2023-01-24T03:46:24.018Z","dependency_job_id":null,"html_url":"https://github.com/64bit/wordle-rs","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/64bit%2Fwordle-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/64bit%2Fwordle-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/64bit%2Fwordle-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/64bit%2Fwordle-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/64bit","download_url":"https://codeload.github.com/64bit/wordle-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248819548,"owners_count":21166501,"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-08T06:17:48.403Z","updated_at":"2025-04-14T18:31:45.695Z","avatar_url":"https://github.com/64bit.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wordle in Rust\n\nA Rust library and cli for [Wordle](https://www.powerlanguage.co.uk/wordle/).\nInspired by [Wordle in Bash](https://gist.github.com/huytd/6a1a6a7b34a0d0abcac00b47e3d01513)\n\n## Install\n\n```\ncargo install wordler\n```\n\n## Play\n\n```\nwordler\n```\n\n![Play Demo](play-demo.gif)\n\n\n## Basic Usage\n\n```rust\nuse wordler::dictionary::EnglishDictionary;\nuse wordler::wordle::{Wordle, PlayResult};\n\nlet dictionary = EnglishDictionary::new().unwrap();\nlet mut wordle = Wordle::new(\u0026dictionary);\nlet play_result = wordle.play(\"dream\");\nmatch play_result {\n  Ok(play_result) =\u003e {\n    println!(\"{}\", play_result);\n    match play_result {\n        PlayResult::YouWon(_) =\u003e std::process::exit(0),\n        PlayResult::YouLost(_, _) =\u003e std::process::exit(1),\n        PlayResult::TurnResult(_) =\u003e {}\n    }\n  }\n  Err(e) =\u003e println!(\"{}\", e),\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F64bit%2Fwordle-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F64bit%2Fwordle-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F64bit%2Fwordle-rs/lists"}