Small Rust library to upload and download files from/to filepush.co.
I forked the transfer-rs library and added download capabilities.
```rust extern crate filepush; use filepush::{upload, download};
fn main() { match upload("Cargo.toml") { Ok(url) => println!("{}", url), Err(err) => panic!("Error: {}", err), }; match download("https://filepush.co/9LY9/test1") { Ok(url) => println!("{}", url), Err(err) => panic!("Error: {}", err), }; } ```
A simple CLI application is provided in the examples directory.
cargo build --release
git clone https://github.com/marianopw/filepush-rs
cd filepush-rs
cargo run --example cli_client -- -u yourfile
cargo run --example cli_client -- -d yourlink
Transfer-rs lib author is Harsh Shandilya