Merge pull request #725 from google:dependabot/cargo/proptest-1.9.0 #2658
ci.yml
on: push
doc / nightly
34s
Matrix: clippy
Matrix: integration-test-latest-deps
Matrix: integration-test
Matrix: lint / ubuntu
Matrix: test-latest-deps
Matrix: test-no-default-features
Matrix: test
Annotations
15 errors and 2 warnings
|
test (latest deps) / ubuntu / stable
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
test (no default features) / ubuntu / 1.85.0
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test / ubuntu / beta
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test / ubuntu / beta
The operation was canceled.
|
|
integration-test (latest deps) / ubuntu / stable
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test (latest deps) / ubuntu / stable
The operation was canceled.
|
|
integration-test / ubuntu / nightly
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test / ubuntu / nightly
The operation was canceled.
|
|
integration-test (latest deps) / ubuntu / beta
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test (latest deps) / ubuntu / beta
The operation was canceled.
|
|
integration-test (latest deps) / ubuntu / nightly
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test (latest deps) / ubuntu / nightly
The operation was canceled.
|
|
integration-test / ubuntu / 1.85.0
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
integration-test / ubuntu / 1.85.0
The operation was canceled.
|
|
CI
Canceling since a higher priority waiting request for CI-refs/heads/main exists
|
|
this `impl` can be derived:
googletest/src/matcher_support/summarize_diff.rs#L310
warning: this `impl` can be derived
--> googletest/src/matcher_support/summarize_diff.rs:310:1
|
310 | / impl Default for Buffer<'_> {
311 | | fn default() -> Self {
312 | | Self::Empty
313 | | }
314 | | }
| |_^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#derivable_impls
= note: `#[warn(clippy::derivable_impls)]` on by default
help: replace the manual implementation with a derive attribute and mark the default variant
|
249 + #[derive(Default)]
250 ~ enum Buffer<'a> {
251 ~ #[default]
252 ~ Empty,
|
|
|
this `impl` can be derived:
googletest/src/matcher_support/summarize_diff.rs#L310
warning: this `impl` can be derived
--> googletest/src/matcher_support/summarize_diff.rs:310:1
|
310 | / impl Default for Buffer<'_> {
311 | | fn default() -> Self {
312 | | Self::Empty
313 | | }
314 | | }
| |_^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#derivable_impls
= note: `#[warn(clippy::derivable_impls)]` on by default
help: replace the manual implementation with a derive attribute and mark the default variant
|
249 + #[derive(Default)]
250 ~ enum Buffer<'a> {
251 ~ #[default]
252 ~ Empty,
|
|