Skip to content

Commit

Permalink
refactor: Move object_store_opendal to integrations (apache#2888)
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo authored Aug 21, 2023
1 parent b060af9 commit 6f74f55
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

- name: Publish object_store_opendal
working-directory: "bindings/object_store"
working-directory: "integrations/object_store"
run: cargo publish
env:
LD_LIBRARY_PATH: ${{ env.JAVA_HOME }}/lib/server:${{ env.LD_LIBRARY_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ default-members = ["core"]
exclude = ["examples"]
members = [
"core",
"core/fuzz",

"bindings/c",
"bindings/nodejs",
"bindings/object_store",
"bindings/python",
"bindings/ruby",
"bindings/java",
Expand All @@ -39,7 +39,7 @@ members = [
"bin/oli",
"bin/oay",

"core/fuzz",
"integrations/object_store",
]
resolver = "2"

Expand Down
7 changes: 7 additions & 0 deletions integrations/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# OpenDAL Integrations

This folder contains the integrations for OpenDAL. Integrations are used to ingrate OpenDAL with other systems.

## Available Integrations

- [`object_store_opendal`](./object_store): Use OpenDAL as a backend for the [object_store](https://docs.rs/object_store/latest/object_store/).
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

[package]
description = "OpenDAL's object_store binding"
description = "OpenDAL's object_store Integration"
name = "object_store_opendal"

authors.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 6f74f55

Please sign in to comment.