-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#1061] rust lint dependency graph and maintenance update
- Loading branch information
Showing
16 changed files
with
354 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MEMORY_LIMIT=128Mi | ||
MEMORY_REQUEST=64Mi | ||
MEMORY_LIMIT=64Mi | ||
MEMORY_REQUEST=32Mi | ||
CPU_LIMIT=100m | ||
CPU_REQUEST=50m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
repos: | ||
- repo: https://github.com/gitleaks/gitleaks | ||
rev: v8.18.4 | ||
rev: v8.19.1 | ||
hooks: | ||
- id: gitleaks | ||
- repo: https://github.com/EmbarkStudios/cargo-deny | ||
rev: 0.16.1 | ||
hooks: | ||
- id: cargo-deny | ||
args: ["--all-features", "check"] # optionally modify the arguments for cargo-deny (default arguments shown here) | ||
- repo: local | ||
hooks: | ||
- id: cargo-fmt | ||
name: Cargo formatter (cargo fmt) | ||
entry: bash -c 'cargo fmt' | ||
language: system | ||
types: [rust] | ||
pass_filenames: false | ||
- id: cargo-clippy | ||
name: Cargo linter (cargo clippy) | ||
entry: bash -c 'cargo clippy' | ||
language: system | ||
types: [rust] | ||
pass_filenames: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.