{"id":21940683,"url":"https://github.com/kettle11/kudo","last_synced_at":"2025-07-04T20:36:37.156Z","repository":{"id":44414716,"uuid":"288924279","full_name":"kettle11/kudo","owner":"kettle11","description":"An Entity Component System for Rust. Fast, easy, and predictable. (Work in progress)","archived":false,"fork":false,"pushed_at":"2022-02-25T16:49:38.000Z","size":606,"stargazers_count":23,"open_issues_count":9,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-29T16:34:26.725Z","etag":null,"topics":["ecs","entity-component-system","gamedev","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kettle11.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}},"created_at":"2020-08-20T06:23:25.000Z","updated_at":"2025-03-14T02:49:30.000Z","dependencies_parsed_at":"2022-07-15T09:17:18.275Z","dependency_job_id":null,"html_url":"https://github.com/kettle11/kudo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kettle11%2Fkudo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kettle11%2Fkudo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kettle11%2Fkudo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kettle11%2Fkudo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kettle11","download_url":"https://codeload.github.com/kettle11/kudo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250270339,"owners_count":21403029,"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":["ecs","entity-component-system","gamedev","rust"],"created_at":"2024-11-29T02:35:47.427Z","updated_at":"2025-04-22T15:43:49.606Z","avatar_url":"https://github.com/kettle11.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"## This repository is no longer maintained. But `kudo` lives on as a crate within the `koi` game engine project: https://github.com/kettle11/koi/tree/main/crates/kecs\n\n# 👏 kudo\n\n[![Documentation](https://docs.rs/kudo/badge.svg)](https://docs.rs/kudo/)\n[![Crates.io](https://img.shields.io/crates/v/kudo.svg)](https://crates.io/crates/kudo)\n[![License: Zlib](https://img.shields.io/badge/License-Zlib-lightgrey.svg)](https://opensource.org/licenses/Zlib)\n\n## WORK IN PROGRESS\n\nAn Entity Component System for Rust. Fast, easy, and predictable.\n\n* No `unsafe`\n* No dependencies\n\n```rust\nstruct Health(f32);\nstruct Name(String);\nstruct CreepySnakeHair(u32);\n\nlet mut world = World::new();\n\n// Create entities with components.\nworld.spawn((Name(\"Perseus\".to_string()), Health(50.)));\nworld.spawn((\n    Name(\"Medusa\".to_string()),\n    Health(100.),\n    CreepySnakeHair(300),\n));\n\n// Find every entity with a `Name` and a `Health` component.\nlet mut query = world.query::\u003c(\u0026Name, \u0026Health)\u003e().unwrap();\n\n// Iterate through all entities with those components.\nfor (name, health) in query.iter() {\n    println!(\"{}'s health is: {:?}\", name.0, health.0);\n}\n```\n\n`Kudo` was inspired by the library [`hecs`](https://github.com/Ralith/hecs). If you need a more feature-rich ECS, give `hecs` a try!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkettle11%2Fkudo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkettle11%2Fkudo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkettle11%2Fkudo/lists"}