poem
poem copied to clipboard
A full-featured and easy-to-use web framework with the Rust programming language.
Hello, I am building a Poem web service and for the `create_note` endpoint, I want to provide two authentication options: 1. API key authentication via header (`ApiKeyAuth`). 2. Cookie-based authentication...
## Description of the feature Would be great if we have support `big_decimal` crate.
## Expected Behavior If a rustls is used with a tls pem bundle where the first entry is not the private key, the server should be able to serve https...
## Expected Behavior Optional path parameters shouldn't be validated if they are not present. ## Actual Behavior Validation fails, because the parameter is missing. ## Steps to Reproduce the Problem...
I'm trying to create a type that contains a `time::OffsetDateTime`, but trying to derive `Object` on it with the `time` field being `#[oai(read_only)]` (since it's determined by the server) fails...
## Expected Behavior A normal response ## Actual Behavior see title ## Steps to Reproduce the Problem Set up something along the lines of ```rs #[poem_openapi::OpenApi] impl Api { #[oai(path...
# Feat/tera: Support Tera Templating See [Issue #512](https://github.com/poem-web/poem/issues/512) ## Description I added Tera Templating support (the Tera instance is sent to handlers via the request extensions). I also implemented the...
lmk if there are any copy adjustments that need to be made
## Expected Behavior When creating an object that stores a `ObjectId` from MongoDB, the returned JSON does not match the schema. Consider this struct: ```rust #[derive(Debug, Object, Clone, Eq, PartialEq,...
Hello, I find Poem a very ergonomic framework, I've even migrated several projects to Poem, mainly because it offers very good support for OpenAPI 3, but there is one small...