Bump tonic-build from 0.12.2 to 0.12.3 #33
Annotations
6 errors and 5 warnings
no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope:
target/debug/build/easydep-server-86402f5017816963/out/easydep.rs#L610
error[E0599]: no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope
--> /home/runner/work/easydep/easydep/target/debug/build/easydep-server-86402f5017816963/out/easydep.rs:610:48
|
610 | ... tonic::Status::GRPC_STATUS,
| ^^^^^^^^^^^ associated item not found in `Status`
|
no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope:
target/debug/build/easydep-server-86402f5017816963/out/easydep.rs#L848
error[E0599]: no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope
--> /home/runner/work/easydep/easydep/target/debug/build/easydep-server-86402f5017816963/out/easydep.rs:848:48
|
848 | ... tonic::Status::GRPC_STATUS,
| ^^^^^^^^^^^ associated item not found in `Status`
|
stable / clippy
Clippy has exited with exit code 101
|
no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope:
target/debug/build/easydep-server-508d82d131ff606d/out/easydep.rs#L610
error[E0599]: no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope
--> /home/runner/work/easydep/easydep/target/debug/build/easydep-server-508d82d131ff606d/out/easydep.rs:610:48
|
610 | ... tonic::Status::GRPC_STATUS,
| ^^^^^^^^^^^ associated item not found in `Status`
|
no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope:
target/debug/build/easydep-server-508d82d131ff606d/out/easydep.rs#L848
error[E0599]: no associated item named `GRPC_STATUS` found for struct `tonic::Status` in the current scope
--> /home/runner/work/easydep/easydep/target/debug/build/easydep-server-508d82d131ff606d/out/easydep.rs:848:48
|
848 | ... tonic::Status::GRPC_STATUS,
| ^^^^^^^^^^^ associated item not found in `Status`
|
nightly / clippy
Clippy has exited with exit code 101
|
use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`:
easydep-client/build.rs#L30
warning: use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`
--> easydep-client/build.rs:30:10
|
30 | .compile(
| ^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`:
easydep-server/build.rs#L30
warning: use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`
--> easydep-server/build.rs:30:10
|
30 | .compile(
| ^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`:
easydep-server/build.rs#L30
warning: use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`
--> easydep-server/build.rs:30:10
|
30 | .compile(
| ^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`:
easydep-client/build.rs#L30
warning: use of deprecated method `tonic_build::Builder::compile`: renamed to `compile_protos()`
--> easydep-client/build.rs:30:10
|
30 | .compile(
| ^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
unneeded `return` statement:
easydep-client/src/main.rs#L144
warning: unneeded `return` statement
--> easydep-client/src/main.rs:144:7
|
144 | Ok(())
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
144 ~ Okif let Err(err) = command_execution_result {
145 + error!("Issue occurred while executing requested command: {}", err);
146 + exit(1)
147 + }
148 +
149 + Ok(())
|
|