Skip to content

Commit da7ff82

Browse files
committed
chore: Update from _rust template
2 parents ab1d854 + dabd07a commit da7ff82

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/renovate.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
matchManagers: [
3333
'custom.regex',
3434
],
35-
matchPackageNames: [
35+
matchDepNames: [
3636
'STABLE',
3737
],
3838
extractVersion: '^(?<version>\\d+\\.\\d+)', // Drop the patch version

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
run: cargo install sarif-fmt --locked
147147
- name: Check
148148
run: >
149-
cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
149+
cargo clippy --workspace --all-features --all-targets --message-format=json
150150
| clippy-sarif
151151
| tee clippy-results.sarif
152152
| sarif-fmt

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Specifically, we would encourage
4949
- File renames be isolated into their own commit
5050
- Add tests in a commit before their feature or fix, showing the current behavior.
5151
The diff for the feature/fix commit will then show how the behavior changed,
52-
making it clearer to reviewrs and the community and showing people that the
52+
making it clearer to reviewers and the community and showing people that the
5353
test is verifying the expected state.
5454
- e.g. [clap#5520](https://github.com/clap-rs/clap/pull/5520)
5555

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ rc_mutex = "warn"
7272
redundant_feature_names = "warn"
7373
ref_option_ref = "warn"
7474
rest_pat_in_fully_bound_structs = "warn"
75+
result_large_err = "allow"
7576
same_functions_in_if_condition = "warn"
7677
self_named_module_files = "warn"
7778
semicolon_if_nothing_returned = "warn"
@@ -104,7 +105,7 @@ include.workspace = true
104105

105106
[package.metadata.docs.rs]
106107
all-features = true
107-
rustdoc-args = ["--cfg", "docsrs"]
108+
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
108109

109110
[package.metadata.release]
110111
pre-release-replacements = [

0 commit comments

Comments
 (0)