{"id":24077509,"url":"https://github.com/tgrcdev/bevy-butler","last_synced_at":"2025-04-30T09:52:14.719Z","repository":{"id":271237644,"uuid":"912807876","full_name":"TGRCdev/bevy-butler","owner":"TGRCdev","description":"Self-documenting systems and simpler plugins in Bevy","archived":false,"fork":false,"pushed_at":"2025-04-19T09:03:11.000Z","size":323,"stargazers_count":30,"open_issues_count":5,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-19T14:28:10.141Z","etag":null,"topics":["bevy","bevy-engine","bevy-plugin","game-development","gamedev","proc-macro","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TGRCdev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","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}},"created_at":"2025-01-06T12:42:29.000Z","updated_at":"2025-04-06T06:19:08.000Z","dependencies_parsed_at":"2025-01-06T13:45:39.347Z","dependency_job_id":"52eb6bbc-bee4-41aa-a989-ef2abadedde3","html_url":"https://github.com/TGRCdev/bevy-butler","commit_stats":null,"previous_names":["tgrcdev/bevy-butler"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TGRCdev%2Fbevy-butler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TGRCdev%2Fbevy-butler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TGRCdev%2Fbevy-butler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TGRCdev%2Fbevy-butler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TGRCdev","download_url":"https://codeload.github.com/TGRCdev/bevy-butler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251680212,"owners_count":21626675,"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","bevy-plugin","game-development","gamedev","proc-macro","rust"],"created_at":"2025-01-09T20:55:09.384Z","updated_at":"2025-04-30T09:52:14.710Z","avatar_url":"https://github.com/TGRCdev.png","language":"Rust","readme":"# bevy-butler\n\nA set of procedural macros for making Bevy plugins and systems more self-documenting.\n\n![Crates.io License](https://img.shields.io/crates/l/bevy-butler)\n[![Crates.io Version](https://img.shields.io/crates/v/bevy-butler)](https://crates.io/crates/bevy-butler)\n[![docs.rs](https://img.shields.io/docsrs/bevy-butler)](https://docs.rs/bevy-butler/latest/bevy_butler/)\n![Crates.io MSRV](https://img.shields.io/crates/msrv/bevy-butler)\n\n\n## Version Compatibility\n| bevy | bevy-butler |\n|------|-------------|\n|`0.15`|   `0.5`     |\n\n## Example\n```rust\nuse bevy::prelude::*;\nuse bevy_butler::*;\n\n#[butler_plugin]\npub struct MyPlugin;\n\n#[derive(Resource)]\n#[resource(plugin = MyPlugin, init = Hello(\"World\".to_string()))]\npub struct Hello(pub String);\n\n#[system(schedule = Update, plugin = MyPlugin)]\nfn hello_plugin(name: Res\u003cHello\u003e)\n{\n    info!(\"Hello, {}!\", name.0);\n}\n\n#[system(schedule = Update, plugin = MyPlugin, after = hello_plugin)]\nfn goodbye_plugin(name: Res\u003cHello\u003e)\n{\n    info!(\"Goodbye, {}!\", name.0);\n}\n\nfn main() {\n    App::new()\n        .add_plugins(MyPlugin)\n        .run();\n}\n```\n\n## WebAssembly support\nWebAssembly support is currently locked behind the `wasm-experimental` flag. See the [relevant issue](https://github.com/TGRCdev/bevy-butler/issues/3#issuecomment-2601076962) for more information.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftgrcdev%2Fbevy-butler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftgrcdev%2Fbevy-butler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftgrcdev%2Fbevy-butler/lists"}