Small Rust library to upload files to filepush.co. I just edited the transfer-rs library to point to filepush, as both use Curl to upload files, so all the credit goes to his creator Harsh Shandilya
```rust extern crate filepush; use filepush::upload;
fn main() { match upload("Cargo.toml") { Ok(url) => println!("{}", url), Err(err) => panic!("Error: {}", err), }; } ```
A simple CLI application is provided in the examples directory.
cargo build --release