This repository was archived by the owner on Oct 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmise.toml
More file actions
53 lines (43 loc) · 1.32 KB
/
Copy pathmise.toml
File metadata and controls
53 lines (43 loc) · 1.32 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
[tools]
rust = "1.87"
"pipx:gitingest" = { version = "latest" }
"pipx:pre-commit" = { version = "latest" }
[tasks.build]
description = "Run build."
run = ["cargo build"]
[tasks.coverage]
description = "Run coverage."
run = ["cargo tarpaulin --out Html --all-targets"]
[tasks.format]
description = "Run format."
run = ["cargo fmt --all"]
[tasks.lint]
description = "Run lint."
run = ["cargo clippy --all-targets -- -D warnings"]
[tasks.test]
description = "Run tests."
run = ["cargo test"]
[tasks.test-debug]
description = "Run tests in debug mode."
run = ["cargo test --features debug"]
[tasks.ready]
description = "Prepare for commit."
run = [
"cargo fmt --all",
"cargo clippy --all-targets -- -D warnings",
"cargo test",
"cargo build",
"gitingest -o docs/digest.txt -e *.toml,*.txt,.roo/*,.cursor/*,build/*,.devenv/*,.direnv/*,docs/digest.txt,docs/archive/* .",
]
[tasks.digest]
description = "Run gitingest on current directory."
run = [
"gitingest -o docs/digest.txt -e *.toml,*.txt,.roo/*,.cursor/*,build/*,.devenv/*,.direnv/*,docs/digest.txt,docs/archive/*,*.lock ."
]
[tasks.doctor]
description = "Prepares the project for development."
run = [
"pre-commit install --install-hooks --overwrite"
]
[env]
LIBRARY_PATH = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib"