This is an automated email from the ASF dual-hosted git repository. erickguan pushed a commit to branch ruby-binding-io in repository https://gitbox.apache.org/repos/asf/opendal.git
commit 5e27818b2df97fecef73d76c22ca908ef76df6fb Author: Erick Guan <[email protected]> AuthorDate: Fri Aug 29 19:25:08 2025 +0200 feat(bindings/ruby): bump magnus to 0.8 Updates magnus dependency from local path to published version 0.8 and enables io feature for Ruby IO class implementation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> --- bindings/ruby/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/ruby/Cargo.toml b/bindings/ruby/Cargo.toml index d274b8662..dbf98f830 100644 --- a/bindings/ruby/Cargo.toml +++ b/bindings/ruby/Cargo.toml @@ -32,7 +32,7 @@ doc = false name = "opendal_ruby" [dependencies] -magnus = { path = "../../../magnus", features = ["bytes"] } +magnus = { version = "0.8", features = ["bytes", "io"] } # this crate won't be published, we always use the local version opendal = { version = ">=0", path = "../../core", features = [ "blocking",
