{"id":13702436,"url":"https://github.com/imp/cargo-multi","last_synced_at":"2026-03-13T01:33:09.742Z","repository":{"id":139816491,"uuid":"51686963","full_name":"imp/cargo-multi","owner":"imp","description":"Extends cargo to execute the given command on multiple crates - upstream is at ","archived":false,"fork":false,"pushed_at":"2017-09-09T15:36:10.000Z","size":84,"stargazers_count":6,"open_issues_count":2,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-10T19:54:46.721Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gitlab.com/imp/cargo-multi","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/imp.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}},"created_at":"2016-02-14T08:42:04.000Z","updated_at":"2022-02-27T00:45:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"91f4fcb8-1b51-4cc3-a7c5-58586a9b3b57","html_url":"https://github.com/imp/cargo-multi","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/imp/cargo-multi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fcargo-multi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fcargo-multi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fcargo-multi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fcargo-multi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imp","download_url":"https://codeload.github.com/imp/cargo-multi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imp%2Fcargo-multi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30453663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T21:31:01.033Z","status":"ssl_error","status_checked_at":"2026-03-12T21:30:43.161Z","response_time":114,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2024-08-02T21:00:35.804Z","updated_at":"2026-03-13T01:33:09.720Z","avatar_url":"https://github.com/imp.png","language":"Rust","funding_links":[],"categories":["Development tools"],"sub_categories":["Build system"],"readme":"# cargo-multi\n[![Crates.io](https://img.shields.io/crates/v/cargo-multi.svg?style=plastic)](http://crates.io/crates/cargo-multi)\n[![Coverage Status](https://coveralls.io/repos/github/imp/cargo-multi/badge.svg?branch=master)](https://coveralls.io/github/imp/cargo-multi?branch=master)\n\nGitLab CI:\nmaster: [![build status](https://gitlab.com/imp/cargo-multi/badges/master/build.svg)](https://gitlab.com/imp/cargo-multi/commits/master)\ndevelop: [![build status](https://gitlab.com/imp/cargo-multi/badges/develop/build.svg)](https://gitlab.com/imp/cargo-multi/commits/develop)\n\nTravis:\nmaster: [![Build Status](https://img.shields.io/travis/imp/cargo-multi/master.svg?style=plastic)](https://travis-ci.org/imp/cargo-multi)\ndevelop: [![Build Status](https://img.shields.io/travis/imp/cargo-multi/develop.svg?style=plastic)](https://travis-ci.org/imp/cargo-multi)\n\nExtends cargo to execute the given command on multiple crates. Inspired by `git multi`.\nFirst `cargo-multi` checks current directory for cargo workspaces and if found executes a given command in each workspace. Alternatively `cargo-multi` executes a given command in each crate found in the current directory.\n\n## Installation\nUse `cargo` to install this subcommand\n```\ncargo install cargo-multi\n```\n\n## Usage\nRun `cargo multi \u003ccargosubcommand\u003e` in the directory where you keep your crates.\n```\ncargo multi update\n```\n```\ncargo multi build\n```\n```\ncargo multi test\n```\n\n## Example\n```\n$ cargo multi update\n----------------------\nExecuting cargo update\n----------------------\ncargo:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n        Updating git2 v0.3.5 -\u003e v0.3.4\n        Removing libgit2-sys v0.4.0\n        Updating nom v1.2.0 -\u003e v1.2.1\n        Updating num_cpus v0.2.10 -\u003e v0.2.11\n        Updating regex v0.1.52 -\u003e v0.1.54\n        Updating regex-syntax v0.2.3 -\u003e v0.2.5\n        Updating tar v0.4.3 -\u003e v0.4.4\n        Removing unicode-bidi v0.2.3\n        Removing unicode-normalization v0.1.2\n        Removing url v0.5.5\n\ncargo-multi:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n\nelm:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n\ngitlab-rs:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n\nhyper:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n        Updating num_cpus v0.2.10 -\u003e v0.2.11\n        Updating regex v0.1.52 -\u003e v0.1.54\n        Updating regex-syntax v0.2.3 -\u003e v0.2.5\n        Updating serde v0.6.14 -\u003e v0.6.15\n        Updating unicase v1.2.1 -\u003e v1.3.0\n\njson:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n        Updating serde v0.6.14 -\u003e v0.6.15\n\nrass:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n\nrequests-rs:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n        Updating num_cpus v0.2.10 -\u003e v0.2.11\n        Updating serde v0.6.14 -\u003e v0.6.15\n        Updating unicase v1.2.1 -\u003e v1.3.0\n\nsyncthing-rs:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n        Updating regex v0.1.53 -\u003e v0.1.54\n        Updating regex-syntax v0.2.4 -\u003e v0.2.5\n\ntrust:\n        Updating registry `https://github.com/rust-lang/crates.io-index`\n        Removing aho-corasick v0.5.1\n        Removing docopt v0.6.78\n        Removing memchr v0.1.10\n        Removing regex v0.1.54\n        Removing regex-syntax v0.2.5\n        Removing rustc-serialize v0.3.18\n        Removing strsim v0.3.0\n        Removing utf8-ranges v0.1.3\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimp%2Fcargo-multi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimp%2Fcargo-multi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimp%2Fcargo-multi/lists"}