Evan Almloff 2 سال پیش
والد
کامیت
1e5c57dd16
3فایلهای تغییر یافته به همراه5 افزوده شده و 4 حذف شده
  1. 2 2
      packages/fullstack/src/adapters/mod.rs
  2. 1 0
      packages/fullstack/src/launch.rs
  3. 2 2
      packages/fullstack/src/layer.rs

+ 2 - 2
packages/fullstack/src/adapters/mod.rs

@@ -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;
 

+ 1 - 0
packages/fullstack/src/launch.rs

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

+ 2 - 2
packages/fullstack/src/layer.rs

@@ -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()
     }