tursodatabase / libsql-client-rs

libSQL Rust client library can be used to communicate with sqld natively over HTTP protocol with native Rust interface.
MIT License
75 stars 27 forks source link

switch to hyper #47

Open MarinPostma opened 12 months ago

MarinPostma commented 12 months ago

This PR switches the reqwest backend to use hyper instead. This allows us to expose generic with_connector methods that take an arbitrary io object to perform a request.

The primary use case for this is for use in sqld testing.

requires https://github.com/libsql/hrana-client-rs/pull/10 to be merged