forked from dinakars777/git-time-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 687 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "git-time-machine"
version = "0.3.0"
edition = "2021"
authors = ["Dinakar Sarbada <dinakars777@gmail.com>"]
description = "🕰️ A beautiful TUI to undo ANY git mistake in 3 seconds"
license = "MIT"
repository = "https://github.com/dinakars777/git-time-machine"
keywords = ["git", "tui", "undo", "reflog", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "git-time-machine"
path = "src/main.rs"
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"