-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 1023 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 1023 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
32
[package]
name = "clog"
version = "0.9.1" # Managed by `release.sh`
authors = ["Zacchary Dempsey-Plante <zacc@ztdp.ca>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zedseven/clog"
homepage = "https://github.com/zedseven/clog"
description = """\
A utility for pulling information from the Git commit log of a repo, then processing it into actionable data. \
The name comes from the phrase \"Commit Log\", but you can also think of it as the variety of shoe.\
"""
[profile.release]
codegen-units = 1
lto = true
[dependencies]
anyhow = "1.0"
clap = { version = "4.1", features = ["wrap_help"] }
copypasta = "0.10"
linked_hash_set = "0.1"
regex = "1.7"
shell-words = "1.1"
[target.'cfg(windows)'.build-dependencies]
winresource = "0.1"
[package.metadata.winresource]
FileDescription = "CLog" # Even though this property is called a "description", it's actually used as the application name in Task Manager
LegalCopyright = "© 2025 Zacchary Dempsey-Plante"
OriginalFilename = "clog.exe"