153 stable releases (20 major)

new 64.2.0 Mar 26, 2024
62.0.0 Mar 14, 2024
61.0.0 Mar 13, 2024
60.4.2 Mar 1, 2024
43.2.0 Apr 28, 2021

#686 in Web programming

Download history 25/week @ 2023-12-06 3/week @ 2023-12-13 2/week @ 2023-12-20 9/week @ 2024-01-03 10/week @ 2024-01-10 35/week @ 2024-01-17 11/week @ 2024-01-24 5/week @ 2024-01-31 4/week @ 2024-02-07 100/week @ 2024-02-14 155/week @ 2024-02-21 331/week @ 2024-02-28 23/week @ 2024-03-06 209/week @ 2024-03-13 334/week @ 2024-03-20

902 downloads per month

MPL-2.0 license

355KB
5.5K SLoC

Taskcluster Upload Support

This library is a companion to the [docs.rs](https://docs.rs/taskcluster) Taskcluster client, with support for uploading objects.

Usage

See docs.rs for detailed usage information.

Compatibility

This library is co-versioned with Taskcluster itself. That is, a client with version x.y.z contains API methods corresponding to Taskcluster version x.y.z. Taskcluster is careful to maintain API compatibility, and guarantees it within a major version. That means that any client with version x.* will work against any Taskcluster services at version x.*, and is very likely to work for many other major versions of the Taskcluster services. Any incompatibilities are noted in the Changelog.


lib.rs:

Support for uploading data to the Taskcluster object server.

This crate provides a set of functions to perform an object-service upload. These functions negotiate an upload method with the object service, and then perform the upload, following all of the Taskcluster recommended practices.

Each function takes the necessary metadata for the upload, a handle to the data to be uploaded, and a taskcluster::Object client. The data to be uploaded can come in a variety of forms, described below. The client must be configured with the necessary credentials to access the object service.

Convenience Functions

Most uses of this crate can utilize [upload_from_buf] or [upload_from_file], providing the data in the form of a buffer and a tokio::fs::File, respectively.

Factories

An upload may be retried, in which case the upload function must have access to the object data from the beginning. This is accomplished with the AsyncReaderFactory trait, which defines a get_reader method to generate a fresh tokio::io::AsyncRead for each attempt. Users for whom the supplied convenience functions are inadequate can add their own implementation of this trait.

Dependencies

~14–28MB
~525K SLoC