poem
poem copied to clipboard
A full-featured and easy-to-use web framework with the Rust programming language.
## Expected Behavior gRPC responses that include `content-type` header with a value of `application/grpc+proto` per [spec](https://chromium.googlesource.com/external/github.com/grpc/grpc/+/HEAD/doc/PROTOCOL-HTTP2.md) ## Actual Behavior It does not seem to be included as observed via Wireshark,...
## Description of the feature Many other Rust servers can be converted into Tower Services. For example: - Tonic: https://docs.rs/tonic/latest/tonic/transport/server/struct.Router.html#method.into_service - Axum: https://docs.rs/axum/latest/axum/handler/trait.HandlerWithoutStateExt.html#tymethod.into_service This is great for interoperability. For example,...
## Description of the feature https://docs.rs/poem-openapi/latest/poem_openapi/derive.Object.html oai parameter default is only support bool,string. Can we support more basic types, even customized structs? ## Code example (if possible) ``` /// example...
Hello, i am trying Poem on a new project and my vscode becomes very slow at everything (completion, error reporting...) as soon as I add it to Cargo and start...
Does poem-openapi support multiple transforms (middlewares) to be applied on endpoints
You can use sessions like this with poem: https://github.com/poem-web/poem/blob/master/examples/poem/auth/src/main.rs. But how do you attach data to requests (`Data` used in poem) or use sessions in openapi? You start the server...
# Support Tera Templating ## Description Adding a Middleware which injects a Tera instance to each request (like Data) to avoid using lazy_static as the current example does and adding...
Good day! I have been using poem for some time now and have been impressed by its flexibility and ease of use. I would love to see HTTP/3 support added...
## Expected Behavior Route successfully ## Actual Behavior Router panics with `byte index 14 is out of bounds of /api/clients` ## Steps to Reproduce the Problem 1. Create a route...
Hello again after a while! For the next iteration of our API we're considering using grpc. Currently our API runs exclusively with Poem, at `/v1`. I'd like to use Poem...