Skip to content

Commit

Permalink
Add More Information to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
killercup committed Nov 21, 2015
1 parent 28bfe43 commit 93afed3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
[package]
name = "cargo-edit"
authors = ["Without Boats <[email protected]>", "Pascal Hertleif <[email protected]>"]
description = "Edit your Cargo.toml from the command line."
homepage = "https://github.com/killercup/cargo-edit"

version = "0.1.0"

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"
keywords = ["cargo", "cargo-subcommand", "cli", "dependencies", "crates"]
license = "Apache-2.0/MIT"
name = "cargo-edit"

documentation = "http://killercup.github.io/cargo-edit/"
homepage = "https://github.com/killercup/cargo-edit"
repository = "https://github.com/killercup/cargo-edit"
version = "0.1.0"

[[bin]]
name = "cargo-list"
Expand All @@ -14,6 +20,7 @@ path = "src/bin/list/main.rs"
[features]
default = []
dev = ["clippy"]

[[bin]]
name = "cargo-add"
path = "src/bin/add/main.rs"
Expand Down

0 comments on commit 93afed3

Please sign in to comment.