{"id":20571299,"url":"https://github.com/fluent-ci-templates/rust-pipeline","last_synced_at":"2026-02-23T16:31:22.618Z","repository":{"id":179975394,"uuid":"662242031","full_name":"fluent-ci-templates/rust-pipeline","owner":"fluent-ci-templates","description":"A ready-to-use CI/CD Pipeline for Rust projects.","archived":false,"fork":false,"pushed_at":"2025-01-16T20:20:49.000Z","size":259,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T03:27:17.856Z","etag":null,"topics":["deno","deno-module","devops","gitlab-ci","pipeline","rust","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/fluent-ci-templates.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2023-07-04T17:08:34.000Z","updated_at":"2025-07-09T19:57:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"33643e5e-4432-4801-85f4-937a3e96a694","html_url":"https://github.com/fluent-ci-templates/rust-pipeline","commit_stats":null,"previous_names":["fluent-ci-templates/rust-pipeline"],"tags_count":37,"template":true,"template_full_name":null,"purl":"pkg:github/fluent-ci-templates/rust-pipeline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Frust-pipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Frust-pipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Frust-pipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Frust-pipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluent-ci-templates","download_url":"https://codeload.github.com/fluent-ci-templates/rust-pipeline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluent-ci-templates%2Frust-pipeline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29748178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"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":["deno","deno-module","devops","gitlab-ci","pipeline","rust","typescript"],"created_at":"2024-11-16T05:15:46.956Z","updated_at":"2026-02-23T16:31:22.598Z","avatar_url":"https://github.com/fluent-ci-templates.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Rust Pipeline\n\n[![fluentci pipeline](https://shield.fluentci.io/x/rust_pipeline)](https://pkg.fluentci.io/rust_pipeline)\n[![deno module](https://shield.deno.dev/x/rust_pipeline)](https://deno.land/x/rust_pipeline)\n![deno compatibility](https://shield.deno.dev/deno/^1.41)\n[![dagger-min-version](https://shield.fluentci.io/dagger/v0.11.7)](https://dagger.io)\n[![](https://jsr.io/badges/@fluentci/rust)](https://jsr.io/@fluentci/rust)\n[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/rust-pipeline)](https://codecov.io/gh/fluent-ci-templates/rust-pipeline)\n\n\nA ready-to-use CI/CD Pipeline for your Rust projects.\n\n![Made with VHS](https://vhs.charm.sh/vhs-f5jk3sceXQrc55XC4fW3c.gif)\n\n## 🚀 Usage\n\nRun the following command in your Rust Project:\n\n```bash\nfluentci run rust_pipeline\n```\n\nOr if you want to run specific jobs:\n\n```bash\nfluentci run rust_pipeline test build\n```\n\n\nif you want to use it as a template:\n\n```bash\nfluentci init -t rust\n```\n\nThis will create a `.fluentci` folder in your project.\n\nNow you can run the pipeline with:\n\n```bash\nfluentci run .\n```\n\n## 🧩 Dagger Module\n\nUse as a [Dagger](https://dagger.io) Module:\n\n```bash\ndagger install github.com/fluent-ci-templates/rust-pipeline@main\n```\n\nCall a function from the module:\n\n```bash\ndagger call clippy --src .\ndagger call test --src .\ndagger call llvm-cov --src .\ndagger call build --src .\n```\n\n## ✨ Jobs\n\n| Job      | Description                     |\n| -------- | ------------------------------- |\n| clippy   | Run Rust Clippy on your project |\n| build    | Build your project              |\n| test     | Run your tests                  |\n| llvm_cov | Generate llvm coverage report   |\n\n```typescript\nbuild(\n  src: string | Directory | undefined = \".\",\n  packageName?: string,\n  target = \"x86_64-unknown-linux-gnu\",\n  options: string[] = []\n): Promise\u003cDirectory | string\u003e\n\nclippy(\n  src: string | Directory | undefined = \".\"\n): Promise\u003cFile | string\u003e\n\ntest(\n  src: string | Directory | undefined = \".\",\n  options: string[] = []\n): Promise\u003cstring\u003e\n\nllvmCov(\n  src: string | Directory | undefined = \".\"\n): Promise\u003cFile | string\u003e\n```\n\n## 👨‍💻 Programmatic usage\n\nYou can also use this pipeline programmatically:\n\n```ts\nimport { build, test } from \"jsr:@fluentci/rust\";\n\nawait test();\nawait build();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Frust-pipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluent-ci-templates%2Frust-pipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluent-ci-templates%2Frust-pipeline/lists"}