This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new b1bb7b96e build(bindings/ruby): fix compile rb-sys on Apple M1 (#2451)
b1bb7b96e is described below

commit b1bb7b96ed15bbb0a6c2790b52cfa2556ede5f9c
Author: tison <[email protected]>
AuthorDate: Mon Jun 12 18:48:10 2023 +0800

    build(bindings/ruby): fix compile rb-sys on Apple M1 (#2451)
    
    Signed-off-by: tison <[email protected]>
---
 Cargo.lock               | 15 ++++++++-------
 bindings/ruby/Cargo.toml |  2 +-
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 1dd3f93ab..90e4234b3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -437,9 +437,9 @@ dependencies = [
 
 [[package]]
 name = "bindgen"
-version = "0.60.1"
+version = "0.62.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
+checksum = "c6720a8b7b2d39dd533285ed438d458f65b31b5c257e6ac7bb3d7e82844dd722"
 dependencies = [
  "bitflags 1.3.2",
  "cexpr",
@@ -452,6 +452,7 @@ dependencies = [
  "regex",
  "rustc-hash",
  "shlex",
+ "syn 1.0.109",
 ]
 
 [[package]]
@@ -3628,20 +3629,20 @@ dependencies = [
 
 [[package]]
 name = "rb-sys"
-version = "0.9.72"
+version = "0.9.78"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "3e36bdb8be5f395264fb4345a5f6c13dac307ed3be3bccf6305b57835981c605"
+checksum = "91447d8cbb45afb5c915bad4dd44bd4b4e9be37648122409ceca75302cb81683"
 dependencies = [
  "rb-sys-build",
 ]
 
 [[package]]
 name = "rb-sys-build"
-version = "0.9.72"
+version = "0.9.78"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "b56f8993adac385ed6208f0dc62f99181eb0676dea50bac7bc3d36a86bb9429b"
+checksum = "20673c1cfbd57b2db6c066b796352f07d241c45b210fd15b269dec54fa240380"
 dependencies = [
- "bindgen 0.60.1",
+ "bindgen 0.62.0",
  "lazy_static",
  "proc-macro2",
  "quote",
diff --git a/bindings/ruby/Cargo.toml b/bindings/ruby/Cargo.toml
index 57500ea27..c3c03bb76 100644
--- a/bindings/ruby/Cargo.toml
+++ b/bindings/ruby/Cargo.toml
@@ -35,7 +35,7 @@ name = "opendal_ruby"
 [dependencies]
 magnus = { version = "0.5", features = ["bytes-crate"] }
 opendal.workspace = true
-rb-sys = { version = "0.9.72", default-features = false }
+rb-sys = { version = "0.9.77", default-features = false }
 
 [build-dependencies]
 rb-sys-env = "0.1.2"

Reply via email to