Skip to content

Commit 7b56936

Browse files
Updated rust version to 1.91.1
Signed-off-by: sougata-progress <sougatab@progress.com>
1 parent ab165af commit 7b56936

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

components/builder-db/src/models/origin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ impl Origin {
334334
origin_members::table.filter(origin_members::origin.eq(origin))
335335
.filter(origin_members::account_id.eq(account_id))
336336
.execute(conn)
337-
.map(|s| (s > 0))
337+
.map(|s| s > 0)
338338
}
339339
}
340340

components/github-api-client/src/client.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -244,12 +244,6 @@ impl GitHubClient {
244244
}
245245
}
246246

247-
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
248-
struct RepositoryList {
249-
pub total_count: u32,
250-
pub repositories: Vec<Repository>,
251-
}
252-
253247
fn generate_app_token<T, U>(key_path: T, app_id: &U) -> HubResult<String>
254248
where T: AsRef<Path>,
255249
U: ToString

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.89.0"
2+
channel = "1.91.1"

0 commit comments

Comments
 (0)