Skip to content

Commit

Permalink
Auto merge of #90 - killercup:release/v0.1.3, r=killercup
Browse files Browse the repository at this point in the history
Release/v0.1.3
  • Loading branch information
homu committed Jul 15, 2016
2 parents cac61b1 + 9938905 commit 66f27e1
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 81 deletions.
172 changes: 100 additions & 72 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["Without Boats <[email protected]>",
"Pascal Hertleif <[email protected]>",
"Jonas Platte <[email protected]>"]

version = "0.1.2"
version = "0.1.3"

description = "This extends Cargo to allow you to add and list dependencies by reading/writing to your `Cargo.toml` file from the command line. It contains `cargo add`, `cargo rm`, and `cargo list`."
readme = "README.md"
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,12 @@ Options:
--manifest-path=<path> Path to the manifest to add a dependency to.
-h --help Show this help page.
--version Show version.
--upgrade=<method> Choose method of semantic version upgrade. Must be one of
"none" (exact version), "patch" (`~` modifier), "minor"
(`^` modifier, default), or "all" (`>=`).
Add a dependency to a Cargo.toml manifest file. If <crate> is a github or gitlab repository URL, or
a local path, `cargo add` will try to automatically get the crate name and set the
Add a dependency to a Cargo.toml manifest file. If <crate> is a github or gitlab repository URL, or
a local path, `cargo add` will try to automatically get the crate name and set the
appropriate `--git` or `--path` value.
```

Expand Down
2 changes: 1 addition & 1 deletion src/bin/add/args.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// ! Handle `cargo add` arguments
//! Handle `cargo add` arguments
use semver;
use std::error::Error;
use cargo_edit::Dependency;
Expand Down
Loading

0 comments on commit 66f27e1

Please sign in to comment.