• ap-relay 0.3.81/src/routes/statics.rs
    7
    #[allow(clippy::async_yields_async)]
    8
    #[tracing::instrument(name = "Statics")]
  • async-trait 0.1.64/tests/test.rs
    1573
        #[allow(clippy::async_yields_async)]
    1574
        pub fn impl_future_fn() -> impl Future<Output = Ready<()>> {
  • async-trait-fn 0.1.64/tests/test.rs
    2038
        #[allow(clippy::async_yields_async)]
    2039
        pub fn impl_future_fn() -> impl Future<Output = Ready<()>> {
  • fishrock_lambda_runtime 0.3.0-patched.1/src/lib.rs
    165
                let request_id = &ctx.request_id.clone();
    166
                #[allow(clippy::async_yields_async)]
    167
                let task = tokio::spawn(async move { handler.call(body, ctx) });
  • goxidize 0.1.1/src/routes/api_v1.rs
    13
    )]
    14
    #[allow(clippy::async_yields_async)]
    15
    async fn new_link(link: web::Json<LinkFormData>, pg: web::Data<PgPool>) -> impl Responder {
    28
    #[instrument(skip(pg))]
    29
    #[allow(clippy::async_yields_async)]
    30
    async fn get_links(pg: web::Data<PgPool>) -> impl Responder {
    45
    )]
    46
    #[allow(clippy::async_yields_async)]
    47
    async fn delete_link(pg: web::Data<PgPool>, params: web::Path<(String,)>) -> impl Responder {
  • kitsune_p2p 0.1.0/src/test_util/mock_network.rs
    244
                            let once: InChan = Box::new(m);
    245
                            #[allow(clippy::async_yields_async)]
    246
                            let once =
    299
            let network = network.clone();
    300
            #[allow(clippy::async_yields_async)]
    301
            async move {
  • pict-rs-proxy 0.4.0-beta.1/src/main.rs
    717
    #[allow(clippy::async_yields_async)]
    718
    #[tracing::instrument(name = "Static files")]
  • quake 0.5.0/src/main.rs
    162
        } else {
    163
            #[allow(clippy::async_yields_async)]
    164
            let _ = block_on(async { quake_rocket().launch() }).await;
  • ractor 0.6.1/benches/actor.rs
    141
    #[allow(clippy::async_yields_async)]
    142
    fn process_messages(c: &mut Criterion) {
  • xh 0.17.0/tests/server/mod.rs
    95
                let total_hits = total_hits.clone();
    96
                #[allow(clippy::async_yields_async)]
    97
                rt.block_on(async move {