29 releases

0.4.0 Mar 30, 2024
0.2.25 Nov 19, 2023
0.2.22 Jul 28, 2023
0.2.19 Feb 18, 2023
0.2.13 Nov 21, 2022

#2101 in Asynchronous

Download history 556/week @ 2024-01-04 579/week @ 2024-01-11 1080/week @ 2024-01-18 449/week @ 2024-01-25 293/week @ 2024-02-01 382/week @ 2024-02-08 350/week @ 2024-02-15 849/week @ 2024-02-22 585/week @ 2024-02-29 387/week @ 2024-03-07 545/week @ 2024-03-14 493/week @ 2024-03-21 766/week @ 2024-03-28 813/week @ 2024-04-04 671/week @ 2024-04-11 438/week @ 2024-04-18

2,805 downloads per month
Used in tardis

MIT/Apache

1MB
21K SLoC

GRPC support for Poem

Example

use poem::{listener::TcpListener, Server};
use poem_grpc::{Request, Response, RouteGrpc, Status};

poem_grpc::include_proto!("helloworld");

struct GreeterService;

impl Greeter for GreeterService {
    async fn say_hello(
        &self,
        request: Request<HelloRequest>,
    ) -> Result<Response<HelloReply>, Status> {
        let reply = HelloReply {
            message: format!("Hello {}!", request.into_inner().name),
        };
        Ok(Response::new(reply))
    }
}

#[tokio::main]
async fn main() -> Result<(), std::io::Error> {
    let route = RouteGrpc::new().add_service(GreeterServer::new(GreeterService));
    Server::new(TcpListener::bind("0.0.0.0:3000"))
        .run(route)
        .await
}

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% Safe Rust.

MSRV

The minimum supported Rust version for this crate is 1.75.0.

Contributing

🎈 Thanks for your help improving the project! We are so happy to have you!

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Poem by you, shall be licensed as Apache, without any additional terms or conditions.

Dependencies

~21–34MB
~609K SLoC