tao12345666333 opened a new pull request, #7031:
URL: https://github.com/apache/opendal/pull/7031
## Summary
This PR extracts the following services into their own crates as part of the
core split initiative (#6829):
- **cacache** -> `opendal-service-cacache` (closes #6883)
- **dbfs** -> `opendal-service-dbfs` (closes #6889)
- **dropbox** -> `opendal-service-dropbox` (closes #6890)
- **etcd** -> `opendal-service-etcd` (closes #6891)
- **foundationdb** -> `opendal-service-foundationdb` (closes #6892)
## Changes
Each service is now a standalone crate under `core/services/` with:
- Its own `Cargo.toml` with service-specific dependencies
- Re-exported through the main opendal crate via feature flags
- Registration with `DEFAULT_OPERATOR_REGISTRY` via ctor
## API Compatibility
The public API remains unchanged - users can still access these services
through `opendal::services::{ServiceName}` when the corresponding feature flag
is enabled.
## Testing
- [x] `cargo check -p opendal-service-cacache`
- [x] `cargo check -p opendal-service-dbfs`
- [x] `cargo check -p opendal-service-dropbox`
- [x] `cargo check -p opendal-service-etcd`
- [x] `cargo check -p opendal-service-foundationdb`
- [x] `cargo check -p opendal`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]