Skip to content

Commit 59a6b74

Browse files
kevinmattheswert007
authored andcommitted
[Enhancement] Fix #25; enhance Cargo.toml
1 parent b3021c5 commit 59a6b74

File tree

3 files changed

+29
-22
lines changed

3 files changed

+29
-22
lines changed

Cargo.lock

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
[package]
2+
categories = ["command-line-utilities"]
3+
description = "Gets the time somebody worked on something from `git log`."
4+
edition = "2021"
5+
keywords = ["cli", "git", "summary", "time"]
6+
license = "MIT"
27
name = "commit-analyzer"
8+
repository = "https://github.com/wert007/commit-analyzer"
39
version = "0.1.0"
4-
edition = "2021"
5-
6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
710

811
[dependencies]
9-
chrono = "*"
10-
clap = { version = "*", features = ["derive"] }
11-
sysexits = "*"
12+
chrono = "0.4.19"
13+
clap = { version = "3.2.6", features = ["derive"] }
14+
sysexits = "0.3.0"

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Commit Analyzer
22

3+
## Summary
4+
5+
Gets the time somebody worked on something from `git log`.
6+
37
## Description
48

59
This is a simple tool which grabs the output of `git log --numstat` and analyzes

0 commit comments

Comments
 (0)