macOS
brew install cargo-binutilslocal Homebrew formula metadata
brew
Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de cargo-binutils pour les workflows d'agents IA.
installation
brew install cargo-binutilslocal Homebrew formula metadata
sudo apt install cargo-binutilsDebian stable package indexes · cargo-binutils · Source: deb.debian.org
nix profile install nixpkgs#cargo-binutilsnixpkgs package indexes · pkgs/by-name/ca/cargo-binutils/package.nix · Source: api.github.com
sudo pacman -S cargo-binutilsArch Linux sync databases · cargo-binutils · Source: geo.mirror.pkgbuild.com
sudo dnf install rust-ar+default-develFedora Rawhide package metadata · rust-ar+default-devel · Source: dl.fedoraproject.org
aperçu
Cargo subcommands to invoke the LLVM tools shipped with the Rust toolchain
historique
cargo-binutils is a Cargo subcommand suite that makes the LLVM binary-inspection tools shipped in Rust toolchains feel like native Cargo workflows. It provides rust-* proxies for LLVM tools and cargo-* commands that can build a Rust target and then inspect the resulting artifact.
The crate appeared on crates.io in June 2018 as a proxy for llvm-nm, llvm-objdump, llvm-size, and related tools. Early crate metadata pointed at Jorge Aparicio's japaric/cargo-binutils repository, and the project later settled under the rust-embedded organization, where the README says it is maintained by the Embedded Working Group Tools team while also noting that it is not an official Rust project.
Its scope grew from a small set of cargo-nm, cargo-objcopy, cargo-objdump, cargo-profdata, and cargo-size commands into a broader wrapper set that also includes rust-* command proxies such as rust-objcopy, rust-size, rust-readobj, rust-strip, rust-lld, and rust-cov. The current README frames the tool as sugar over LLVM tools from rustup's llvm-tools component.
cargo-binutils became a standard convenience tool in embedded Rust because it connects Cargo builds with artifact inspection commands that embedded developers already need for symbol tables, section sizes, disassembly, and binary conversion. Its maintenance home in rust-embedded and its packaging across Homebrew, Debian, Ubuntu, Nix, pacman, and Fedora-style package names reflect that it escaped the purely crates.io audience.
Crates.io reports more than 2.7 million total downloads and the current crate metadata classifies it under command-line utilities and development tools. That adoption is reinforced by rustup's llvm-tools component: cargo-binutils does not ship its own LLVM, it makes the toolchain-provided LLVM tools easier to call.
A typical installation is `cargo install cargo-binutils` followed by `rustup component add llvm-tools`. Users then run commands such as `cargo size --release`, `cargo objdump --release -- --disassemble`, `cargo nm --release`, or the lower-level `rust-size` and `rust-objdump` proxies.
The important usage pattern is build-and-inspect: cargo-binutils can accept familiar Cargo selectors such as `--bin`, `--example`, `--lib`, `--target`, and `--release`, build the requested target, and pass the generated artifact path to the LLVM tool.
For package nerds, cargo-binutils is interesting because it packages compiler-toolchain internals as stable-feeling Cargo subcommands without vendoring the underlying tools. It sits at the boundary between rustup components, LLVM command naming, Cargo metadata, and distribution packaging.
It is especially notable in embedded packaging culture: size reports, symbol listings, object copying, and disassembly are routine release tasks for firmware, and cargo-binutils made those tasks reproducible from a Rust package-manager workflow.
posture de sécurité
narrow executable package without higher-risk signals.
risque vert · confiance faible · appliance
Avant une utilisation sans surveillance par un agent, vérifiez si l'outil lit des identifiants en clair, écrit un état distant, publie des artefacts ou lance des plugins.
exécutables
| Commande | Type | Exposition | Note |
|---|---|---|---|
cargo-cov | cli | exécutable global | |
cargo-nm | cli | exécutable global | |
cargo-objcopy | cli | exécutable global | |
cargo-objdump | cli | exécutable global | |
cargo-profdata | cli | exécutable global | |
cargo-readobj | cli | exécutable global | |
cargo-size | cli | exécutable global | |
cargo-strip | cli | exécutable global | |
rust-ar | cli | exécutable global | |
rust-as | cli | exécutable global | |
rust-cov | cli | exécutable global | |
rust-ld | cli | exécutable global | |
rust-lld | cli | exécutable global | |
rust-nm | cli | exécutable global | |
rust-objcopy | cli | exécutable global | |
rust-objdump | cli | exécutable global | |
rust-profdata | cli | exécutable global | |
rust-readobj | cli | exécutable global | |
rust-size | cli | exécutable global | |
rust-strip | cli | exécutable global |
fraîcheur
Ces signaux séparent l'âge de génération de la page, l'activité du gestionnaire de paquets et la comparaison avec les versions amont. Un retard de version n'est signalé que lorsqu'une URL de preuve et des versions comparables sont présentes.
https://github.com/rust-embedded/cargo-binutils
métadonnées d'installation
| Clé du paquet | brew:cargo-binutils |
|---|---|
| Version | 0.4.0 |
| Gestionnaire de paquets | Homebrew |
| Page du gestionnaire de paquets | https://formulae.brew.sh/formula/cargo-binutils |
| Page d'accueil | https://github.com/rust-embedded/cargo-binutils |
| Dépôt | https://github.com/rust-embedded/cargo-binutils |
| Docs amont | https://github.com/rust-embedded/cargo-binutils#readme |
| Licence | Apache-2.0 OR MIT |
| Archive source | https://static.crates.io/crates/cargo-binutils/cargo-binutils-0.4.0.crate |
| Dépendances de compilation | rust |
| Bouteille | disponible (sur arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux) |
| post-install Homebrew | non défini |
| Service | aucun déclaré |
faits du registre
| Source Database | Homebrew formula API |
|---|---|
| Tap | homebrew/core |
| Full Name | cargo-binutils |
| Version Scheme | 0 |
| Revision | 0 |
| Head Version | HEAD |
| Bottle Stable Root URL | https://ghcr.io/v2/homebrew/core |
| Deprecated | no |
| Disabled | no |
| Keg Only | no |
| URL Keys |
|
correspondances dans les bases sources
Les correspondances proviennent d’index externes de gestionnaires de paquets et restent séparées des liens de paquets Automic Vault locaux.
cargo-binutils 0.3.6-2+b1
Proxy for LLVM tools like llvm-nm, llvm-objdump and llvm-size
https://github.com/rust-embedded/cargo-binutils/
sudo apt install cargo-binutilscargo-binutils
nix profile install nixpkgs#cargo-binutilscargo-binutils 0.3.5-3
Proxy for LLVM tools like llvm-nm, llvm-objdump and llvm-size
sudo apt install cargo-binutilscargo-binutils 0.4.0-1
Cargo subcommands to invoke the LLVM tools shipped with the Rust toolchain
https://github.com/rust-embedded/cargo-binutils
sudo pacman -S cargo-binutilslibrust-ar-dev 0.9.0-1+b2
Encoding/decoding Unix archive files - Rust source code
sudo apt install librust-ar-devlibrust-ar-dev 0.9.0-1
Encoding/decoding Unix archive files - Rust source code
sudo apt install librust-ar-devrust-ar+default-devel 0.9.0-6.fc44
Library for encoding/decoding Unix archive files
sudo dnf install rust-ar+default-develrust-ar-devel 0.9.0-6.fc44
Library for encoding/decoding Unix archive files
sudo dnf install rust-ar-develrust-size+default-devel 0.5.0-3.fc44
For expressing, formatting, and interacting with file sizes
sudo dnf install rust-size+default-develrust-size+serde-devel 0.5.0-3.fc44
For expressing, formatting, and interacting with file sizes
sudo dnf install rust-size+serde-develrust-size+std-devel 0.5.0-3.fc44
For expressing, formatting, and interacting with file sizes
sudo dnf install rust-size+std-develrust-size-devel 0.5.0-3.fc44
For expressing, formatting, and interacting with file sizes
sudo dnf install rust-size-develpiste source
Cette page est servie par av-web depuis l'artéfact SQLite privé des paquets généré par scripts/generate-pkg-sqlite.py.
View the package source record on GitHub.