Backblaze B2 Rust library

This page functions as a home page for my rust library backblaze-b2. Here are some links to the project:

To add this library as a dependency to your Rust crate, add the following line to your Cargo.toml:

[dependencies]
backblaze-b2 = "0.1.9-2"

The library is used for interacting with the web service Backblaze B2. Backblaze is a company that provides a backup service, and they have created a web service with an api called B2. This service allows the user to store files on their servers, allowing them to be retrieved at any time.

The service functions through an https json interface, and this library has various functions for listing, uploading and downloading files on Backblaze B2 through this api.

The library is currently under development to be updated for async await.