clap-rs VS argparse-benchmarks-rs

Compare clap-rs vs argparse-benchmarks-rs and see what are their differences.

argparse-benchmarks-rs

Collected benchmarks for arg parsing crates written in Rust [Moved to: https://github.com/rosetta-rs/argparse-rosetta-rs] (by rust-cli)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
clap-rs argparse-benchmarks-rs
154 17
13,232 35
2.0% -
9.6 6.5
3 days ago over 1 year ago
Rust Python
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

clap-rs

Posts with mentions or reviews of clap-rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-23.
  • Build Your Own curl - Rust
    2 projects | dev.to | 23 Mar 2024
    We will be using the library for Clap - A simple-to-use, efficient, and full-featured library for parsing command line arguments and subcommands.
  • CLI Contexts
    1 project | dev.to | 27 Dec 2023
    I recently came across this question (and associated answer) on the clap repository. The answer given is a good one. But I wanted to expand with my own findings and practices, which spurred the motivation for this post.
  • Getting Started with CLI tools in Rust using Clap
    5 projects | dev.to | 10 Dec 2023
    We can also use tuple-like struct syntax and named-field struct syntax for enum variants within our enum; this is because unlike in other OOP languages, Rust enums are actually sum types. You can read more about how powerful Rust enums are in another article we wrote here. You can have optional arguments by simply wrapping the types in Option, but if you want to add a flag to a command you can use bool, since clap recognises that flags are either there or not there. Let's have a look at what this might look like:
  • Flow Updater JSON Creator
    8 projects | dev.to | 9 Dec 2023
    I began by developing a wrapper for the CurseForge API, which turned out to be a lengthy and challenging process but constituted the bulk of the work. Next, I coded the CLI, which was relatively straightforward. Instead of using the clap crate, a Rust tool for generating CLIs, I opted for the following line of code:
  • netcrab: a networking tool
    4 projects | dev.to | 14 Oct 2023
    By this time I had already gotten tired of parsing arguments by myself and had looked for something to help with that. I found a really dang good argument parsing library called clap. What makes it so cool is it's largely declarative for common uses. You simply mark up a struct with attributes, and the parser automatically generates the usage and all the argument parsing code.
  • Grimoire - A recipe management application.
    7 projects | /r/rust | 5 Oct 2023
    How CLI arguments are handled (using clap).
  • Rust 1.72.0
    7 projects | news.ycombinator.com | 24 Aug 2023
  • I made an alternative --help renderer for clap based applications
    2 projects | /r/rust | 18 Jul 2023
    Is this just referring to wrapping based on the terminal width? That is supported with the wrap_help feature though I have been considering making it a default feature.
  • Looking for advice around project direction using artix-web
    3 projects | /r/rust | 27 May 2023
    CLI, use Clap. If you want to get fancy, use Tui.
  • Build a HTTP server with Rust and tokio - Part 1: serving static files
    2 projects | dev.to | 21 May 2023
    As our CLI is getting more complex, we'll use the clap crate to parse the command line arguments.

argparse-benchmarks-rs

Posts with mentions or reviews of argparse-benchmarks-rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-23.
  • Yet another command line argument parser: bpaf 0.5.2
    6 projects | /r/rust | 23 Aug 2022
    You can check out the argparse-benchmarks-rs though that only gives a high level summary.
  • Gex: Git CLI inspired by Emac's Magit built in Rust
    5 projects | /r/rust | 16 Aug 2022
    So besides the git2 conversation, I'd recommend using an argument parser even if its for something basic like lexopt just for help/version, at least you'd error for unrecognized arguments and can more easily expand it in the future.
  • New alternative for clap (declarative, basic and simple)
    7 projects | /r/rust | 5 Aug 2022
    Unclear whether it has a solid advantage over other things listed at rust-cli/argparse-benchmarks-rs or whether it's just an "I didn't research what already existed" project.
  • GitHub - epage/parse-benchmarks-rs
    7 projects | /r/rust | 18 Jul 2022
    I'm tempted to collect all of these benchmark repos into a github org to make them easier to find. So far I know of parser, md, argparse, and template languages.
  • How do i learn about new crates?
    5 projects | /r/rust | 27 Jun 2022
    Not strictly an answer to your question, but https://github.com/rust-cli/argparse-benchmarks-rs provides a good survey of option parsing crates in Rust.
  • Best cobra alternative for rust.
    2 projects | /r/rust | 9 Jun 2022
    As others have mentioned clap is one of the more popular, featureful CLI parsers though it does come at a compile time and binary size cost. We are working on improving that. See argparse-benchmarks for by-the-numbers comparison for the different parsers (ie only stats and no full feature lists). Clap is used by ripgrep, cargo, and many other tools
  • Announcing clap_lex 0.1!
    2 projects | /r/rust | 15 Apr 2022
    Compared to lexopt, which inspired this effort, clap_lex makes some different trade offs for flexibility and ergonomics which allows it to handle every case clap needs. There is room for more ergonomic improvements as the MVP was written for clap's needs. argparse-benchmarks-rs has been updated and clap_lex is roughly in line with lexopt for build-times and binary size.
  • Yet another command line argument parser: bpaf 0.4.0
    7 projects | /r/rust | 10 Apr 2022
    See https://github.com/rust-cli/argparse-benchmarks-rs/blob/main/examples/bpaf-app/app.rs
  • Immediately off the top of your head what is the best Rust CLI library.
    6 projects | /r/rust | 1 Apr 2022
    You can use this link: https://github.com/rust-cli/argparse-benchmarks-rs
  • Yet another command line argument parser: bpaf
    2 projects | /r/rust | 10 Mar 2022
    btw there are the argparse benchmarks which can be interesting points of comparison (though I haven't decided what is the criteria for being added to it yet).

What are some alternatives?

When comparing clap-rs and argparse-benchmarks-rs you can also consider the following projects:

structopt - Parse command line arguments by defining a struct.

sherlock - 🔎 Hunt down social media accounts by username across social networks

argh - Rust derive-based argument parsing optimized for code size

ht - Friendly and fast tool for sending HTTP requests

docopt.rs - Docopt for Rust (command line argument parser).

cli-guidelines - A guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day.

easy_flag - Simple command line flag parser for rust.

serde - Serialization framework for Rust

httpie - 🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more.

rust - Empowering everyone to build reliable and efficient software.