chore(deps): bump crc from 3.0.1 to 3.2.1 (#1903) #3833
push-tester.yml
on: push
rust_checks
46s
rust_tests_coverage
2m 32s
apps_sdk_runtime_tests
2m 37s
web_client_test
3m 27s
ios_client_build
5m 21s
markdown_links_check
17s
Matrix: exo_build_check
Matrix: rust_tests
Annotations
71 warnings
assigning the result of `Clone::clone()` may be inefficient:
store/src/local/mutation_index/query.rs#L526
warning: assigning the result of `Clone::clone()` may be inefficient
--> store/src/local/mutation_index/query.rs:526:17
|
526 | part.field = part.text.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `part.field.clone_from(&part.text)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
|
usage of a legacy numeric constant:
store/src/local/entity_index/mod.rs#L578
warning: usage of a legacy numeric constant
--> store/src/local/entity_index/mod.rs:578:66
|
578 | let block_offset = result.block_offset.unwrap_or(std::u64::MAX);
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
578 | let block_offset = result.block_offset.unwrap_or(u64::MAX);
| ~~~~~~~~
|
assigning the result of `Clone::clone()` may be inefficient:
store/src/local/entity_index/iterator.rs#L133
warning: assigning the result of `Clone::clone()` may be inefficient
--> store/src/local/entity_index/iterator.rs:133:17
|
133 | entity_id = next_id.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `entity_id.clone_from(next_id)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
|
usage of a legacy numeric constant:
store/src/local/entity_index/aggregator.rs#L188
warning: usage of a legacy numeric constant
--> store/src/local/entity_index/aggregator.rs:188:67
|
188 | if current_operation_id > last_operation_id.unwrap_or(std::u64::MIN) {
| ^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `#[warn(clippy::legacy_numeric_constants)]` on by default
help: use the associated constant instead
|
188 | if current_operation_id > last_operation_id.unwrap_or(u64::MIN) {
| ~~~~~~~~
|
assigning the result of `Clone::clone()` may be inefficient:
store/src/local/entity_index/aggregator.rs#L115
warning: assigning the result of `Clone::clone()` may be inefficient
--> store/src/local/entity_index/aggregator.rs:115:13
|
115 | entity_id = current_mutation.entity_id.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `entity_id.clone_from(¤t_mutation.entity_id)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
= note: `#[warn(clippy::assigning_clones)]` on by default
|
field `remaining` is never read:
store/src/local/mutation_index/results.rs#L61
warning: field `remaining` is never read
--> store/src/local/mutation_index/results.rs:61:9
|
58 | pub struct MutationResults {
| --------------- field in this struct
...
61 | pub remaining: usize,
| ^^^^^^^^^
|
field `matched_mutation` is never read:
store/src/local/entity_index/searcher.rs#L285
warning: field `matched_mutation` is never read
--> store/src/local/entity_index/searcher.rs:285:9
|
284 | pub struct SearchResult {
| ------------ field in this struct
285 | pub matched_mutation: MutationMetadata,
| ^^^^^^^^^^^^^^^^
|
field `last_block_offset` is never read:
store/src/local/entity_index/aggregator.rs#L59
warning: field `last_block_offset` is never read
--> store/src/local/entity_index/aggregator.rs:59:9
|
28 | pub struct EntityAggregator {
| ---------------- field in this struct
...
59 | pub last_block_offset: Option<BlockOffset>,
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|
field `0` is never read:
chain/src/chain/directory/tracker.rs#L162
warning: field `0` is never read
--> chain/src/chain/directory/tracker.rs:162:10
|
162 | Read(Arc<memmap2::Mmap>),
| ---- ^^^^^^^^^^^^^^^^^^
| |
| field in this variant
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
162 | Read(()),
| ~~
|
assigning the result of `Clone::clone()` may be inefficient:
transport/src/messages.rs#L86
warning: assigning the result of `Clone::clone()` may be inefficient
--> transport/src/messages.rs:86:9
|
86 | msg.connection = self.connection.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `msg.connection.clone_from(&self.connection)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
= note: `#[warn(clippy::assigning_clones)]` on by default
|
field `0` is never read:
core/src/sec/keys.rs#L20
warning: field `0` is never read
--> core/src/sec/keys.rs:20:15
|
20 | Secp256k1(libp2p_secp256k1::Keypair),
| --------- ^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| field in this variant
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
20 | Secp256k1(()),
| ~~
|
rust_checks
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rust_checks
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rust_checks
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/
|
rust_checks
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/
|
rust_checks
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/
|
rust_checks
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/
|
exo_build_check (aarch64-apple-darwin, macos-14, false)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
exo_build_check (aarch64-apple-darwin, macos-14, false)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
exo_build_check (aarch64-apple-darwin, macos-14, false)
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/
|
exo_build_check (aarch64-apple-darwin, macos-14, false)
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/
|
exo_build_check (aarch64-apple-darwin, macos-14, false)
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/
|
exo_build_check (aarch64-apple-darwin, macos-14, false)
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/
|
exo_build_check (armv7-unknown-linux-gnueabihf, ubuntu-latest, true)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
exo_build_check (armv7-unknown-linux-gnueabihf, ubuntu-latest, true)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
exo_build_check (armv7-unknown-linux-gnueabihf, ubuntu-latest, true)
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/
|
exo_build_check (armv7-unknown-linux-gnueabihf, ubuntu-latest, true)
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/
|
exo_build_check (armv7-unknown-linux-gnueabihf, ubuntu-latest, true)
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/
|
exo_build_check (armv7-unknown-linux-gnueabihf, ubuntu-latest, true)
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/
|
rust_tests (x86_64-apple-darwin, macos-14)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rust_tests (x86_64-apple-darwin, macos-14)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rust_tests (x86_64-apple-darwin, macos-14)
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/
|
rust_tests (x86_64-apple-darwin, macos-14)
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/
|
rust_tests (x86_64-apple-darwin, macos-14)
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/
|
rust_tests (x86_64-apple-darwin, macos-14)
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/
|
rust_tests (x86_64-unknown-linux-gnu, ubuntu-latest)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rust_tests (x86_64-unknown-linux-gnu, ubuntu-latest)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rust_tests (x86_64-unknown-linux-gnu, ubuntu-latest)
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/
|
rust_tests (x86_64-unknown-linux-gnu, ubuntu-latest)
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/
|
rust_tests (x86_64-unknown-linux-gnu, ubuntu-latest)
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/
|
rust_tests (x86_64-unknown-linux-gnu, ubuntu-latest)
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/
|
rust_tests_coverage
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rust_tests_coverage
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rust_tests_coverage
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/
|
rust_tests_coverage
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/
|
rust_tests_coverage
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/
|
rust_tests_coverage
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/
|
apps_sdk_runtime_tests
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
apps_sdk_runtime_tests
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
apps_sdk_runtime_tests
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/
|
apps_sdk_runtime_tests
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/
|
apps_sdk_runtime_tests
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/
|
apps_sdk_runtime_tests
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/
|
web_client_test
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
web_client_test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
web_client_test
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/
|
web_client_test
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/
|
web_client_test
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/
|
web_client_test
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/
|
rust_tests (x86_64-pc-windows-msvc, windows-latest)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected], actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
rust_tests (x86_64-pc-windows-msvc, windows-latest)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected], actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
rust_tests (x86_64-pc-windows-msvc, windows-latest)
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/
|
rust_tests (x86_64-pc-windows-msvc, windows-latest)
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/
|
rust_tests (x86_64-pc-windows-msvc, windows-latest)
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/
|
rust_tests (x86_64-pc-windows-msvc, windows-latest)
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/
|
ios_client_build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
ios_client_build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/[email protected]. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
ios_client_build
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/
|
ios_client_build
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/
|
ios_client_build
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/
|
ios_client_build
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/
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
playwright-report
Expired
|
184 KB |
|