35个重大版本发布
0.47.0 | 2024年7月23日 |
---|---|
0.45.0 | 2024年5月13日 |
0.42.0 | 2024年3月18日 |
0.35.2 | 2023年12月21日 |
0.13.0 | 2023年3月27日 |
1063 在 HTTP服务器
每月132次下载
33KB
523 代码行
为Tower框架集成的Shuttle服务
示例
use std::convert::Infallible;
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
#[derive(Clone)]
struct HelloWorld;
impl tower::Service<hyper::Request<hyper::Body>> for HelloWorld {
type Response = hyper::Response<hyper::Body>;
type Error = Infallible;
type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send + Sync>>;
fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, _req: hyper::Request<hyper::Body>) -> Self::Future {
let body = hyper::Body::from("Hello, world!");
let resp = hyper::Response::builder()
.status(200)
.body(body)
.expect("Unable to create the `hyper::Response` object");
let fut = async { Ok(resp) };
Box::pin(fut)
}
}
#[shuttle_runtime::main]
async fn tower() -> shuttle_tower::ShuttleTower<HelloWorld> {
let service = HelloWorld;
Ok(service.into())
}
依赖项
~15–25MB
~381K SLoC