From b33ca47ab4e705633ff8c128e0bc91d3ffedd9ae Mon Sep 17 00:00:00 2001 From: Guillaume P Date: Sun, 4 Feb 2018 18:43:53 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 18b31b14..0b41e0c7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# StructOpt [![Build status](https://travis-ci.org/TeXitoi/structopt.svg?branch=master)](https://travis-ci.org/TeXitoi/structopt) [![](https://img.shields.io/crates/v/structopt.svg)](https://crates.io/crates/structopt) [![](https://docs.rs/structopt-derive/badge.svg)](https://docs.rs/structopt-derive) +# StructOpt [![Build status](https://travis-ci.org/TeXitoi/structopt.svg?branch=master)](https://travis-ci.org/TeXitoi/structopt) [![](https://img.shields.io/crates/v/structopt.svg)](https://crates.io/crates/structopt) [![](https://docs.rs/structopt/badge.svg)](https://docs.rs/structopt) Parse command line argument by defining a struct. It combines [clap](https://crates.io/crates/clap) with custom derive. @@ -6,11 +6,11 @@ Parse command line argument by defining a struct. It combines [clap](https://cr ## Documentation -Find it on Docs.rs: [structopt-derive](https://docs.rs/structopt-derive) and [structopt](https://docs.rs/structopt). +Find it on [Docs.rs](https://docs.rs/structopt). ## Example -Add `structopt` and `structopt-derive` to your dependencies of your `Cargo.toml`: +Add `structopt` to your dependencies of your `Cargo.toml`: ```toml [dependencies] structopt = "0.2" @@ -77,7 +77,7 @@ USAGE: For more information try --help $ ./basic --help -basic 0.1.8 +basic 0.2.0 Guillaume Pinot A basic example