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.
```rust extern crate transfer; use transfer::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