Skip to content

chore(deps): update rust crate uuid to 1.14.0 #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 21, 2025

chore(deps): update rust crate uuid to 1.14.0

841c50f
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

chore(deps): update rust crate uuid to 1.14.0 #236

chore(deps): update rust crate uuid to 1.14.0
841c50f
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Feb 21, 2025 in 0s

clippy

4 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 4
Note 0
Help 0

Versions

  • rustc 1.85.0 (4d91de4e4 2025-02-17)
  • cargo 1.85.0 (d73d2caf9 2024-12-31)
  • clippy 0.1.85 (4d91de4e48 2025-02-17)

Annotations

Check warning on line 150 in src/runner.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this lifetime isn't used in the function definition

warning: this lifetime isn't used in the function definition
   --> src/runner.rs:150:32
    |
150 |     async fn crontab_scheduler<'e>(&self) -> Result<(), WorkerRuntimeError> {
    |                                ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
    = note: `#[warn(clippy::extra_unused_lifetimes)]` on by default

Check warning on line 81 in src/builder.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of deprecated function `rand::thread_rng`: renamed to `rng`

warning: use of deprecated function `rand::thread_rng`: renamed to `rng`
  --> src/builder.rs:81:15
   |
81 |         rand::thread_rng().fill_bytes(&mut random_bytes);
   |               ^^^^^^^^^^
   |
   = note: `#[warn(deprecated)]` on by default

Check warning on line 56 in crates/migrations/src/sql/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'e

warning: the following explicit lifetimes could be elided: 'e
  --> crates/migrations/src/sql/mod.rs:56:26
   |
56 |     pub async fn execute<'e>(
   |                          ^^
57 |         &self,
58 |         tx: &mut Transaction<'e, Postgres>,
   |                              ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   = note: `#[warn(clippy::needless_lifetimes)]` on by default

Check warning on line 220 in crates/extensions/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `map_or` can be simplified

warning: this `map_or` can be simplified
   --> crates/extensions/src/lib.rs:220:9
    |
220 |         self.map.as_ref().map_or(true, |map| map.is_empty())
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_none_or instead: `self.map.as_ref().is_none_or(|map| map.is_empty())`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
    = note: `#[warn(clippy::unnecessary_map_or)]` on by default