tectonic_geturl

Crates.iotectonic_geturl
lib.rstectonic_geturl
version0.3.2
sourcesrc
created_at2021-01-16 03:01:40.252392
updated_at2023-05-18 03:52:00.448336
descriptionA generic interface for HTTP GETs and byte-range requests, with pluggable backends.
homepagehttps://tectonic-typesetting.github.io/
repositoryhttps://github.com/tectonic-typesetting/tectonic/
max_upload_size
id342645
size18,456
Mark (rm-dr)

documentation

https://docs.rs/tectonic_geturl

README

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)
Commit count: 3625

cargo fmt