rustydav
Implementation of webdav requests in rust
This is a small library written in rust and inspired by hyperdav and uses reqwest library as the base.
This library can be used to make calls to webdav server
Example
Small example how to use this library
include rustydav as a dependency
rustydav = "0.1.1"
Then add this to your code
extern crate rustydav;
use client;
use *;
Supported methods are: get, put, delete, unzip, mkcol, mv, list. For some description about them please see the client.rs file.
// Every method will return a Result<Response, Error>
if