Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TeXitoi/structopt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.25
Choose a base ref
...
head repository: TeXitoi/structopt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.26
Choose a head ref
  • 6 commits
  • 26 files changed
  • 6 contributors

Commits on Oct 25, 2021

  1. Typo

    possessive "it" is "its"
    halvnykterist authored and TeXitoi committed Oct 25, 2021
    Configuration menu
    Copy the full SHA
    ffd4772 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2021

  1. Link to the clap API in the documentation that says all clap methods …

    …can be used
    
    This may help hammer home the point for new users who don't know the
    clap API and might not realize this is a lot of functionality.
    lefth authored and TeXitoi committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    4c1a8fc View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2021

  1. [docs] Add output to all examples

    When viewing examples, it is very hard to figure out what they do without running them, which requires substantial efforts.  I have added the output of all examples at the top.
    
    Also, two tiny spelling mistakes - in the readme and in the rename_all.
    
    In case anyone wants to auto-generate something similar, I used this helper script, and made a few minor line manipulations afterwards.
    
    ```bash
    
    run() {
      RES=$(cargo run -q --example "$1" -- --help 2> /dev/null | sed -e 's#^#//! #' )
      { echo "//! Running this example with --help prints this message:" ; echo "//! -----------------------------------------------------" ; echo "$RES" ; echo "//! -----------------------------------------------------" ; echo "" ; cat "examples/$1.rs" ; } > "$1.rs"
      rm "examples/$1.rs"
      mv "$1.rs" "examples/"
    }
    
    run after_help
    run at_least_two
    ```
    nyurik authored and TeXitoi committed Dec 17, 2021
    Configuration menu
    Copy the full SHA
    358cccf View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2021

  1. Upgrade heck

    TethysSvensson authored and TeXitoi committed Dec 21, 2021
    Configuration menu
    Copy the full SHA
    2736281 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2022

  1. Configuration menu
    Copy the full SHA
    2bdd6b4 View commit details
    Browse the repository at this point in the history
  2. v0.3.26

    Guillaume Pinot committed Jan 18, 2022
    Configuration menu
    Copy the full SHA
    97e92a3 View commit details
    Browse the repository at this point in the history
Loading