This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch Xuanwo-patch-1 in repository https://gitbox.apache.org/repos/asf/opendal.git
commit 8363033c6683ef129986696a18bf05ae4ef4d26c Author: Xuanwo <[email protected]> AuthorDate: Thu Dec 11 20:28:26 2025 +0800 fix(bindings/ocaml): Disable `staticlib` to ensure ctor works. --- bindings/ocaml/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/ocaml/Cargo.toml b/bindings/ocaml/Cargo.toml index 1b9cdc4fc..4c71235cd 100644 --- a/bindings/ocaml/Cargo.toml +++ b/bindings/ocaml/Cargo.toml @@ -27,7 +27,8 @@ repository = "https://github.com/apache/opendal" rust-version = "1.85" [lib] -crate-type = ["staticlib", "cdylib"] +# `staticlib` removed for now because of https://github.com/apache/opendal/issues/6975 +crate-type = ["cdylib"] doc = false [dependencies]
