cargo fix

This commit is contained in:
Evan Almloff 2023-07-08 10:57:44 -07:00
parent 7c2bf4c5ed
commit 1e5c57dd16
3 changed files with 5 additions and 4 deletions

View file

@ -20,8 +20,8 @@ pub mod warp_adapter;
use std::sync::{Arc, RwLock};
use http::StatusCode;
use http_body_util::BodyExt;
use hyper::body::Body;
use server_fn::{Encoding, Payload};
use tokio::task::spawn_blocking;

View file

@ -1,4 +1,5 @@
//! Launch helper macros for fullstack apps
#![allow(unused)]
#[macro_export]
/// Launch a server with a router

View file

@ -1,7 +1,7 @@
use std::pin::Pin;
use http::{Request, Response};
use hyper::Body;
pub trait Layer: Send + Sync + 'static {
fn layer(&self, inner: BoxedService) -> BoxedService;
@ -66,7 +66,7 @@ impl tower::Service<http::Request<hyper::body::Body>> for BoxedService {
fn poll_ready(
&mut self,
cx: &mut std::task::Context<'_>,
_cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Result<(), Self::Error>> {
Ok(()).into()
}