{"id":29591929,"url":"https://github.com/hacknus/egui-circular-progress-bar","last_synced_at":"2026-01-20T17:00:59.193Z","repository":{"id":303939371,"uuid":"1017295124","full_name":"hacknus/egui-circular-progress-bar","owner":"hacknus","description":"A simple circular progress bar widget for egui.","archived":false,"fork":false,"pushed_at":"2025-11-27T23:27:43.000Z","size":299,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-30T12:58:09.117Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hacknus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-10T10:09:57.000Z","updated_at":"2025-11-27T23:25:52.000Z","dependencies_parsed_at":"2025-07-20T05:39:31.029Z","dependency_job_id":"440f62b0-37a8-4456-a11c-4e8f57161a3c","html_url":"https://github.com/hacknus/egui-circular-progress-bar","commit_stats":null,"previous_names":["hacknus/egui-circular-progress-bar"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/hacknus/egui-circular-progress-bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fegui-circular-progress-bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fegui-circular-progress-bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fegui-circular-progress-bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fegui-circular-progress-bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacknus","download_url":"https://codeload.github.com/hacknus/egui-circular-progress-bar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fegui-circular-progress-bar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-07-20T05:34:41.240Z","updated_at":"2026-01-20T17:00:59.131Z","avatar_url":"https://github.com/hacknus.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# egui Circular Progress Bar\n\n[![crates.io](https://img.shields.io/crates/v/egui-circular-progress-bar.svg)](https://crates.io/crates/egui-circular-progress-bar)\n[![Docs](https://docs.rs/egui-circular-progress-bar/badge.svg)](https://docs.rs/egui-circular-progress-bar)\n[![Rust](https://github.com/hacknus/egui-circular-progress-bar/actions/workflows/rust.yml/badge.svg)](https://github.com/hacknus/egui-circular-progress-bar/actions/workflows/rust.yml)\n\nA customizable circular progress bar widget for [egui](https://github.com/emilk/egui), the immediate mode GUI library for Rust.\n\n![Circular Progress Bar Demo](demo.gif)\n\n## Features\n\n- Easy integration with existing egui applications\n\n## Installation\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies]\negui-circular-progress-bar = \"0.3.0\"\negui = \"0.33\"\n```\n\n## Quick Start\n\n```rust\nuse egui_circular_progress_bar::CircularProgressBar;\n\nfn main() -\u003e Result\u003c(), eframe::Error\u003e {\n    let options = eframe::NativeOptions::default();\n    eframe::run_native(\n        \"Circular Progress Bar Demo\",\n        options,\n        Box::new(|_cc| Box::new(MyApp::default())),\n    )\n}\n\nstruct MyApp {\n    progress: f32,\n}\n\nimpl Default for MyApp {\n    fn default() -\u003e Self {\n        Self { progress: 0.3 }\n    }\n}\n\nimpl eframe::App for MyApp {\n    fn update(\u0026mut self, ctx: \u0026egui::Context, _frame: \u0026mut eframe::Frame) {\n        egui::CentralPanel::default().show(ctx, |ui| {\n            ui.heading(\"Circular Progress Bar Demo\");\n            \n            // Basic usage\n            CircularProgressBar::new(self.progress)\n                .size(100.0)\n                .show(ui);\n            \n            ui.slider(\u0026mut self.progress, 0.0..=1.0, \"Progress\");\n        });\n    }\n}\n```\n\n## Examples\n\nCheck out the `examples/` directory for more detailed usage examples:\n\n- `demo.rs` - Simple demo for the circular progress bar\n\nRun examples with:\n```bash\ncargo run --example demo\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.\n\n\n## Acknowledgments\n\n- [egui](https://github.com/emilk/egui) - The amazing immediate mode GUI library\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacknus%2Fegui-circular-progress-bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacknus%2Fegui-circular-progress-bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacknus%2Fegui-circular-progress-bar/lists"}