Skip to content

Latest commit

 

History

History
95 lines (82 loc) · 5.94 KB

rust-cli-tools.md

File metadata and controls

95 lines (82 loc) · 5.94 KB

Rust CLI tools I use a lot

Rust CLI tools I use sometimes

  • bingrep - output info about binaries
  • cargo-audit - find known security vulnerabilities
  • cargo-benchcmp - compare benchmarks using Rust's built-in benchmarker
  • cargo-bloat - show what's bloating your bins
  • cargo-deps - generate dep graphs (deprecated - use carge-depgraph?)
  • cargo-fuzz - fuzz testing
  • cargo-generate - create a project from a project template
    • cargo generate --git https://github.com/rustwasm/wasm-pack-template
  • cargo-llvm-lines - shows amount of LLVM IR generated per function
  • cargo-outdated - find upgradable crates
  • cargo-udeps - show unused crates
  • cargo-watch - rebuild on change
  • cargo-workspace - operate on every crate in workspace
  • critcmp - compare criterion benchmarks
  • eza - like ls
  • hexyl - hex viewer
  • jaq - jq clone for querying JSON
  • jsonxf - JSON pretty-printer and more
  • just - custom command runner, like make but without the baggage
  • mdbook - Rust-standard markdown documentation generator
  • sd - sed replacement (find and replace)
  • stellar-xdr - XDR encoding/decoding
  • twiggy - code size profiler
  • wagyu - generate blockchain wallets
  • wasm-cs - read and write custom wasm sections
  • wasm-opt - wasm optimizer
  • wasm-tools - various tools for wasm
  • xsv - CSV tool

Rust tools I have used in the past

Rust tools I don't use but might

Not Rust but useful for Rust

Don't use any more

Other's lists