{"id":46613024,"url":"https://github.com/veltzer/rsbuild","last_synced_at":"2026-03-07T19:02:01.835Z","repository":{"id":329492482,"uuid":"1119822553","full_name":"veltzer/rsbuild","owner":"veltzer","description":"Rust based build tool","archived":false,"fork":false,"pushed_at":"2026-03-05T19:11:12.000Z","size":1705,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-05T22:28:43.835Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://veltzer.github.io/rsbuild/","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/veltzer.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-19T23:04:01.000Z","updated_at":"2026-03-05T19:11:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/veltzer/rsbuild","commit_stats":null,"previous_names":["veltzer/rsb","veltzer/rsbuild"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/veltzer/rsbuild","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltzer%2Frsbuild","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltzer%2Frsbuild/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltzer%2Frsbuild/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltzer%2Frsbuild/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veltzer","download_url":"https://codeload.github.com/veltzer/rsbuild/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltzer%2Frsbuild/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30226770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"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":"2026-03-07T19:02:01.092Z","updated_at":"2026-03-07T19:02:01.824Z","avatar_url":"https://github.com/veltzer.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSBuild - Rust Build Tool\n\nA fast, incremental build tool written in Rust with C/C++ compilation, template support, Python linting, and parallel execution.\n\n## Documentation\n\nFull documentation: \u003chttps://veltzer.github.io/rsbuild/\u003e\n\n## Features\n\n- **Incremental builds** using SHA-256 checksums to detect changes\n- **Remote caching** — share build artifacts across machines via S3, HTTP, or filesystem\n- **C/C++ compilation** with automatic header dependency tracking\n- **Parallel execution** of independent build products with `-j` flag\n- **Template processing** via the Tera templating engine\n- **Python linting** with ruff (configurable)\n- **Lua plugins** — extend with custom processors without forking\n- **Deterministic builds** — same input always produces same build order\n- **Graceful interrupt** — Ctrl+C saves progress, next build resumes where it left off\n- **Config-aware caching** — changing compiler flags or linter config triggers rebuilds\n- **Convention over configuration** — simple naming conventions, minimal config needed\n\n## Installation\n\n### Download pre-built binary (Linux)\n\nPre-built binaries are available for x86_64 and aarch64 (arm64).\n\n```bash\n# x86_64\ngh release download latest --repo veltzer/rsbuild --pattern 'rsbuild-x86_64-unknown-linux-gnu' --output rsbuild --clobber\n\n# aarch64 / arm64\ngh release download latest --repo veltzer/rsbuild --pattern 'rsbuild-aarch64-unknown-linux-gnu' --output rsbuild --clobber\n\nchmod +x rsbuild\nsudo mv rsbuild /usr/local/bin/\n```\n\nOr without the GitHub CLI:\n\n```bash\n# x86_64\ncurl -Lo rsbuild https://github.com/veltzer/rsbuild/releases/download/latest/rsbuild-x86_64-unknown-linux-gnu\n\n# aarch64 / arm64\ncurl -Lo rsbuild https://github.com/veltzer/rsbuild/releases/download/latest/rsbuild-aarch64-unknown-linux-gnu\n\nchmod +x rsbuild\nsudo mv rsbuild /usr/local/bin/\n```\n\n### Build from source\n\n```bash\ncargo build --release\n```\n\n## Quick Start\n\n```bash\nrsbuild init                     # Create a new project\nrsbuild build                    # Incremental build\nrsbuild build --force            # Force full rebuild\nrsbuild build -j4                # Build with 4 parallel jobs\nrsbuild build --timings          # Show timing info\nrsbuild status                   # Show what needs rebuilding\nrsbuild watch                    # Watch for changes and rebuild\nrsbuild clean                    # Remove build artifacts\nrsbuild graph --view             # Visualize dependency graph\nrsbuild processor list           # List available processors\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveltzer%2Frsbuild","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveltzer%2Frsbuild","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveltzer%2Frsbuild/lists"}