File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
55
- run : docker compose up -d
56
56
- uses : sfackler/actions/rustup@master
57
57
with :
58
- version : 1.64 .0
58
+ version : 1.65 .0
59
59
- run : echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
60
60
id : rust-version
61
61
- uses : actions/cache@v3
Original file line number Diff line number Diff line change @@ -1184,17 +1184,17 @@ impl BorrowToSql for &dyn ToSql {
1184
1184
}
1185
1185
}
1186
1186
1187
- impl sealed:: Sealed for Box < dyn ToSql + Sync > { }
1187
+ impl < ' a > sealed:: Sealed for Box < dyn ToSql + Sync + ' a > { }
1188
1188
1189
- impl BorrowToSql for Box < dyn ToSql + Sync > {
1189
+ impl < ' a > BorrowToSql for Box < dyn ToSql + Sync + ' a > {
1190
1190
#[ inline]
1191
1191
fn borrow_to_sql ( & self ) -> & dyn ToSql {
1192
1192
self . as_ref ( )
1193
1193
}
1194
1194
}
1195
1195
1196
- impl sealed:: Sealed for Box < dyn ToSql + Sync + Send > { }
1197
- impl BorrowToSql for Box < dyn ToSql + Sync + Send > {
1196
+ impl < ' a > sealed:: Sealed for Box < dyn ToSql + Sync + Send + ' a > { }
1197
+ impl < ' a > BorrowToSql for Box < dyn ToSql + Sync + Send + ' a > {
1198
1198
#[ inline]
1199
1199
fn borrow_to_sql ( & self ) -> & dyn ToSql {
1200
1200
self . as_ref ( )
You can’t perform that action at this time.
0 commit comments