feat(sdk)!: provide request execution information #4229
Annotations
6 errors and 4 warnings
Run clechasseur/rs-clippy-check@v3:
packages/rs-dapi-client/src/dapi_client.rs#L16
error[E0432]: unresolved import `crate::DapiRequestExecutor`
--> packages/rs-dapi-client/src/dapi_client.rs:16:37
|
16 | Address, AddressList, CanRetry, DapiRequestExecutor, ExecutionError, ExecutionResponse,
| ^^^^^^^^^^^^^^^^^^^ no `DapiRequestExecutor` in the root
|
= help: consider importing this trait instead:
crate::executor::DapiRequestExecutor
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dapi-client/src/mock.rs#L16
error[E0432]: unresolved import `crate::DapiRequestExecutor`
--> packages/rs-dapi-client/src/mock.rs:16:31
|
16 | Address, DapiClientError, DapiRequestExecutor, ExecutionError, ExecutionResponse,
| ^^^^^^^^^^^^^^^^^^^ no `DapiRequestExecutor` in the root
|
= help: consider importing this trait instead:
crate::executor::DapiRequestExecutor
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dapi-client/src/lib.rs#L49
error[E0405]: cannot find trait `DapiRequestExecutor` in this scope
--> packages/rs-dapi-client/src/lib.rs:49:23
|
49 | fn execute<'c, D: DapiRequestExecutor>(
| ^^^^^^^^^^^^^^^^^^^ not found in this scope
|
help: consider importing this trait
|
16 + use crate::executor::DapiRequestExecutor;
|
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dapi-client/src/lib.rs#L64
error[E0405]: cannot find trait `DapiRequestExecutor` in this scope
--> packages/rs-dapi-client/src/lib.rs:64:23
|
64 | fn execute<'c, D: DapiRequestExecutor>(
| ^^^^^^^^^^^^^^^^^^^ not found in this scope
|
help: consider importing this trait
|
16 + use crate::executor::DapiRequestExecutor;
|
|
Run clechasseur/rs-clippy-check@v3
Clippy has exited with exit code 101
|
|
Setup Rust
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/
|
The following actions use a deprecated Node.js version and will be forced to run on node20: mozilla-actions/[email protected], strophy/actions-cache@opendal-update. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dapi-client/src/mock.rs#L16
warning: unused import: `Address`
--> packages/rs-dapi-client/src/mock.rs:16:5
|
16 | Address, DapiClientError, DapiRequestExecutor, ExecutionError, ExecutionResponse,
| ^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dapi-client/src/mock.rs#L21
warning: unused import: `dapi_grpc::tonic::transport::Uri`
--> packages/rs-dapi-client/src/mock.rs:21:5
|
21 | use dapi_grpc::tonic::transport::Uri;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
Loading