{"id":21036682,"url":"https://github.com/maksasj/berryville","last_synced_at":"2025-05-15T14:32:00.365Z","repository":{"id":179520254,"uuid":"663606458","full_name":"Maksasj/berryville","owner":"Maksasj","description":"🚜 is a farming simulator game written in Rust using Bevy game engine.","archived":true,"fork":false,"pushed_at":"2023-07-10T14:50:52.000Z","size":22207,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-13T20:29:49.496Z","etag":null,"topics":["bevy","bevy-engine","game-development","game-jam","gmtk-jam","rust"],"latest_commit_sha":null,"homepage":"https://maksasj.github.io/berryville/","language":"JavaScript","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/Maksasj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2023-07-07T17:30:35.000Z","updated_at":"2024-09-14T09:32:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"83e49172-4e4b-4b5e-8553-154f437ffbe8","html_url":"https://github.com/Maksasj/berryville","commit_stats":null,"previous_names":["maksasj/berryville"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maksasj%2Fberryville","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maksasj%2Fberryville/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maksasj%2Fberryville/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maksasj%2Fberryville/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Maksasj","download_url":"https://codeload.github.com/Maksasj/berryville/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254358840,"owners_count":22057994,"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":["bevy","bevy-engine","game-development","game-jam","gmtk-jam","rust"],"created_at":"2024-11-19T13:21:34.221Z","updated_at":"2025-05-15T14:32:00.348Z","avatar_url":"https://github.com/Maksasj.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\r\n    \u003cimg width=\"395\" height=\"190\" src=\"https://github.com/Maksasj/berryville/blob/master/assets/textures/background_logo_big.png\"/\u003e\r\n\u003c/p\u003e\r\n\r\n**Berryville** - is a farming simulator game, but roles are reversed, now you are playing as a plant. Just spend your time growing, as just a simple plant 😘. Game written in Rust using Bevy game engine.\r\n\r\n**Entry for [GMTK Game Jam 2023](https://itch.io/jam/gmtk-2023)**\r\n\r\n\u003e And yet, yet again, berryville is a not a new javascript framework !\r\n\r\n### Links:\r\n1. Web version available at [maksasj.github.io/berryville](https://maksasj.github.io/berryville/) \u003cbr\u003e\r\n2. Game page on Itch.io [maksasj.itch.io/berryville](https://maksasj.itch.io/berryville) \u003cbr\u003e\r\n3. Source code avaiable at [github.com/Maksasj/berryville](https://github.com/Maksasj/berryville)\r\n\r\nCool looking widgets: \r\n\u003cimg src=\"https://img.shields.io/github/license/Maksasj/berryville\" alt=\"license\"\u003e\r\n\u003cimg src=\"https://img.shields.io/github/v/release/Maksasj/berryville\" alt=\"version\"\u003e\r\n\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/Maksasj/berryville/rust_release.yml?label=build\" alt=\"rust_build\"\u003e\r\n\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/Maksasj/berryville/web_release.yml?label=web build\" alt=\"web_build\"\u003e\r\n\r\n## Building\r\n### Requirements\r\nInitially project have been build with these versions\r\n1. cargo 1.70.0\r\n2. rustc 1.70.0\r\n3. wasm-bindgen 0.2.86 (required only for web build)\r\n\r\n### Windows build\r\nThere is two main building options first one is building `exe` file, and second one is a `web` version.\r\nAs for `exe` version, you simply can do default or use preexisting `build.bat` and `make.bat` script.\r\n```bash\r\ncargo build --release \r\n```\r\nCargo will automatically, download and build dependencies, such as bevy.\r\n\r\n### Web build\r\nAs for the web version, you will need to have `wasm-bindgen` cli utility(see this guide [link](https://rustwasm.github.io/wasm-bindgen/reference/cli.html)). After installing `wasm-bindgen`, you can try to run \r\n```bash\r\ncargo build --release --target wasm32-unknown-unknown\r\n```\r\nthis command will compile game into a wasm file. Then you can follow this guide [link](https://bevy-cheatbook.github.io/platforms/wasm.html). For development simplicity there is also `web-build` script, that compiles game into a wasm file, and runs `wasm-bindgen` automatically.\r\n\r\n## License\r\nBerryville is free, open source game. All code in this repository is licensed under\r\n- MIT License ([LICENSE.md](https://github.com/Maksasj/berryville/blob/master/LICENSE.md) or https://opensource.org/license/mit/)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaksasj%2Fberryville","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaksasj%2Fberryville","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaksasj%2Fberryville/lists"}