Skip to content

Commit feb4b97

Browse files
committed
bumping rust to 1.83.0
1 parent 3b05bc1 commit feb4b97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.82.0"
2+
channel = "1.83.0"
33
components = ["clippy", "rustfmt"]
44
targets = ["x86_64-apple-darwin", "aarch64-apple-darwin", "x86_64-unknown-linux-gnu"]

src/ownership/file_owner_finder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub struct FileOwnerFinder<'a> {
1212
pub owner_matchers: &'a [OwnerMatcher],
1313
}
1414

15-
impl<'a> FileOwnerFinder<'a> {
15+
impl FileOwnerFinder<'_> {
1616
pub fn find(&self, relative_path: &Path) -> Vec<Owner> {
1717
let mut team_sources_map: HashMap<&TeamName, Vec<Source>> = HashMap::new();
1818
let mut directory_overrider = DirectoryOverrider::default();

0 commit comments

Comments
 (0)