-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
authors = ["Ark <target.ark@gmail.com>"]
categories = ["command-line-utilities"]
description = "A CLI tool to quickly browse the git history of files on a terminal"
edition = "2018"
keywords = ["git", "cli", "terminal", "diff"]
license = "MIT"
name = "git-hist"
readme = "README.md"
repository = "https://github.com/arkark/git-hist"
version = "1.0.5"
[dependencies]
anyhow = "1.0"
chrono = "0.4"
clap = {version = "3.2", features = ["wrap_help"]}
crossterm = "0.24"
git2 = {version = "0.14", features = ["vendored-openssl"]}
itertools = "0.10"
once_cell = "1.13"
similar = {version = "2.1", features = ["bytes", "inline"]}
tui = {version = "0.18", default-features = false, features = ["crossterm"]}
[[bin]]
name = "git-hist"
path = "src/bin/main.rs"