-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.16 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
[package]
name = "git-valet"
version = "0.2.2"
edition = "2024"
rust-version = "1.85"
description = "Transparently version private files (.env, secrets, notes, AI prompts) in a separate repo, synced via git hooks. Zero workflow change."
keywords = ["git", "private-files", "secrets", "cli", "hooks"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/JSpatim/git-valet"
homepage = "https://github.com/JSpatim/git-valet"
license = "MIT"
readme = "README.md"
exclude = [".github/", "tests/", "CONTRIBUTING.md", "SECURITY.md"]
[[bin]]
name = "git-valet"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
dirs = "5"
anyhow = "1"
colored = "2"
blake3 = "1"
dunce = "1"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"