| Crates.io | spring-opendal |
| lib.rs | spring-opendal |
| version | 0.4.0 |
| created_at | 2024-09-04 01:31:20.143238+00 |
| updated_at | 2025-07-28 09:37:44.810033+00 |
| description | OpenDAL plugin for spring-rs |
| homepage | https://spring-rs.github.io/ |
| repository | https://github.com/spring-rs/spring-rs |
| max_upload_size | |
| id | 1362366 |
| size | 184,214 |
spring-opendal = { version = "<version>" }
[opendal]
scheme = "fs" # service that OpenDAL supports
options = { root = "/tmp" } # service options. Different options for different scheme
layers = [] # Layer is the mechanism to intercept operations.
For Layer configuration, see this document
After configuring the above configuration items, the plugin will automatically register a Op client. This object is an alias of opendal::Operator.
pub type Op = Operator;
For the complete code, please refer to spring-opendal-example