-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (30 loc) · 1 KB
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
33
34
35
[package]
name = "yact"
version = "2.6.1"
edition = "2024"
readme = "README.md"
license = "GPL-3.0-or-later"
authors = ["Nelson Penn"]
documentation = "https://docs.rs/yact"
repository = "https://github.com/NelsonAPenn/yact"
keywords = ["git", "libgit2", "formatter", "pre-commit", "hook"]
description = "Yet Another Commit Transformer: a tool for formatting staged files with minimal disturbance to developer workflow."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
strip = true
[dependencies]
clap = { version = "4.5.16", features = ["derive", "cargo"], optional = true }
git2 = { version = "0.20.4", default-features = false }
glob = "0.3.1"
semver = { version = "1.0.24", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8.19"
which = "8.0.5"
[features]
default = ["cli"]
cli = ["clap"]
# Used for creating temporary directories in unit tests
[dev-dependencies.uuid]
version = "1.10.0"
features = ["v4"]