Skip to content

Commit ed381e4

Browse files
authored
Merge pull request #164 from epage/template
chore: Update from _rust template
2 parents 9625bc0 + 7bd4180 commit ed381e4

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/renovate.json5

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
run: cargo install sarif-fmt --locked
145145
- name: Check
146146
run: >
147-
cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
147+
cargo clippy --workspace --all-features --all-targets --message-format=json
148148
| clippy-sarif
149149
| tee clippy-results.sarif
150150
| sarif-fmt

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ rc_mutex = "warn"
7070
redundant_feature_names = "warn"
7171
ref_option_ref = "warn"
7272
rest_pat_in_fully_bound_structs = "warn"
73+
result_large_err = "allow"
7374
same_functions_in_if_condition = "warn"
7475
self_named_module_files = "warn"
7576
semicolon_if_nothing_returned = "warn"
@@ -99,7 +100,7 @@ include.workspace = true
99100

100101
[package.metadata.docs.rs]
101102
all-features = true
102-
rustdoc-args = ["--cfg", "docsrs"]
103+
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
103104

104105
[package.metadata.release]
105106
tag-name = "{{version}}"

src/renderer/display_list.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ pub(crate) struct DisplayList<'a> {
5555
pub(crate) anonymized_line_numbers: bool,
5656
}
5757

58-
impl<'a> PartialEq for DisplayList<'a> {
58+
impl PartialEq for DisplayList<'_> {
5959
fn eq(&self, other: &Self) -> bool {
6060
self.body == other.body && self.anonymized_line_numbers == other.anonymized_line_numbers
6161
}
6262
}
6363

64-
impl<'a> fmt::Debug for DisplayList<'a> {
64+
impl fmt::Debug for DisplayList<'_> {
6565
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
6666
f.debug_struct("DisplayList")
6767
.field("body", &self.body)
@@ -70,7 +70,7 @@ impl<'a> fmt::Debug for DisplayList<'a> {
7070
}
7171
}
7272

73-
impl<'a> Display for DisplayList<'a> {
73+
impl Display for DisplayList<'_> {
7474
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
7575
let lineno_width = self.body.iter().fold(0, |max, set| {
7676
set.display_lines.iter().fold(max, |max, line| match line {
@@ -156,7 +156,7 @@ pub(crate) struct DisplaySet<'a> {
156156
pub(crate) margin: Margin,
157157
}
158158

159-
impl<'a> DisplaySet<'a> {
159+
impl DisplaySet<'_> {
160160
fn format_label(
161161
&self,
162162
line_offset: usize,
@@ -791,7 +791,7 @@ pub(crate) struct DisplaySourceAnnotation<'a> {
791791
pub(crate) annotation_part: DisplayAnnotationPart,
792792
}
793793

794-
impl<'a> DisplaySourceAnnotation<'a> {
794+
impl DisplaySourceAnnotation<'_> {
795795
fn has_label(&self) -> bool {
796796
!self
797797
.annotation
@@ -932,7 +932,7 @@ pub(crate) enum DisplayHeaderType {
932932

933933
struct CursorLines<'a>(&'a str);
934934

935-
impl<'a> CursorLines<'a> {
935+
impl CursorLines<'_> {
936936
fn new(src: &str) -> CursorLines<'_> {
937937
CursorLines(src)
938938
}

0 commit comments

Comments
 (0)