tectonic/crates/geturl
rm-dr b6b3485a0a
Bundle crate rewrite
2024-09-20 09:24:13 -07:00
..
src Bundle crate rewrite 2024-09-20 09:24:13 -07:00
CHANGELOG.md crates/geturl: add a generic URL-get backend 2021-01-12 09:29:49 -05:00
Cargo.toml Expose a native-tls-vendored feature 2021-01-16 08:14:47 -05:00
README.md Normalize quotes in READMEs 2024-02-13 18:37:04 -08:00

README.md

The tectonic_geturl create

This crate is part of the Tectonic project. It provides an interface for fetching URLs using one of several HTTP backends.

Cargo features

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)
  • curl
  • null (least preferred)