cargo fmt

This commit is contained in:
elipeter 2026-05-21 14:35:42 -05:00
parent bec7bbf96c
commit 3a35cd6c8f
294 changed files with 6809 additions and 3911 deletions

View file

@ -15,10 +15,7 @@ const ADAPTER_NAME: &str = "scheduled-sidekiq";
fn callee_is_sidekiq(name: &str) -> bool {
let last = name.rsplit_once('.').map(|(_, s)| s).unwrap_or(name);
matches!(
last,
"perform_async" | "perform_in" | "perform" | "set"
)
matches!(last, "perform_async" | "perform_in" | "perform" | "set")
}
fn source_imports_sidekiq(file_bytes: &[u8]) -> bool {