rustydav
Async
Add function: parse_xml to file list, see file.rs
Warning: This is deeply customized for my personal need of read Synology file
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.
Supported methods are:
- get
- put
- delete
- unzip
- mkcol
- mv
- list
Example
Small example on how to use this library
Include rustydav as a dependency
rustydav = "0.1.3"
Then add this to your code
extern crate rustydav;
use client;
use *;
Short examples of call methods
// Every method will return a Result<Response, Error>
if
For some description about them please see the client.rs file.