We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be52d8 commit d5f0f6dCopy full SHA for d5f0f6d
.claude/settings.local.json
@@ -26,7 +26,7 @@
26
"Bash(test:*)",
27
"WebFetch(domain:github.com)",
28
"Bash(ls:*)",
29
- "Bash(grep:*)",
+ "Bash(grep:*)"
30
],
31
"deny": [],
32
"ask": []
.github/actions/setup-rust/action.yml
@@ -42,6 +42,6 @@ runs:
42
- name: Install Cargo tools
43
shell: bash
44
run: |
45
- cargo install taplo-cli --locked
46
- cargo install just
47
- cargo install --version 0.8.0 cargo-machete --locked
+ command -v taplo &> /dev/null || cargo install taplo-cli --locked
+ command -v just &> /dev/null || cargo install just
+ command -v cargo-machete &> /dev/null || cargo install --version 0.8.0 cargo-machete --locked
0 commit comments