summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortummychow <tummychow@users.noreply.github.com>2018-03-10 23:25:33 -0800
committertummychow <tummychow@users.noreply.github.com>2018-03-10 23:25:33 -0800
commitb60fd38bc8b932ee439f6a8393f4bd8dc8d3e4ad (patch)
treed3d5eafef19ad53aecb17d0dfbd23d9514361f88
parent3c57fa416f1f1bacdf6b19789988dc84c9ae95f3 (diff)
clean up cargo.toml for crates.io
-rw-r--r--Cargo.toml18
1 files changed, 17 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 07bc8cb..9b88954 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,23 @@
[package]
name = "git-absorb"
version = "0.1.0"
-authors = ["tummychow <tummychow@users.noreply.github.com>"]
+
+authors = ["Stephen Jung <tummychow511@gmail.com>"]
+description = "git commit --fixup, but automatic"
+homepage = "https://github.com/tummychow/git-absorb"
+repository = "https://github.com/tummychow/git-absorb"
+readme = "README.md"
+license = "BSD-3-Clause"
+
+include = [
+ "**/*.rs",
+ "Cargo.*",
+ "*.md",
+]
+
+[[bin]]
+name = "git-absorb"
+path = "src/main.rs"
[dependencies]
git2 = "~0.6"