-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
109 lines (98 loc) · 2.48 KB
/
Cargo.toml
File metadata and controls
109 lines (98 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[package]
name = "repoverlay"
version = "0.10.1"
edition = "2024"
rust-version = "1.90"
authors = ["Tyler Butler <tyler@tylerbutler.com>"]
description = "Overlay config files into git repositories without committing them"
license = "MIT"
repository = "https://github.com/tylerbutler/repoverlay"
homepage = "https://github.com/tylerbutler/repoverlay"
keywords = ["git", "overlay", "config", "symlink", "dotfiles"]
categories = ["command-line-utilities", "development-tools"]
exclude = [
".claude/",
".github/",
".planning/",
".serena/",
".vscode/",
"docs/",
"metrics/",
"mutants.out/",
"mutants.out.old/",
"scripts/",
"website/",
"repopo.config.ts",
"package.json",
"pnpm-lock.yaml",
"hk.pkl",
"codecov.yml",
]
[lib]
name = "repoverlay"
path = "src/lib.rs"
[[bin]]
name = "repoverlay"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.60", features = ["derive", "env"] }
clap_complete = "4.5"
clap-markdown = "0.1.5"
env_logger = "0.11"
log = "0.4"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.5.0"
chrono = { version = "0.4.44", features = ["serde"] }
thiserror = "2.0.18"
anyhow = "1.0.102"
colored = "3.1.1"
url = "2.5.8"
directories = "6.0.0"
dialoguer = "0.12.0"
crossterm = "0.29.0"
sickle = { version = "0.1.2", features = ["serde"] }
dirs = "6.0.0"
fuzzy-matcher = "0.3"
libc = "0.2"
tiny-update-check = "1.0"
similar = "2.7.0"
[build-dependencies]
vergen = { version = "9", features = ["build"] }
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Enables the `cargo build --profile profiling` command
[profile.profiling]
inherits = "release"
debug = true
# Profile for cargo-bloated analysis (requires panic=unwind)
[profile.bloat]
inherits = "release"
panic = "unwind"
[lints.rust]
unsafe_code = "warn"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
# Allow some pedantic lints that are too noisy
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
similar_names = "allow"
too_many_lines = "allow"
cognitive_complexity = "allow"
significant_drop_tightening = "allow"
# We explicitly use pub(crate) for API surface clarity even in private modules
redundant_pub_crate = "allow"