{"id":25972019,"url":"https://github.com/doppioslash/arewegameyet","last_synced_at":"2025-03-05T00:02:45.843Z","repository":{"id":38614426,"uuid":"66980150","full_name":"rust-gamedev/arewegameyet","owner":"rust-gamedev","description":"The repository for https://arewegameyet.rs","archived":false,"fork":false,"pushed_at":"2025-02-24T00:57:16.000Z","size":71786,"stargazers_count":716,"open_issues_count":27,"forks_count":154,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-02-24T16:19:02.984Z","etag":null,"topics":["ecosystem","gamedev","rust","zola"],"latest_commit_sha":null,"homepage":"https://arewegameyet.rs","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rust-gamedev.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":"2016-08-30T21:45:37.000Z","updated_at":"2025-02-17T22:13:14.000Z","dependencies_parsed_at":"2023-10-16T15:06:33.937Z","dependency_job_id":"1f8470af-0587-42bf-98db-c92aebb7aa35","html_url":"https://github.com/rust-gamedev/arewegameyet","commit_stats":{"total_commits":473,"total_committers":176,"mean_commits":2.6875,"dds":0.7589852008456659,"last_synced_commit":"b3a8b486e83c31bb2bba8012db1649c2a44435aa"},"previous_names":["doppioslash/arewegameyet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-gamedev%2Farewegameyet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-gamedev%2Farewegameyet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-gamedev%2Farewegameyet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-gamedev%2Farewegameyet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rust-gamedev","download_url":"https://codeload.github.com/rust-gamedev/arewegameyet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241940573,"owners_count":20045881,"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":["ecosystem","gamedev","rust","zola"],"created_at":"2025-03-05T00:02:45.462Z","updated_at":"2025-03-05T00:02:45.834Z","avatar_url":"https://github.com/rust-gamedev.png","language":"SCSS","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# README\n\n## What is this?\n\nThe Rust community has a number of websites dedicated to keeping track of the state of the ecosystem for specific purposes. (e.g. [arewewebyet](https://www.arewewebyet.org) and [arewelearningyet](https://www.arewelearningyet.com))\n\nThis one tracks the state of the ecosystem for Game Development in Rust.\n\nYou can find the site at [arewegameyet.rs](https://arewegameyet.rs/).\n\n## Contribute\n\nArewegameyet? uses [semantic-ui](https://semantic-ui.com/), and [zola](https://github.com/getzola/zola) the Rust static site generator.\n\n1. Navigate to whichever folder in `/content` best fits your project.\n\n2. Edit that folder's `data.toml` file in any plain text editor or straight through [GitHub's editor](https://help.github.com/articles/editing-files-in-another-user-s-repository/).\n\n3. Create a new entry, following the schema described below. Note that all entries should be sorted alphabetically by the `name` field, ignoring case. There is a CI check to ensure this is done correctly - you can use the `sort_data.py` script to automatically fix a file.\n\n**All done!** We do greatly appreciate PRs, but if you're not comfortable with this process, you're welcome to open an issue requesting the addition of your project instead.\n\n### Schema\n\n```toml\n[[items]]\n# The name of the item. Mandatory.\nname = \"My crate\" \n\n# A short description of the item. Optional, but recommended.\ndescription = \"My extremely cool Rust crate\" \n\n# The categories that your item should be assigned to. Mandatory.\ncategories = [\"2drendering\", \"engines\"]\n\n# An image representing the item. Files should be checked in to\n# /static/assets/img/, and the path should be absolute.\n# Optional, but highly recommended for games!.\nimage = \"/assets/img/logo.png\"\n\n# A link to the item's page on Crates.io. Optional.\ncrate_url = \"https://crates.io/crates/mycrate\"\n\n# A link to the item's VCS repository. Optional.\nrepository_url = \"https://github.com/username/repo\"\n\n# A link to the item's homepage. Optional.\nhomepage_url = \"https://mycrate.com\"\n\n# A link to the item's Gitter chat. Optional.\ngitter_url = \"https://gitter.im/mycrate\"\n```\n\nYou can also tell the site to pull data directly from an external source:\n\n```toml\n[[items]]\n# Pull data from Crates.io:\nname = \"mycratename\"\nsource = \"crates\"\ncategories = [\"mycategory\"]\n\n[[items]]\n# Pull data from GitHub:\nname = \"username/repo\"\nsource = \"github\"\ncategories = [\"mycategory\"]\n```\n\nExtra keys can be added to items that are pulled from external data (e.g. to add a homepage URL, or override some of the fetched data).\n\n### Enhance this website\n\nIf you're comfortable with semantic-ui and Zola please reach out to us in the Issues with your enhancement ideas or just to state your willingness to contribute.\n\n### Errors\n\nIt's very likely there are mistakes around, if you find one please file an issue.\n\n*Thanks for helping us map the Rust game development ecosystem!*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoppioslash%2Farewegameyet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoppioslash%2Farewegameyet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoppioslash%2Farewegameyet/lists"}