Skip to content

Commit abf7961

Browse files
fix(deps): update rust crate toml to v0.8.23 (#153)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent ae46706 commit abf7961

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/src/middleware/arrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ impl<Element: Clone + PartialEq, Window: Clone + PartialEq> Middleware<Element,
219219
impl<Element: Clone, Window: Clone> MiddlewareWithOptions<Element, Window, ArrowOptions<Element>>
220220
for Arrow<'_, Element, Window>
221221
{
222-
fn options(&self) -> &Derivable<Element, Window, ArrowOptions<Element>> {
222+
fn options(&self) -> &Derivable<'_, Element, Window, ArrowOptions<Element>> {
223223
&self.options
224224
}
225225
}

packages/core/src/middleware/auto_placement.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ impl<Element: Clone, Window: Clone>
372372
MiddlewareWithOptions<Element, Window, AutoPlacementOptions<Element>>
373373
for AutoPlacement<'_, Element, Window>
374374
{
375-
fn options(&self) -> &Derivable<Element, Window, AutoPlacementOptions<Element>> {
375+
fn options(&self) -> &Derivable<'_, Element, Window, AutoPlacementOptions<Element>> {
376376
&self.options
377377
}
378378
}

packages/core/src/middleware/flip.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ impl<Element: Clone + PartialEq, Window: Clone + PartialEq> Middleware<Element,
402402
impl<Element: Clone, Window: Clone> MiddlewareWithOptions<Element, Window, FlipOptions<Element>>
403403
for Flip<'_, Element, Window>
404404
{
405-
fn options(&self) -> &Derivable<Element, Window, FlipOptions<Element>> {
405+
fn options(&self) -> &Derivable<'_, Element, Window, FlipOptions<Element>> {
406406
&self.options
407407
}
408408
}

packages/core/src/middleware/hide.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl<Element: Clone + PartialEq, Window: Clone + PartialEq> Middleware<Element,
203203
impl<Element: Clone, Window: Clone> MiddlewareWithOptions<Element, Window, HideOptions<Element>>
204204
for Hide<'_, Element, Window>
205205
{
206-
fn options(&self) -> &Derivable<Element, Window, HideOptions<Element>> {
206+
fn options(&self) -> &Derivable<'_, Element, Window, HideOptions<Element>> {
207207
&self.options
208208
}
209209
}

packages/core/src/middleware/inline.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ impl<Element: Clone + PartialEq + 'static, Window: Clone + PartialEq + 'static>
317317
impl<Element: Clone, Window: Clone> MiddlewareWithOptions<Element, Window, InlineOptions>
318318
for Inline<'_, Element, Window>
319319
{
320-
fn options(&self) -> &Derivable<Element, Window, InlineOptions> {
320+
fn options(&self) -> &Derivable<'_, Element, Window, InlineOptions> {
321321
&self.options
322322
}
323323
}

packages/core/src/middleware/offset.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ impl<Element: Clone + PartialEq, Window: Clone + PartialEq> Middleware<Element,
227227
impl<Element: Clone, Window: Clone> MiddlewareWithOptions<Element, Window, OffsetOptions>
228228
for Offset<'_, Element, Window>
229229
{
230-
fn options(&self) -> &Derivable<Element, Window, OffsetOptions> {
230+
fn options(&self) -> &Derivable<'_, Element, Window, OffsetOptions> {
231231
&self.options
232232
}
233233
}

packages/core/src/middleware/shift.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ impl<Element: Clone, Window: Clone>
252252
MiddlewareWithOptions<Element, Window, ShiftOptions<Element, Window>>
253253
for Shift<'_, Element, Window>
254254
{
255-
fn options(&self) -> &Derivable<Element, Window, ShiftOptions<Element, Window>> {
255+
fn options(&self) -> &Derivable<'_, Element, Window, ShiftOptions<Element, Window>> {
256256
&self.options
257257
}
258258
}

packages/core/src/middleware/size.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ impl<'a, Element: Clone, Window: Clone>
269269
MiddlewareWithOptions<Element, Window, SizeOptions<'a, Element, Window>>
270270
for Size<'a, Element, Window>
271271
{
272-
fn options(&self) -> &Derivable<Element, Window, SizeOptions<'a, Element, Window>> {
272+
fn options(&self) -> &Derivable<'_, Element, Window, SizeOptions<'a, Element, Window>> {
273273
&self.options
274274
}
275275
}

0 commit comments

Comments
 (0)