WeTransfer
WeTransfer is a file transfer service specialized in sending large files via email. This crate acts as an unofficial Rust client of their public api, featuring their two offered products:
- Transfers, a file sharing service which can transport up to 2GB. The service generates a publicly accessible link, from which the download can be started. Those files expire after seven days.
- Boards, a service to store creative ideas into boards, where both files and links can be pinned. These boards will expire after three months of inactivity.
Install
First, add to your crate root the following line:
[dependencies]
wetransfer = "0.1.1"
Then, import the crate into your application by adding the following line at your project's root.
extern crate wetransfer;
Usage
In this section, all the features offered by the crate are showcased.
extern crate wetransfer;
use *;
use env;