Is your feature request related to a problem? Please describe.
The Rust reqwest library currently generates as ~0.9 when using sync, while it generates as 0.11 when using async.
This can cause type-matching problems with libraries generated with openapi-generator and packages/crates using them, it also lacks improvements such as cookie stores.
Describe the solution you'd like
Updating the library version, enabling the blocking feature flag when using sync, swapping the types from the old reqwest::Client (0.9-sync) to the new reqwest::blocking::Client (0.11-sync), and enabling some feature flags such as json, multipart, cookies, etc.
Is your feature request related to a problem? Please describe.
The Rust
reqwestlibrary currently generates as~0.9when using sync, while it generates as0.11when using async.This can cause type-matching problems with libraries generated with
openapi-generatorand packages/crates using them, it also lacks improvements such as cookie stores.Describe the solution you'd like
Updating the library version, enabling the
blockingfeature flag when using sync, swapping the types from the oldreqwest::Client(0.9-sync) to the newreqwest::blocking::Client(0.11-sync), and enabling some feature flags such asjson,multipart,cookies, etc.