13次发布
0.1.13 | 2024年7月31日 |
---|---|
0.1.12 | 2024年7月10日 |
0.1.11 | 2024年4月27日 |
0.1.9 | 2024年1月31日 |
0.1.1 | 2022年9月9日 |
#72 在 HTTP客户端
3,087 每月下载量
用于 opentalk-nextcloud-client
49KB
1K SLoC
Reqwest dav
使用tokio和reqwest的Rust异步webdav客户端
特性
- 身份验证
- 基本
- 摘要
- 文件管理
- 获取
- 放置
- 移动
- 删除
- 创建集合
- 列表
示例
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(())
}
依赖
~8–21MB
~318K SLoC