Omid Rad
Omid Rad
Hello @fmeringdal :) Any plan on finishing/merging https://github.com/fmeringdal/rust-rrule/tree/feat/benches branch?
Since the rules we support for iCalendar are all ASCII, it's faster to use `&[u8]` instead of strings. And use `b"whatever"` instead of `"whatever"`.
Does anybody actually using `async-std` anymore? The latest release is in almost 2 years ago. (there are some commits after the last release) What do you think of deprecating it...
Same as the title... Convert `multipart/form-data` to json
## Environment - **Airbyte version**: 0.40.23 - **OS Version / Instance**: Arch Linux - **Deployment**: Docker ## Current Behavior No matter what I send. `/v1/destinations/search` always return empty result: `{"destinations":[]}`....
This code: ``` use actix_web::{App, HttpServer}; use paperclip::actix::{ OpenApiExt, Apiv2Schema, api_v2_operation, web::{self, Json}, }; use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize, Apiv2Schema)] struct Pet { #[serde(skip_serializing)] ser: String, #[serde(skip_deserializing)] de: String, #[serde(skip)]...
I have a HashMap which will be deserialized with [QsQuery](https://github.com/samscott89/serde_qs/blob/main/src/actix.rs#L51). So the input is a _string_. But based on [paperclip](https://github.com/wafflespeanut/paperclip/blob/master/core/src/v2/schema.rs#L438), the type is Object. Is there any way to override...
As @wafflespeanut described in https://github.com/wafflespeanut/paperclip/pull/243#issuecomment-704763049, we can support the following format to be able to add a description for each status code: ``` #[api_v2_operation( status( code = 200, description =...
Since there is no equivalent struct in the code for a cookie and it converted to a session struct automatically! Is there any way of defining these type of authentications?...
The following code doesn't work, because of the web:scope in the router function. There is no compile error, the response to "/api/spec" is 404. ``` use actix_web::{App, HttpServer}; use paperclip::actix::{...