From f51968465c4dcf56761a56e992f3dc6be908d82e Mon Sep 17 00:00:00 2001 From: Petr Portnov Date: Sun, 29 Oct 2023 18:17:07 +0000 Subject: [PATCH] style: move `#[allow(async_fn_in_trait)]` comment to the top --- --- a/crates/jrsonnet-evaluator/src/async_import.rs +++ b/crates/jrsonnet-evaluator/src/async_import.rs @@ -217,7 +217,8 @@ } } -#[allow(async_fn_in_trait)] // we don't care about `Send` bound +// we don't care about `Send` bound +#[allow(async_fn_in_trait)] pub trait AsyncImportResolver { type Error; /// Resolves file path, e.g. `(/home/user/manifests, b.libjsonnet)` can correspond -- gitstuff