{"id":20064017,"url":"https://github.com/eswat2/rust-sudoku-api","last_synced_at":"2026-05-29T23:05:29.920Z","repository":{"id":65385874,"uuid":"360646319","full_name":"eswat2/rust-sudoku-api","owner":"eswat2","description":"Prototype Sudoku api server written in Rust...","archived":false,"fork":false,"pushed_at":"2026-05-18T22:10:21.000Z","size":683,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-18T22:54:26.481Z","etag":null,"topics":["rust","sudoku"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/eswat2.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-04-22T18:34:00.000Z","updated_at":"2026-05-18T22:10:25.000Z","dependencies_parsed_at":"2025-12-31T03:00:39.529Z","dependency_job_id":null,"html_url":"https://github.com/eswat2/rust-sudoku-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eswat2/rust-sudoku-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eswat2%2Frust-sudoku-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eswat2%2Frust-sudoku-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eswat2%2Frust-sudoku-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eswat2%2Frust-sudoku-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eswat2","download_url":"https://codeload.github.com/eswat2/rust-sudoku-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eswat2%2Frust-sudoku-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33673709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"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":["rust","sudoku"],"created_at":"2024-11-13T13:44:31.634Z","updated_at":"2026-05-29T23:05:29.903Z","avatar_url":"https://github.com/eswat2.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rust-api\n\nsimple api server implemented in Rust...\n\n## dependencies:\n\n[![actix-cors][badge-actix-cors]][actix-cors]\n[![actix-web][badge-actix-web]][actix-web]\n[![base64][badge-base64]][base64]\n[![serde_json][badge-serde-json]][serde-json]\n[![sudoku][badge-sudoku]][sudoku]\n\n\n## usage:\n\n`cargo run`\n\n- [localhost:8080][local]\n- [localhost:8080/api/puzzle][puzzle]\n\n## output:\n\n```\n{\n  \"metrics\": {\n    \"counts\": {\n      \"blanks\": 56,\n      \"clues\": 25\n    },\n    \"nanos\": {\n      \"generate\": 278502,\n      \"solve\": 5358\n    }\n  },\n  \"puzzle\": \"51..6...28.2......6..3.8.9.4..9..8.........5.1564............192...9...8...54....\",\n  \"ref\": \"NTE5NzY0MzgyODMyMTU5NjQ3Njc0MzI4MTk1NDI3OTM1ODYxOTgzMjE2NzU0MTU2NDg3OTIzMzY1ODcyNDE5MjQxNjkzNTc4Nzk4NTQxMjM2\"\n}\n```\n\n| Property | Description |\n| ---: | :--- |\n| **metrics** | _insight into the puzzle counts \u0026 times_ |\n| **puzzle** | _a string representing the puzzle board (dots are blank cells)_ |\n| **ref** | _the base64 encoded solution to the puzzle_ |\n\n## developer notes:\n\nto check for updates:\n\n```\ncargo outdated\n```\n\nto update packages:\n\n```\ncargo update\n```\n\n## references:\n\n- [cargo-outdated][out-dated] - _new cargo subcommand_\n- [cargo-update][up-date] - _update dependencies_\n\n## status:\n\nThis code has been \"deprecated\" since Heroku is removing it's free tier in November 2022.\n\n\u003e This repo is now primarily for local development.\n\nThe new API is now serverless and running on Vercel...\n\n- [puzzle][puzzle-io] -- _serverless_\n\n\n[actix-cors]: https://crates.io/crates/actix-cors\n[actix-web]: https://crates.io/crates/actix-web\n[base64]: https://crates.io/crates/base64\n[serde-json]: https://crates.io/crates/serde_json\n[sudoku]: https://crates.io/crates/sudoku\n[local]: http://0.0.0.0:8080\n[puzzle]: http://0.0.0.0:8080/api/puzzle\n[puzzle-io]: https://sudoku-rust-api.vercel.app/api/puzzle\n\n[out-dated]: https://github.com/kbknapp/cargo-outdated\n[up-date]: https://doc.rust-lang.org/cargo/commands/cargo-update.html\n\n[badge-actix-cors]: https://img.shields.io/badge/crates.io-actix--cors-orange\n[badge-actix-web]: https://img.shields.io/badge/crates.io-actix--web-orange\n[badge-base64]: https://img.shields.io/badge/crates.io-base64-orange\n[badge-serde-json]: https://img.shields.io/badge/crates.io-serde__json-orange\n[badge-sudoku]: https://img.shields.io/badge/crates.io-sudoku-orange\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feswat2%2Frust-sudoku-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feswat2%2Frust-sudoku-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feswat2%2Frust-sudoku-api/lists"}