| lib.rs |
Viaduct dev backend
This implements a viaduct backend using `minreq`, with no feature flags enabled.
This lets us have an HTTP client without any sub-dependencies that we don't want to vendor into moz-central, like `openssl`.
It's mainly intended for testing, where the HTTP-only restriction is not an issue.
`minreq` has a sync API, we implement an async version using a separate thread and a `mpsc` channel. |
5352 |