Skip to content

Add the Map::retain method (#460) #550

Add the Map::retain method (#460)

Add the Map::retain method (#460) #550

Re-run triggered July 1, 2023 11:18
Status Failure
Total duration 10m 45s
Artifacts

ci.yaml

on: push
Clippy: stable
21s
Clippy: stable
Format: stable
9s
Format: stable
Coverage: nightly
10m 34s
Coverage: nightly
Matrix: Tests
Fit to window
Zoom out
Zoom in

Annotations

1 error and 41 warnings
Coverage: nightly
Process completed with exit code 101.
Format: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Format: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Format: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Format: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
casting to the same type is unnecessary (`u64` -> `u64`): src/parse.rs#L330
warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/parse.rs:330:44 | 330 | ... Ok(AnyNum::U64(x as u64)) | ^^^^^^^^ help: try: `x` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`i64` -> `i64`): src/parse.rs#L302
warning: casting to the same type is unnecessary (`i64` -> `i64`) --> src/parse.rs:302:44 | 302 | ... Ok(AnyNum::I64(x as i64)) | ^^^^^^^^ help: try: `x` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L421
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:421:28 | 421 | .map_or(true, |&(ref config, _)| config.escape_strings) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 421 - .map_or(true, |&(ref config, _)| config.escape_strings) 421 + .map_or(true, |(config, _)| config.escape_strings) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L415
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:415:47 | 415 | .map_or(Extensions::empty(), |&(ref config, _)| config.extensions) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 415 - .map_or(Extensions::empty(), |&(ref config, _)| config.extensions) 415 + .map_or(Extensions::empty(), |(config, _)| config.extensions) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L407
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:407:29 | 407 | .map_or(false, |&(ref config, _)| config.compact_maps) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 407 - .map_or(false, |&(ref config, _)| config.compact_maps) 407 + .map_or(false, |(config, _)| config.compact_maps) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L401
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:401:29 | 401 | .map_or(false, |&(ref config, _)| config.compact_structs) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 401 - .map_or(false, |&(ref config, _)| config.compact_structs) 401 + .map_or(false, |(config, _)| config.compact_structs) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L395
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:395:29 | 395 | .map_or(false, |&(ref config, _)| config.compact_arrays) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 395 - .map_or(false, |&(ref config, _)| config.compact_arrays) 395 + .map_or(false, |(config, _)| config.compact_arrays) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L389
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:389:29 | 389 | .map_or(false, |&(ref config, _)| config.separate_tuple_members) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference = note: `#[warn(clippy::needless_borrowed_reference)]` on by default help: try removing the `&` and `ref` parts | 389 - .map_or(false, |&(ref config, _)| config.separate_tuple_members) 389 + .map_or(false, |(config, _)| config.separate_tuple_members) |
Clippy: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy: stable
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (nightly)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (stable)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (1.57.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (1.57.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (1.57.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Tests (1.57.0)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Coverage: nightly
Failed to restore: The operation cannot be completed in timeout.
Coverage: nightly
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Coverage: nightly
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Coverage: nightly
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Coverage: nightly
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
casting to the same type is unnecessary (`u64` -> `u64`): src/parse.rs#L330
warning: casting to the same type is unnecessary (`u64` -> `u64`) --> src/parse.rs:330:44 | 330 | ... Ok(AnyNum::U64(x as u64)) | ^^^^^^^^ help: try: `x` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
casting to the same type is unnecessary (`i64` -> `i64`): src/parse.rs#L302
warning: casting to the same type is unnecessary (`i64` -> `i64`) --> src/parse.rs:302:44 | 302 | ... Ok(AnyNum::I64(x as i64)) | ^^^^^^^^ help: try: `x` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast = note: `#[warn(clippy::unnecessary_cast)]` on by default
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L421
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:421:28 | 421 | .map_or(true, |&(ref config, _)| config.escape_strings) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 421 - .map_or(true, |&(ref config, _)| config.escape_strings) 421 + .map_or(true, |(config, _)| config.escape_strings) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L415
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:415:47 | 415 | .map_or(Extensions::empty(), |&(ref config, _)| config.extensions) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 415 - .map_or(Extensions::empty(), |&(ref config, _)| config.extensions) 415 + .map_or(Extensions::empty(), |(config, _)| config.extensions) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L407
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:407:29 | 407 | .map_or(false, |&(ref config, _)| config.compact_maps) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 407 - .map_or(false, |&(ref config, _)| config.compact_maps) 407 + .map_or(false, |(config, _)| config.compact_maps) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L401
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:401:29 | 401 | .map_or(false, |&(ref config, _)| config.compact_structs) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 401 - .map_or(false, |&(ref config, _)| config.compact_structs) 401 + .map_or(false, |(config, _)| config.compact_structs) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L395
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:395:29 | 395 | .map_or(false, |&(ref config, _)| config.compact_arrays) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 395 - .map_or(false, |&(ref config, _)| config.compact_arrays) 395 + .map_or(false, |(config, _)| config.compact_arrays) |
dereferencing a tuple pattern where every element takes a reference: src/ser/mod.rs#L389
warning: dereferencing a tuple pattern where every element takes a reference --> src/ser/mod.rs:389:29 | 389 | .map_or(false, |&(ref config, _)| config.separate_tuple_members) | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference = note: `#[warn(clippy::needless_borrowed_reference)]` on by default help: try removing the `&` and `ref` parts | 389 - .map_or(false, |&(ref config, _)| config.separate_tuple_members) 389 + .map_or(false, |(config, _)| config.separate_tuple_members) |