-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
56 lines (46 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "samoyed"
version = "0.2.3"
authors = ["Behrang Saeedzadeh <hello@behrang.org>"]
edition = "2024"
rust-version = "1.90.0"
readme = "README.md"
homepage = "https://github.com/nutthead/samoyed"
repository = "https://github.com/nutthead/samoyed"
license = "MIT"
description = "A single-binary, minimal, cross-platform Git hooks manager"
keywords = ["git", "git-hooks", "git-hooks-manager", "husky"]
exclude = [
".claude/",
".github/",
".gitignore",
".samoyed/",
".docs/",
".assets/",
".cargo/",
".markdownlint.json",
".tarpaulin.toml",
".release-plz.toml",
"clippy.toml",
"CLAUDE.md",
"AGENTS.md",
"flake.nix",
"flake.lock",
"tmp/",
]
[[bin]]
name = "samoyed"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
[dev-dependencies]
tempfile = "3.23"
[profile.release]
opt-level = 3 # Optimize for speed
lto = "fat" # Link Time Optimization (better optimization)
codegen-units = 1 # Single codegen unit (better optimization)
strip = true # Remove debug symbols (size)
[profile.release.package."*"]
opt-level = 3 # Optimize for speed
codegen-units = 1 # Single codegen unit (better optimization)
strip = true # Remove debug symbols (size)