postgrest-rs
postgrest-rs copied to clipboard
Rust client for PostgREST
Currently, users have to call `execute` at the end of a request: ```rust let resp = client .from("table") .select("*") .execute() .await?; ``` To omit this, we need to implement the...
# Feature request ## Is your feature request related to a problem? Please describe. Postgrest is these days primarily used with supabase which default data format is json. Reqwest with...
## What kind of change does this PR introduce? Add support for serde behind feature flag for `insert`, `upsert` and `update` Might fix #35 ## What is the current behavior?...
# Chore I would love to see the current repository published to crates.io since it depends on the latest reqwest 0.12. ## Describe the chore Just incrementing the release and...