postgrest-rs icon indicating copy to clipboard operation
postgrest-rs copied to clipboard

Rust client for PostgREST

Results 14 postgrest-rs issues
Sort by recently updated
recently updated
newest added
trafficstars

## What kind of change does this PR introduce? `Postgrest` client now implements Debug. ## What is the current behavior? `Postgrest` client does not implement Debug. ## What is the...

# Feature request ## Is your feature request related to a problem? Please describe. Currently Postgrest is only usable inside tokio's runtime. That's sufficient for most applications, but there are...

enhancement

## What kind of change does this PR introduce? Chore. Updates a dependency's version. ## What is the current behavior? N/A. ## What is the new behavior? No behavioral change....

# Feature request Export the reqwest::Error ## Is your feature request related to a problem? Please describe. I was trying to map the Error and realized that the error in...

enhancement

# Improve documentation ## Link [README.md](https://github.com/supabase-community/postgrest-rs/blob/master/README.md) ## Describe the problem Supabase seems to need the Authorization token as well as the apikey token. It took me some time to realize...

documentation

https://github.com/seanmonstar/reqwest/pull/630 Could this be achieved easily?

enhancement

Currently the reqwest client seem to be created always for executing a query: `let mut req = Client::new().request(self.method.clone(), &self.url);` This will end up doing a SSL handshake every time. It's...

Hello! Thanks for the amazing work :) Would it be possible to add [Serde](https://serde.rs/) json support to perform queries based on json input?

**Problem** Current Builder pattern is very error prone. **Proposal** Introduce Typestate.