23 releases (7 breaking)
Uses new Rust 2024
| 0.7.0 | Nov 20, 2025 |
|---|---|
| 0.6.2 | Jul 17, 2025 |
| 0.6.1 | May 26, 2025 |
| 0.4.0 | Feb 24, 2025 |
| 0.0.1 | Mar 2, 2024 |
#753 in HTTP server
173 downloads per month
Used in 5 crates
(2 directly)
3.5MB
69K
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
~17–34MB
~445K SLoC