postgrest-rs
postgrest-rs copied to clipboard
Rust client for PostgREST
## 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...
## 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...
# 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...
https://github.com/seanmonstar/reqwest/pull/630 Could this be achieved easily?
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.