-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 737 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 737 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
27
28
29
30
31
[package]
name = "walrust"
version = "0.1.0"
edition = "2021"
authors = ["Cory Todd <cory@corytodd.us>"]
description = "🦭 Git commit queries at Walrus speed"
license = "MIT"
repository = "https://github.com/corytodd/walrust"
homepage = "https://github.com/corytodd/walrust"
documentation = "https://github.com/corytodd/walrust#readme"
keywords = ["git", "cli", "commit", "query"]
categories = ["command-line-utilities", "version-control"]
readme = "README.md"
[dependencies]
chrono = "0.4.44"
clap = { version = "4.5.60", features = ["derive"] }
git2 = "0.20.4"
log = "0.4"
[dev-dependencies]
lazy_static = "1.5.0"
tempfile = "3.26"
[lib]
name = "walrust"
path = "src/lib.rs"
[[bin]]
name = "walrust"
path = "src/bin/walrust.rs"