-
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) · 749 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 749 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 = "husky-rs"
version = "0.4.0"
edition = "2021"
rust-version = "1.83"
description = "Git hooks manager for Rust projects - automatically install and manage Git hooks on build"
authors = ["Mystic"]
repository = "https://github.com/pplmx/husky-rs"
homepage = "https://github.com/pplmx/husky-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["git", "hooks", "husky", "development-tools", "pre-commit"]
categories = ["development-tools", "command-line-utilities"]
exclude = [".github/", "tests/fixtures/"]
build = "build.rs"
[[bin]]
name = "husky"
path = "src/bin/husky.rs"
[dev-dependencies]
husky-rs = { path = "." }
[features]
default = []
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true