[package] name = "git-statistics" description = "Collect commits from Git repository and present statistics in a comfortable way." version = "0.1.0" edition = "2021" repository = "https://github.com/hyzmm/git-statistics.git" license = "GPL-3.0-only" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] path = "src/bin/git-stats.rs" name = "git-stats" [lib] path = "src/lib.rs" [dependencies] clap = { version = "4", features = ["derive"] } comfy-table = "7" log = "0.4" serde = { version = "1.0.188", features = ["derive"] } serde_json = "1.0.107" itertools = "0.11.0"