Jonathan Alter

Results 6 issues of Jonathan Alter

### Module location https://github.com/libcpr/cpr ### Link to bzlmod issue in the module's repository _No response_ ### Any other context to provide? _No response_ ### Fund our work - [ ]...

module wanted

I posted [this](https://www.reddit.com/r/rust/comments/1gbs1lm/why_is_concurrent_http_requestresponse_handling/) on reddit earlier, but wanted to mention it on GitHub as well just to make sure it gets the right eyes on it -- I'm having a...

How involved would it be to add iOS as a target? I am admittedly unfamiliar with how these existing bindings were written/applied per target platform, though I am willing to...

`tokio-postgres` includes support for targeting `wasm32-unknown-unknown`, and it would be wonderful to have ORM functionality with Diesel in WASM environments. This PR enables `diesel-async` compilation with the `postgres` feature for...

When adding `dioxus` as a dependency, `dioxus-desktop` is configured in `dioxus/Cargo.toml` as: ``` dioxus-desktop = { workspace = true, default-features = true, optional = true } ``` and because Cargo...

When trying to apply the `#[oasgen]` macro to a route handler like this: ```rust #[oasgen] pub(super) async fn version_post( State(_state): State, Json(payload): Json, ) -> Result where D: Debug, {...