| Crates.io | tectonic_geturl |
| lib.rs | tectonic_geturl |
| version | 0.3.2 |
| created_at | 2021-01-16 03:01:40.252392+00 |
| updated_at | 2023-05-18 03:52:00.448336+00 |
| description | A generic interface for HTTP GETs and byte-range requests, with pluggable backends. |
| homepage | https://tectonic-typesetting.github.io/ |
| repository | https://github.com/tectonic-typesetting/tectonic/ |
| max_upload_size | |
| id | 342645 |
| size | 18,456 |
tectonic_geturl createThis crate is part of the Tectonic project. It provides an interface for fetching URLs using one of several HTTP backends.
This crate provides the following Cargo features:
curl: use the curl crate as a backend for performing URL gets.reqwest (enabled by default): use the reqwest crate as a backend for
performing URL gets.There is always a “null” backend available, which will always return errors. If more than one backend is enabled, their prioritization is:
reqwest (most preferred)curlnull (least preferred)