Skip to content

chore(deps): update rust crate trybuild to v1.0.119 (#410) #1102

chore(deps): update rust crate trybuild to v1.0.119 (#410)

chore(deps): update rust crate trybuild to v1.0.119 (#410) #1102

Triggered via push August 2, 2026 12:53
Status Success
Total duration 3m 27s
Artifacts

CI.yaml

on: push
Rust / `cargo deny`
22s
Rust / `cargo deny`
Rust / Report Missing Dependencies
19s
Rust / Report Missing Dependencies
Clippy
47s
Clippy
Matrix: rust
Fit to window
Zoom out
Zoom in

Annotations

12 errors and 7 warnings
Rust CI [stable on macOS]
Error: ENOENT: no such file or directory, opendir '/Users/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on macOS]
ENOENT: no such file or directory, opendir '/Users/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on macOS]
Error: ENOENT: no such file or directory, opendir '/Users/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on macOS]
ENOENT: no such file or directory, opendir '/Users/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on Linux (x86_64)]
Error: ENOENT: no such file or directory, opendir '/home/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on Linux (x86_64)]
ENOENT: no such file or directory, opendir '/home/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on Linux (x86_64)]
Error: ENOENT: no such file or directory, opendir '/home/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on Linux (x86_64)]
ENOENT: no such file or directory, opendir '/home/runner/work/azalia/azalia/target/tests/target'
Rust CI [stable on Windows]
Error: ENOENT: no such file or directory, opendir 'D:\a\azalia\azalia\target\tests\target'
Rust CI [stable on Windows]
ENOENT: no such file or directory, opendir 'D:\a\azalia\azalia\target\tests\target'
Rust CI [stable on Windows]
Error: ENOENT: no such file or directory, opendir 'D:\a\azalia\azalia\target\tests\target'
Rust CI [stable on Windows]
ENOENT: no such file or directory, opendir 'D:\a\azalia\azalia\target\tests\target'
large size difference between variants: crates/remi/src/lib.rs#L175
warning: large size difference between variants --> crates/remi/src/lib.rs:175:9 | 175 | / pub enum Config { 176 | | $( 177 | | #[cfg(feature = $feat)] 178 | | #[cfg_attr(any(noeldoc, docsrs), doc(cfg(feature = $feat)))] ... | 181 | | $field($config), | | --------------- | | | | | the largest variant contains at least 1120 bytes | | the second-largest variant contains at least 224 bytes ... | 185 | | Unknown, 186 | | } | |_________^ the entire enum is at least 1120 bytes ... 190 | / mk_storage_service_impl! { 191 | | /// Represents a unified [`StorageService`][remi::StorageService] that can be 192 | | /// either the following: 193 | | /// ... | 240 | | } | |_- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#large_enum_variant = note: this warning originates in the macro `mk_storage_service_impl` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider boxing the large fields or introducing indirection in some other way to reduce the total size of the enum | 204 - Config: ::remi_gridfs::StorageConfig; 204 + Config: Box<::remi_gridfs::StorageConfig>; |
large size difference between variants: crates/remi/src/lib.rs#L105
warning: large size difference between variants --> crates/remi/src/lib.rs:105:9 | 105 | / pub enum StorageService { 106 | | $( 107 | | #[cfg(feature = $feat)] 108 | | #[cfg_attr(any(noeldoc, docsrs), doc(cfg(feature = $feat)))] 109 | | $field($ty), | | ----------- | | | | | the largest variant contains at least 1128 bytes | | the second-largest variant contains at least 232 bytes ... | 112 | | __non_exhaustive 113 | | } | |_________^ the entire enum is at least 1128 bytes ... 190 | / mk_storage_service_impl! { 191 | | /// Represents a unified [`StorageService`][remi::StorageService] that can be 192 | | /// either the following: 193 | | /// ... | 240 | | } | |_- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.97.0/index.html#large_enum_variant = note: `#[warn(clippy::large_enum_variant)]` on by default = note: this warning originates in the macro `mk_storage_service_impl` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider boxing the large fields or introducing indirection in some other way to reduce the total size of the enum | 201 - "gridfs" => Gridfs as ::remi_gridfs::StorageService { 201 + "gridfs" => Gridfs as Box<::remi_gridfs::StorageService> { |
unused variable: `input`: crates/config/macros/src/lib.rs#L136
warning: unused variable: `input` --> crates/config/macros/src/lib.rs:136:19 | 136 | pub fn TryFromEnv(input: TokenStream) -> TokenStream { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_input` | = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
unused variable: `input`: crates/config/macros/src/lib.rs#L136
warning: unused variable: `input` --> crates/config/macros/src/lib.rs:136:19 | 136 | pub fn TryFromEnv(input: TokenStream) -> TokenStream { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_input` | = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
Clippy
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
Clippy
clippy-action doesn't have permissions to create Check Runs, disabling!
Rust CI [stable on Windows]
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: ilammy/setup-nasm@v1. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/