Crates.io | reqwest_dav |
lib.rs | reqwest_dav |
version | 0.1.14 |
source | src |
created_at | 2022-09-09 07:55:01.132562 |
updated_at | 2024-10-28 01:13:34.496034 |
description | An async webdav client with tokio and reqwest |
homepage | |
repository | https://github.com/niuhuan/reqwest_dav |
max_upload_size | |
id | 661619 |
size | 62,001 |
An async webdav client for rust with tokio and reqwest
use crate::{Auth, ClientBuilder, Depth, Error};
#[tokio::test]
async fn it_works() -> Result<(), Error> {
// build a client
let client = ClientBuilder::new()
.set_host("http://server/remote.php/dav/files/username/".to_string())
.set_auth(Auth::Basic("username".to_owned(), "password".to_owned()))
.build()?;
// list files
println!(
"{}",
serde_json::to_string(&client.list("", Depth::Infinity).await?).unwrap()
);
// delete a file
client.delete("1.txt").await.unwrap();
Ok(())
}