13 releases
new 0.2.2 | Nov 7, 2024 |
---|---|
0.2.0 | Sep 18, 2024 |
0.0.6 | Jul 29, 2024 |
0.0.1 | Mar 2, 2024 |
#549 in HTTP server
358 downloads per month
Used in oay
3MB
62K
SLoC
Apache OpenDAL™ dav-server integration
dav-server-opendalfs
is an dav-server
implementation using opendal.
This crate can help you to access ANY storage services with the same webdav API.
Useful Links
Examples
use anyhow::Result;
use dav_server::davpath::DavPath;
use dav_server_opendalfs::OpendalFs;
use opendal::services::Memory;
use opendal::Operator;
#[tokio::test]
async fn test() -> Result<()> {
let op = Operator::new(Memory::default())?.finish();
let webdavfs = OpendalFs::new(op);
let metadata = webdavfs
.metadata(&DavPath::new("/").unwrap())
.await
.unwrap();
println!("{}", metadata.is_dir());
Ok(())
}
Branding
The first and most prominent mentions must use the full form: Apache OpenDAL™ of the name for any individual usage (webpage, handout, slides, etc.) Depending on the context and writing style, you should use the full form of the name sufficiently often to ensure that readers clearly understand the association of both the OpenDAL project and the OpenDAL software product to the ASF as the parent organization.
For more details, see the Apache Product Name Usage Guide.
License and Trademarks
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
Apache OpenDAL, OpenDAL, and Apache are either registered trademarks or trademarks of the Apache Software Foundation.
Dependencies
~14–26MB
~384K SLoC