fix(deps): update rust crate remi to 0.9.0 #786
CI.yaml
on: pull_request
`cargo deny`
19s
Report Missing Dependencies
12s
Nix Build
0s
Clippy
1m 14s
Matrix: rust
Annotations
14 errors and 1 warning
`cargo deny`
Process completed with exit code 1.
|
no method named `blob` found for enum `noelware_remi::StorageService` in the current scope:
src/lib.rs#L158
error[E0599]: no method named `blob` found for enum `noelware_remi::StorageService` in the current scope
--> src/server/mod.rs:158:10
|
157 | let blob = storage
| ________________-
158 | | .blob(&query)
| | -^^^^ method not found in `StorageService`
| |_________|
|
|
::: /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/remi-0.7.1/src/lib.rs:71:14
|
71 | async fn blob<P: AsRef<Path> + Send>(&self, path: P) -> Result<Option<Blob>, Self::Error>;
| ---- the method is available for `noelware_remi::StorageService` here
|
= help: items from traits can only be used if the trait is in scope
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
16 + use noelware_remi::remi::StorageService;
|
|
Clippy
Received a internal compiler error OR an unknown message type, view this in debug mode to view the payload
|
Clippy
{
"rendered": "For more information about this error, try `rustc --explain E0599`.\n",
"$message_type": "diagnostic",
"children": [],
"code": null,
"level": "failure-note",
"message": "For more information about this error, try `rustc --explain E0599`.",
"spans": []
}
|
Rust CI (Linux (x86_64), Rust stable)
Process completed with exit code 101.
|
Rust CI (macOS (x86_64), Rust nightly)
Process completed with exit code 101.
|
Rust CI (Windows, Rust nightly)
The job was canceled because "macos-latest_nightly" failed.
|
Rust CI (Windows, Rust nightly)
The operation was canceled.
|
Rust CI (Windows, Rust stable)
The job was canceled because "macos-latest_nightly" failed.
|
Rust CI (Windows, Rust stable)
The operation was canceled.
|
Rust CI (Linux (x86_64), Rust nightly)
The job was canceled because "macos-latest_nightly" failed.
|
Rust CI (Linux (x86_64), Rust nightly)
The operation was canceled.
|
Rust CI (macOS (x86_64), Rust stable)
The job was canceled because "macos-latest_nightly" failed.
|
Rust CI (macOS (x86_64), Rust stable)
The operation was canceled.
|
unused import: `StorageService`:
src/lib.rs#L29
warning: unused import: `StorageService`
--> src/server/mod.rs:29:24
|
29 | use remi::{Blob, File, StorageService as _};
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|