Implement PNI #835
Annotations
149 warnings
Check code formatting
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
using `clone` on type `PublicKey` which implements the `Copy` trait:
libsignal-service/src/account_manager.rs#L292
warning: using `clone` on type `PublicKey` which implements the `Copy` trait
--> libsignal-service/src/account_manager.rs:292:28
|
292 | let identity_key = protocol_store
| ____________________________^
293 | | .get_identity_key_pair()
294 | | .instrument(tracing::trace_span!("get identity key pair"))
295 | | .await?
296 | | .identity_key()
297 | | .public_key()
298 | | .clone();
| |____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
help: try dereferencing it
|
292 ~ let identity_key = *protocol_store
293 + .get_identity_key_pair()
294 + .instrument(tracing::trace_span!("get identity key pair"))
295 + .await?
296 + .identity_key()
297 ~ .public_key();
|
|
very complex type used. Consider factoring parts into `type` definitions:
libsignal-service/src/account_manager.rs#L100
warning: very complex type used. Consider factoring parts into `type` definitions
--> libsignal-service/src/account_manager.rs:100:10
|
100 | ) -> Result<
| __________^
101 | | (
102 | | Vec<PreKeyEntity>,
103 | | SignedPreKeyEntity,
... |
107 | | ServiceError,
108 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|
variable does not need to be mutable:
libsignal-service/src/account_manager.rs#L641
warning: variable does not need to be mutable
--> libsignal-service/src/account_manager.rs:641:13
|
641 | let mut device_messages =
| ----^^^^^^^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
using `clone` on type `PublicKey` which implements the `Copy` trait:
libsignal-service/src/account_manager.rs#L292
warning: using `clone` on type `PublicKey` which implements the `Copy` trait
--> libsignal-service/src/account_manager.rs:292:28
|
292 | let identity_key = protocol_store
| ____________________________^
293 | | .get_identity_key_pair()
294 | | .instrument(tracing::trace_span!("get identity key pair"))
295 | | .await?
296 | | .identity_key()
297 | | .public_key()
298 | | .clone();
| |____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
help: try dereferencing it
|
292 ~ let identity_key = *protocol_store
293 + .get_identity_key_pair()
294 + .instrument(tracing::trace_span!("get identity key pair"))
295 + .await?
296 + .identity_key()
297 ~ .public_key();
|
|
very complex type used. Consider factoring parts into `type` definitions:
libsignal-service/src/account_manager.rs#L100
warning: very complex type used. Consider factoring parts into `type` definitions
--> libsignal-service/src/account_manager.rs:100:10
|
100 | ) -> Result<
| __________^
101 | | (
102 | | Vec<PreKeyEntity>,
103 | | SignedPreKeyEntity,
... |
107 | | ServiceError,
108 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|
variable does not need to be mutable:
libsignal-service/src/account_manager.rs#L641
warning: variable does not need to be mutable
--> libsignal-service/src/account_manager.rs:641:13
|
641 | let mut device_messages =
| ----^^^^^^^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
Clippy (libsignal-service)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (libsignal-service)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
using `clone` on type `PublicKey` which implements the `Copy` trait:
libsignal-service/src/account_manager.rs#L292
warning: using `clone` on type `PublicKey` which implements the `Copy` trait
--> libsignal-service/src/account_manager.rs:292:28
|
292 | let identity_key = protocol_store
| ____________________________^
293 | | .get_identity_key_pair()
294 | | .instrument(tracing::trace_span!("get identity key pair"))
295 | | .await?
296 | | .identity_key()
297 | | .public_key()
298 | | .clone();
| |____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
help: try dereferencing it
|
292 ~ let identity_key = *protocol_store
293 + .get_identity_key_pair()
294 + .instrument(tracing::trace_span!("get identity key pair"))
295 + .await?
296 + .identity_key()
297 ~ .public_key();
|
|
very complex type used. Consider factoring parts into `type` definitions:
libsignal-service/src/account_manager.rs#L100
warning: very complex type used. Consider factoring parts into `type` definitions
--> libsignal-service/src/account_manager.rs:100:10
|
100 | ) -> Result<
| __________^
101 | | (
102 | | Vec<PreKeyEntity>,
103 | | SignedPreKeyEntity,
... |
107 | | ServiceError,
108 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|
variable does not need to be mutable:
libsignal-service/src/account_manager.rs#L641
warning: variable does not need to be mutable
--> libsignal-service/src/account_manager.rs:641:13
|
641 | let mut device_messages =
| ----^^^^^^^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
Build (libsignal-service, Rust stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service, Rust stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust stable)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust stable)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Clippy (libsignal-service-hyper)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (libsignal-service-hyper)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
using `clone` on type `PublicKey` which implements the `Copy` trait:
libsignal-service/src/account_manager.rs#L292
warning: using `clone` on type `PublicKey` which implements the `Copy` trait
--> libsignal-service/src/account_manager.rs:292:28
|
292 | let identity_key = protocol_store
| ____________________________^
293 | | .get_identity_key_pair()
294 | | .instrument(tracing::trace_span!("get identity key pair"))
295 | | .await?
296 | | .identity_key()
297 | | .public_key()
298 | | .clone();
| |____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
help: try dereferencing it
|
292 ~ let identity_key = *protocol_store
293 + .get_identity_key_pair()
294 + .instrument(tracing::trace_span!("get identity key pair"))
295 + .await?
296 + .identity_key()
297 ~ .public_key();
|
|
very complex type used. Consider factoring parts into `type` definitions:
libsignal-service/src/account_manager.rs#L100
warning: very complex type used. Consider factoring parts into `type` definitions
--> libsignal-service/src/account_manager.rs:100:10
|
100 | ) -> Result<
| __________^
101 | | (
102 | | Vec<PreKeyEntity>,
103 | | SignedPreKeyEntity,
... |
107 | | ServiceError,
108 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|
variable does not need to be mutable:
libsignal-service/src/account_manager.rs#L641
warning: variable does not need to be mutable
--> libsignal-service/src/account_manager.rs:641:13
|
641 | let mut device_messages =
| ----^^^^^^^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
Clippy (libsignal-service-hyper, unsend-futures)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (libsignal-service-hyper, unsend-futures)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service, Rust stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service, Rust stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust stable)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Build (libsignal-service, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust stable)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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 (libsignal-service, unsend-futures)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (libsignal-service, unsend-futures)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
using `clone` on type `PublicKey` which implements the `Copy` trait:
libsignal-service/src/account_manager.rs#L292
warning: using `clone` on type `PublicKey` which implements the `Copy` trait
--> libsignal-service/src/account_manager.rs:292:28
|
292 | let identity_key = protocol_store
| ____________________________^
293 | | .get_identity_key_pair()
294 | | .instrument(tracing::trace_span!("get identity key pair"))
295 | | .await?
296 | | .identity_key()
297 | | .public_key()
298 | | .clone();
| |____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
help: try dereferencing it
|
292 ~ let identity_key = *protocol_store
293 + .get_identity_key_pair()
294 + .instrument(tracing::trace_span!("get identity key pair"))
295 + .await?
296 + .identity_key()
297 ~ .public_key();
|
|
very complex type used. Consider factoring parts into `type` definitions:
libsignal-service/src/account_manager.rs#L100
warning: very complex type used. Consider factoring parts into `type` definitions
--> libsignal-service/src/account_manager.rs:100:10
|
100 | ) -> Result<
| __________^
101 | | (
102 | | Vec<PreKeyEntity>,
103 | | SignedPreKeyEntity,
... |
107 | | ServiceError,
108 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
|
variable does not need to be mutable:
libsignal-service/src/account_manager.rs#L641
warning: variable does not need to be mutable
--> libsignal-service/src/account_manager.rs:641:13
|
641 | let mut device_messages =
| ----^^^^^^^^^^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
Build (libsignal-service-hyper, Rust stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-hyper, Rust stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust stable)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust stable)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-hyper, Rust stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust stable)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust stable)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Clippy (libsignal-service-actix)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Clippy (libsignal-service-actix)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service, Rust beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service, Rust beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service, Rust beta):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust beta)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Build (libsignal-service, Rust beta):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust beta)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Build (libsignal-service, Rust beta)
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/
|
Build (libsignal-service, Rust beta)
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/
|
Build (libsignal-service, Rust beta)
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/
|
Build (libsignal-service, Rust beta)
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/
|
Build (libsignal-service-actix, Rust stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-actix, Rust stable)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service-actix, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust stable)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust stable):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust stable)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-actix, Rust beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service-actix, Rust beta)
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/
|
Build (libsignal-service-actix, Rust beta)
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/
|
Build (libsignal-service-actix, Rust beta)
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/
|
Build (libsignal-service-actix, Rust beta)
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/
|
Build (libsignal-service-actix, Rust beta):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust beta)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust beta):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust beta)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust 1.75)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-actix, Rust 1.75)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service-actix, Rust 1.75):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust 1.75)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust 1.75)
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/
|
Build (libsignal-service-actix, Rust 1.75)
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/
|
Build (libsignal-service-actix, Rust 1.75)
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/
|
Build (libsignal-service-actix, Rust 1.75)
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/
|
Build (libsignal-service-actix, Rust 1.75):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust 1.75)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-hyper, Rust beta)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Build (libsignal-service-hyper, Rust beta):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust beta)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust beta):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust beta)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust beta)
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/
|
Build (libsignal-service-hyper, Rust beta)
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/
|
Build (libsignal-service-hyper, Rust beta)
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/
|
Build (libsignal-service-hyper, Rust beta)
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/
|
Build (libsignal-service, Rust nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1, actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service, Rust nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1, 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/
|
Build (libsignal-service, Rust nightly):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust nightly)
`libsignal-service` (lib test) generated 1 warning (run `cargo fix --lib -p libsignal-service --tests` to apply 1 suggestion)
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service, Rust nightly):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service, Rust nightly)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service, Rust 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/
|
Build (libsignal-service-hyper, Rust nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1, actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-hyper, Rust nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1, 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/
|
Build (libsignal-service-hyper, Rust nightly):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust nightly)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust nightly):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-hyper, Rust nightly)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-hyper, Rust 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/
|
Build (libsignal-service-actix, Rust nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions-rs/toolchain@v1, actions-rs/cargo@v1, actions-rs/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build (libsignal-service-actix, Rust nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/cargo@v1, 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/
|
Build (libsignal-service-actix, Rust nightly):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust nightly)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust nightly):
libsignal-service/src/account_manager.rs#L641
variable does not need to be mutable
|
Build (libsignal-service-actix, Rust nightly)
`libsignal-service` (lib) generated 1 warning (run `cargo fix --lib -p libsignal-service` to apply 1 suggestion)
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|
Build (libsignal-service-actix, Rust 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/
|