Bindings to the Uploads.im web API. Upload your images for free with Rust!
The Uploads.im API currently has only the upload
endpoint, which allows anyone
to upload an image file with no authentication. Here's an example of how to use
it:
```rust extern crate uploadsimclient;
fn main() { let uploadedimage = uploadsimclient::uploadwithdefaultoptions("myimage.jpg").expect("successful image upload"); println!("Uploaded image! You can now view it at {}", uploadedimage.viewurl.tostring()); } ```
This project is dual-licensed under either the MIT or Apache 2.0 license. Take your pick!
Contributions, feature requests, and bug reports are warmly welcomed! See the contribution guidelines for getting started.
See also the Code of Conduct for more details about expectations regarding contributions to this project.
@ErichDonGubler, original author