From 9c20590b0d5d064a46e96b82f46e4353f56691f3 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Mon, 26 Aug 2024 14:14:46 +0800 Subject: [PATCH] Bump version to 0.49.2 (#5052) --- CHANGELOG.md | 28 ++ bin/oay/Cargo.lock | 99 ++-- bin/oay/Cargo.toml | 4 +- bin/oay/DEPENDENCIES.rust.tsv | 34 +- bin/ofs/Cargo.lock | 180 +++----- bin/ofs/Cargo.toml | 6 +- bin/ofs/DEPENDENCIES.rust.tsv | 57 +-- bin/oli/Cargo.lock | 135 +++--- bin/oli/Cargo.toml | 2 +- bin/oli/DEPENDENCIES.rust.tsv | 32 +- bindings/c/Cargo.toml | 2 +- bindings/c/DEPENDENCIES.rust.tsv | 37 +- bindings/cpp/CMakeLists.txt | 2 +- bindings/cpp/Cargo.toml | 2 +- bindings/cpp/DEPENDENCIES.rust.tsv | 37 +- bindings/dotnet/Cargo.toml | 2 +- bindings/dotnet/DEPENDENCIES.rust.tsv | 37 +- bindings/haskell/Cargo.toml | 2 +- bindings/haskell/DEPENDENCIES.rust.tsv | 37 +- bindings/haskell/opendal.cabal | 2 +- bindings/java/Cargo.toml | 2 +- bindings/java/DEPENDENCIES.rust.tsv | 37 +- bindings/java/pom.xml | 2 +- bindings/lua/Cargo.toml | 2 +- bindings/lua/DEPENDENCIES.rust.tsv | 37 +- ....7-1.rockspec => opendal-0.1.8-1.rockspec} | 2 +- bindings/nodejs/Cargo.toml | 2 +- bindings/nodejs/DEPENDENCIES.rust.tsv | 37 +- bindings/nodejs/npm/darwin-arm64/package.json | 2 +- bindings/nodejs/npm/darwin-x64/package.json | 2 +- .../nodejs/npm/linux-arm64-gnu/package.json | 2 +- .../nodejs/npm/linux-arm64-musl/package.json | 2 +- .../nodejs/npm/linux-x64-gnu/package.json | 2 +- .../nodejs/npm/win32-arm64-msvc/package.json | 2 +- .../nodejs/npm/win32-x64-msvc/package.json | 2 +- bindings/nodejs/package.json | 2 +- bindings/ocaml/DEPENDENCIES.rust.tsv | 35 +- bindings/php/Cargo.toml | 2 +- bindings/php/DEPENDENCIES.rust.tsv | 45 +- bindings/python/Cargo.toml | 2 +- bindings/python/DEPENDENCIES.rust.tsv | 37 +- bindings/ruby/Cargo.toml | 2 +- bindings/ruby/DEPENDENCIES.rust.tsv | 41 +- core/Cargo.lock | 422 +++++++++++------- core/Cargo.toml | 4 +- core/DEPENDENCIES.rust.tsv | 35 +- .../cloudfilter/DEPENDENCIES.rust.tsv | 33 +- integrations/dav-server/Cargo.toml | 2 +- integrations/dav-server/DEPENDENCIES.rust.tsv | 37 +- integrations/fuse3/Cargo.toml | 2 +- integrations/fuse3/DEPENDENCIES.rust.tsv | 39 +- integrations/object_store/Cargo.toml | 4 +- .../object_store/DEPENDENCIES.rust.tsv | 47 +- integrations/object_store/README.md | 8 +- integrations/parquet/Cargo.toml | 2 +- integrations/parquet/DEPENDENCIES.rust.tsv | 37 +- integrations/unftp-sbe/Cargo.toml | 2 +- integrations/unftp-sbe/DEPENDENCIES.rust.tsv | 41 +- integrations/virtiofs/DEPENDENCIES.rust.tsv | 35 +- 59 files changed, 876 insertions(+), 912 deletions(-) rename bindings/lua/{opendal-0.1.7-1.rockspec => opendal-0.1.8-1.rockspec} (96%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d3e87b015f7..2b8fb4c50b93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/). +## [v0.49.2] - 2024-08-26 + +### Added +* feat(ovfs): support read and write by @zjregee in https://github.com/apache/opendal/pull/5016 +* feat(bin/ofs): introduce `integrations/cloudfilter` for ofs by @ho-229 in https://github.com/apache/opendal/pull/4935 +* feat(integrations/spring): add AutoConfiguration class for Spring Mvc and Webflux by @shoothzj in https://github.com/apache/opendal/pull/5019 +* feat(services/monoiofs): impl read and write, add behavior test by @NKID00 in https://github.com/apache/opendal/pull/4944 +* feat(core/services-s3): support user defined metadata by @haoqixu in https://github.com/apache/opendal/pull/5030 +* feat: align `fn root` semantics; fix missing root for some services; rm duplicated normalize ops by @yjhmelody in https://github.com/apache/opendal/pull/5035 +* feat(core): expose configs always by @tisonkun in https://github.com/apache/opendal/pull/5034 +* feat(services/monoiofs): append, create_dir, copy and rename by @NKID00 in https://github.com/apache/opendal/pull/5041 +### Changed +* refactor(core): new type to print context and reduce allocations by @evenyag in https://github.com/apache/opendal/pull/5021 +* refactor(layers/prometheus-client): remove useless `scheme` field from `PrometheusAccessor` and `PrometheusMetricWrapper` type by @koushiro in https://github.com/apache/opendal/pull/5026 +* refactor(layers/prometheus-client): avoid multiple clone of labels by @koushiro in https://github.com/apache/opendal/pull/5028 +* refactor(core/services-oss): remove the `starts_with` by @haoqixu in https://github.com/apache/opendal/pull/5036 +### Fixed +* fix(layers/prometheus-client): remove duplicated `increment_request_total` of write operation by @koushiro in https://github.com/apache/opendal/pull/5023 +* fix(services/monoiofs): drop JoinHandle in worker thread by @NKID00 in https://github.com/apache/opendal/pull/5031 +### CI +* ci: Add contents write permission for build-website by @Xuanwo in https://github.com/apache/opendal/pull/5017 +* ci: Fix test for service ghac by @Xuanwo in https://github.com/apache/opendal/pull/5018 +* ci(integrations/spring): add spring boot bean load test by @shoothzj in https://github.com/apache/opendal/pull/5032 +### Chore +* chore: fix path typo in release docs by @tisonkun in https://github.com/apache/opendal/pull/5038 +* chore: align the `token` method semantics by @yjhmelody in https://github.com/apache/opendal/pull/5045 + ## [v0.49.1] - 2024-08-15 ### Added @@ -3933,6 +3960,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). Hello, OpenDAL! +[v0.49.2]: https://github.com/apache/opendal/compare/v0.49.1...v0.49.2 [v0.49.1]: https://github.com/apache/opendal/compare/v0.49.0...v0.49.1 [v0.49.0]: https://github.com/apache/opendal/compare/v0.48.0...v0.49.0 [v0.48.0]: https://github.com/apache/opendal/compare/v0.47.3...v0.48.0 diff --git a/bin/oay/Cargo.lock b/bin/oay/Cargo.lock index 83c8ad1d1986..abb64307ffff 100644 --- a/bin/oay/Cargo.lock +++ b/bin/oay/Cargo.lock @@ -260,9 +260,9 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "cc" -version = "1.1.11" +version = "1.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189" +checksum = "50d2eb3cd3d1bf4529e31c215ee6f93ec5a3d536d9f578f93d9d33ee19562932" dependencies = [ "shlex", ] @@ -289,9 +289,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.15" +version = "4.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc" +checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" dependencies = [ "clap_builder", ] @@ -379,7 +379,7 @@ dependencies = [ [[package]] name = "dav-server-opendalfs" -version = "0.0.8" +version = "0.1.0" dependencies = [ "anyhow", "bytes", @@ -436,9 +436,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "fastrand" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "flagset" @@ -807,9 +807,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.155" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libredox" @@ -941,7 +941,7 @@ dependencies = [ [[package]] name = "oay" -version = "0.41.9" +version = "0.41.10" dependencies = [ "anyhow", "axum", @@ -983,7 +983,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "opendal" -version = "0.49.1" +version = "0.49.2" dependencies = [ "anyhow", "async-trait", @@ -1164,9 +1164,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -1212,9 +1212,9 @@ dependencies = [ [[package]] name = "redox_users" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", "libredox", @@ -1267,9 +1267,9 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" [[package]] name = "reqwest" -version = "0.12.5" +version = "0.12.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" dependencies = [ "base64 0.22.1", "bytes", @@ -1306,7 +1306,7 @@ dependencies = [ "wasm-streams", "web-sys", "webpki-roots", - "winreg", + "windows-registry", ] [[package]] @@ -1397,18 +1397,18 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "serde" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", @@ -1417,9 +1417,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.125" +version = "1.0.127" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed" +checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" dependencies = [ "itoa", "memchr", @@ -1529,9 +1529,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" -version = "2.0.74" +version = "2.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" +checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" dependencies = [ "proc-macro2", "quote", @@ -1549,6 +1549,9 @@ name = "sync_wrapper" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +dependencies = [ + "futures-core", +] [[package]] name = "thiserror" @@ -1628,9 +1631,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", @@ -2051,6 +2054,36 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-registry" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +dependencies = [ + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-result" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-strings" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +dependencies = [ + "windows-result", + "windows-targets 0.52.6", +] + [[package]] name = "windows-sys" version = "0.48.0" @@ -2199,16 +2232,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "winreg" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - [[package]] name = "xml-rs" version = "0.8.21" diff --git a/bin/oay/Cargo.toml b/bin/oay/Cargo.toml index 5ec6410f579d..0bcf6e0322c7 100644 --- a/bin/oay/Cargo.toml +++ b/bin/oay/Cargo.toml @@ -27,7 +27,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.41.9" +version = "0.41.10" [features] default = ["frontends-webdav", "frontends-s3"] @@ -47,7 +47,7 @@ bytes = { version = "1.5.0", optional = true } chrono = "0.4.31" clap = { version = "4", features = ["cargo", "string"] } dav-server = { version = "0.7", optional = true } -dav-server-opendalfs = { version = "0.0.8", path = "../../integrations/dav-server", optional = true } +dav-server-opendalfs = { version = "0.1.0", path = "../../integrations/dav-server", optional = true } dirs = "5.0.1" futures = "0.3" futures-util = { version = "0.3.29", optional = true } diff --git a/bin/oay/DEPENDENCIES.rust.tsv b/bin/oay/DEPENDENCIES.rust.tsv index d6810f5bcfdd..784b18f23530 100644 --- a/bin/oay/DEPENDENCIES.rust.tsv +++ b/bin/oay/DEPENDENCIES.rust.tsv @@ -25,10 +25,10 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X -clap@4.5.15 X X +clap@4.5.16 X X clap_builder@4.5.15 X X clap_lex@0.7.2 X X colorchoice@1.0.2 X X @@ -36,13 +36,13 @@ core-foundation-sys@0.8.7 X X cpufeatures@0.2.13 X X crypto-common@0.1.6 X X dav-server@0.7.0 X -dav-server-opendalfs@0.0.8 X +dav-server-opendalfs@0.1.0 X deranged@0.3.11 X X digest@0.10.7 X X dirs@5.0.1 X X dirs-sys@0.4.1 X X equivalent@1.0.1 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -80,7 +80,7 @@ is_terminal_polyfill@1.70.1 X X itoa@1.0.11 X X js-sys@0.3.70 X X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libredox@0.1.3 X lock_api@0.4.12 X X log@0.4.22 X X @@ -96,10 +96,10 @@ mio@1.0.2 X nu-ansi-term@0.46.0 X num-conv@0.1.0 X X num-traits@0.2.19 X X -oay@0.41.9 X +oay@0.41.10 X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X option-ext@0.2.0 X overload@0.1.1 X parking_lot@0.12.3 X X @@ -113,18 +113,18 @@ powerfmt@0.2.0 X X ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X redox_syscall@0.5.3 X -redox_users@0.4.5 X +redox_users@0.4.6 X regex@1.10.6 X X regex-automata@0.1.10 X X regex-automata@0.4.7 X X regex-syntax@0.6.29 X X regex-syntax@0.8.4 X X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustls@0.23.12 X X X @@ -134,9 +134,9 @@ rustls-webpki@0.102.6 X rustversion@1.0.17 X X ryu@1.0.18 X X scopeguard@1.2.0 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_path_to_error@0.1.16 X X serde_spanned@0.6.7 X X serde_urlencoded@0.7.1 X X @@ -149,7 +149,7 @@ socket2@0.5.7 X X spin@0.9.8 X strsim@0.11.1 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@0.1.2 X sync_wrapper@1.0.1 X thiserror@1.0.63 X X @@ -160,7 +160,7 @@ time-core@0.1.2 X X time-macros@0.2.18 X X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -203,6 +203,9 @@ winapi@0.3.9 X X winapi-i686-pc-windows-gnu@0.4.0 X X winapi-x86_64-pc-windows-gnu@0.4.0 X X windows-core@0.52.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.48.0 X X windows-sys@0.52.0 X X windows-targets@0.48.5 X X @@ -223,7 +226,6 @@ windows_x86_64_gnullvm@0.52.6 X X windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X winnow@0.6.18 X -winreg@0.52.0 X xml-rs@0.8.21 X xmltree@0.10.3 X zerocopy@0.7.35 X X X diff --git a/bin/ofs/Cargo.lock b/bin/ofs/Cargo.lock index b97ac926ed39..f6be8cdd8bde 100644 --- a/bin/ofs/Cargo.lock +++ b/bin/ofs/Cargo.lock @@ -201,9 +201,9 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "cc" -version = "1.1.11" +version = "1.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189" +checksum = "50d2eb3cd3d1bf4529e31c215ee6f93ec5a3d536d9f578f93d9d33ee19562932" dependencies = [ "shlex", ] @@ -237,14 +237,14 @@ dependencies = [ "js-sys", "num-traits", "wasm-bindgen", - "windows-targets 0.52.6", + "windows-targets", ] [[package]] name = "clap" -version = "4.5.15" +version = "4.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc" +checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" dependencies = [ "clap_builder", "clap_derive", @@ -491,9 +491,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "flagset" @@ -540,7 +540,7 @@ dependencies = [ [[package]] name = "fuse3_opendal" -version = "0.0.5" +version = "0.0.6" dependencies = [ "bytes", "fuse3", @@ -883,9 +883,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.155" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "linux-raw-sys" @@ -978,9 +978,9 @@ dependencies = [ [[package]] name = "nt-time" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c83e0566ee840d3023f938f60aa3b445969f37adc499258ce129bd1b6b26ec1" +checksum = "2de419e64947cd8830e66beb584acc3fb42ed411d103e3c794dda355d1b374b5" dependencies = [ "chrono", "time", @@ -1012,7 +1012,7 @@ dependencies = [ [[package]] name = "ofs" -version = "0.0.10" +version = "0.0.11" dependencies = [ "anyhow", "clap", @@ -1044,7 +1044,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "opendal" -version = "0.49.1" +version = "0.49.2" dependencies = [ "anyhow", "async-trait", @@ -1221,9 +1221,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -1317,9 +1317,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.5" +version = "0.12.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" dependencies = [ "base64", "bytes", @@ -1356,7 +1356,7 @@ dependencies = [ "wasm-streams", "web-sys", "webpki-roots", - "winreg", + "windows-registry", ] [[package]] @@ -1483,18 +1483,18 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", @@ -1503,9 +1503,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.125" +version = "1.0.127" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed" +checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" dependencies = [ "itoa", "memchr", @@ -1616,9 +1616,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "syn" -version = "2.0.74" +version = "2.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" +checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" dependencies = [ "proc-macro2", "quote", @@ -1630,6 +1630,9 @@ name = "sync_wrapper" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +dependencies = [ + "futures-core", +] [[package]] name = "tempfile" @@ -1741,9 +1744,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", @@ -2070,9 +2073,9 @@ dependencies = [ [[package]] name = "which" -version = "6.0.2" +version = "6.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d9c5ed668ee1f17edb3b627225343d210006a90bb1e3745ce1f30b1fb115075" +checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" dependencies = [ "either", "home", @@ -2102,7 +2105,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" dependencies = [ "windows-core 0.58.0", - "windows-targets 0.52.6", + "windows-targets", ] [[package]] @@ -2111,7 +2114,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" dependencies = [ - "windows-targets 0.52.6", + "windows-targets", ] [[package]] @@ -2124,7 +2127,7 @@ dependencies = [ "windows-interface", "windows-result", "windows-strings", - "windows-targets 0.52.6", + "windows-targets", ] [[package]] @@ -2149,13 +2152,24 @@ dependencies = [ "syn", ] +[[package]] +name = "windows-registry" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +dependencies = [ + "windows-result", + "windows-strings", + "windows-targets", +] + [[package]] name = "windows-result" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" dependencies = [ - "windows-targets 0.52.6", + "windows-targets", ] [[package]] @@ -2165,16 +2179,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" dependencies = [ "windows-result", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" -dependencies = [ - "windows-targets 0.48.5", + "windows-targets", ] [[package]] @@ -2183,7 +2188,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", + "windows-targets", ] [[package]] @@ -2192,22 +2197,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-targets" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" -dependencies = [ - "windows_aarch64_gnullvm 0.48.5", - "windows_aarch64_msvc 0.48.5", - "windows_i686_gnu 0.48.5", - "windows_i686_msvc 0.48.5", - "windows_x86_64_gnu 0.48.5", - "windows_x86_64_gnullvm 0.48.5", - "windows_x86_64_msvc 0.48.5", + "windows-targets", ] [[package]] @@ -2216,46 +2206,28 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", "windows_i686_gnullvm", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", ] -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" - [[package]] name = "windows_aarch64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" - [[package]] name = "windows_aarch64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" -[[package]] -name = "windows_i686_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" - [[package]] name = "windows_i686_gnu" version = "0.52.6" @@ -2268,64 +2240,30 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" -[[package]] -name = "windows_i686_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" - [[package]] name = "windows_i686_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" - [[package]] name = "windows_x86_64_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" - [[package]] name = "windows_x86_64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" - [[package]] name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" -[[package]] -name = "winreg" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - [[package]] name = "winsafe" version = "0.0.19" diff --git a/bin/ofs/Cargo.toml b/bin/ofs/Cargo.toml index 77c5c9d7f5fe..f93c61acc906 100644 --- a/bin/ofs/Cargo.toml +++ b/bin/ofs/Cargo.toml @@ -20,7 +20,7 @@ categories = ["filesystem"] description = "OpenDAL File System" keywords = ["storage", "data", "s3", "fs", "azblob"] name = "ofs" -version = "0.0.10" +version = "0.0.11" authors = ["Apache OpenDAL "] edition = "2021" @@ -47,10 +47,10 @@ tokio = { version = "1.37.0", features = [ url = "2.5.0" [target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies] -fuse3_opendal = { version = "0.0.5", path = "../../integrations/fuse3" } fuse3 = { "version" = "0.7.2", "features" = ["tokio-runtime", "unprivileged"] } -nix = { version = "0.29.0", features = ["user"] } +fuse3_opendal = { version = "0.0.6", path = "../../integrations/fuse3" } libc = "0.2.154" +nix = { version = "0.29.0", features = ["user"] } [target.'cfg(target_os = "windows")'.dependencies] cloud-filter = { version = "0.0.5" } diff --git a/bin/ofs/DEPENDENCIES.rust.tsv b/bin/ofs/DEPENDENCIES.rust.tsv index bc365a437bcd..55e0f1b3cd24 100644 --- a/bin/ofs/DEPENDENCIES.rust.tsv +++ b/bin/ofs/DEPENDENCIES.rust.tsv @@ -22,15 +22,17 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X cfg_aliases@0.1.1 X cfg_aliases@0.2.1 X chrono@0.4.38 X X -clap@4.5.15 X X +clap@4.5.16 X X clap_builder@4.5.15 X X clap_derive@4.5.13 X X clap_lex@0.7.2 X X +cloud-filter@0.0.5 X +cloudfilter_opendal@0.0.0 X colorchoice@1.0.2 X X concurrent-queue@2.5.0 X X const-oid@0.9.6 X X @@ -43,6 +45,7 @@ crossbeam-utils@0.8.20 X X crunchy@0.2.2 X crypto-common@0.1.6 X X cstr@0.2.12 X +deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X dotenvy@0.15.7 X @@ -51,12 +54,12 @@ env_filter@0.1.2 X X env_logger@0.11.5 X X errno@0.3.9 X X event-listener@4.0.3 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X fuse3@0.7.2 X -fuse3_opendal@0.0.5 X +fuse3_opendal@0.0.6 X futures@0.3.30 X X futures-channel@0.3.30 X X futures-core@0.3.30 X X @@ -91,7 +94,7 @@ is_terminal_polyfill@1.70.1 X X itoa@1.0.11 X X js-sys@0.3.70 X X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X linux-raw-sys@0.4.14 X X X log@0.4.22 X X md-5@0.10.6 X X @@ -102,11 +105,13 @@ miniz_oxide@0.7.4 X X X mio@1.0.2 X nix@0.28.0 X nix@0.29.0 X +nt-time@0.8.1 X X +num-conv@0.1.0 X X num-traits@0.2.19 X X object@0.36.3 X X -ofs@0.0.10 X +ofs@0.0.11 X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X ordered-multimap@0.7.3 X parking@2.2.0 X X percent-encoding@2.3.1 X X @@ -114,11 +119,12 @@ pin-project@1.1.5 X X pin-project-internal@1.1.5 X X pin-project-lite@0.2.14 X X pin-utils@0.1.0 X X +powerfmt@0.2.0 X X ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X @@ -126,7 +132,7 @@ regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rust-ini@0.21.1 X rustc-demangle@0.1.24 X X @@ -138,9 +144,9 @@ rustls-pki-types@1.8.0 X X rustls-webpki@0.102.6 X ryu@1.0.18 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -153,12 +159,15 @@ socket2@0.5.7 X X spin@0.9.8 X strsim@0.11.1 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X +time@0.3.36 X X +time-core@0.1.2 X X +time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -191,28 +200,26 @@ wasm-bindgen-shared@0.2.93 X X wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X -which@6.0.2 X +which@6.0.3 X +widestring@1.1.0 X X +windows@0.58.0 X X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-core@0.58.0 X X +windows-implement@0.58.0 X X +windows-interface@0.58.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X winsafe@0.0.19 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X diff --git a/bin/oli/Cargo.lock b/bin/oli/Cargo.lock index deff12661efe..dd7c98801f88 100644 --- a/bin/oli/Cargo.lock +++ b/bin/oli/Cargo.lock @@ -160,7 +160,7 @@ checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-lite 2.3.0", "slab", ] @@ -382,7 +382,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" dependencies = [ - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-core", "pin-project", "tokio", @@ -545,9 +545,9 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.7" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" +checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" dependencies = [ "serde", ] @@ -585,9 +585,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.11" +version = "1.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189" +checksum = "50d2eb3cd3d1bf4529e31c215ee6f93ec5a3d536d9f578f93d9d33ee19562932" dependencies = [ "jobserver", "libc", @@ -646,9 +646,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.15" +version = "4.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc" +checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" dependencies = [ "clap_builder", ] @@ -1024,9 +1024,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "fixedbitset" @@ -1143,7 +1143,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-core", "futures-io", "parking", @@ -1249,9 +1249,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" dependencies = [ "atomic-waker", "bytes", @@ -1632,9 +1632,9 @@ dependencies = [ [[package]] name = "lazy-regex" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "576c8060ecfdf2e56995cf3274b4f2d71fa5e4fa3607c1c0b63c10180ee58741" +checksum = "8d8e41c97e6bc7ecb552016274b99fbb5d035e8de288c582d9b933af6677bfda" dependencies = [ "lazy-regex-proc_macros", "once_cell", @@ -1643,9 +1643,9 @@ dependencies = [ [[package]] name = "lazy-regex-proc_macros" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9efb9e65d4503df81c615dc33ff07042a9408ac7f26b45abee25566f7fbfd12c" +checksum = "76e1d8b05d672c53cb9c7b920bbba8783845ae4f0b076e02a3db1d02c81b4163" dependencies = [ "proc-macro2", "quote", @@ -1670,9 +1670,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.155" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libloading" @@ -1716,9 +1716,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.19" +version = "1.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc53a7799a7496ebc9fd29f31f7df80e83c9bda5299768af5f9e59eeea74647" +checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" dependencies = [ "cc", "pkg-config", @@ -1946,7 +1946,7 @@ dependencies = [ [[package]] name = "oli" -version = "0.41.9" +version = "0.41.10" dependencies = [ "anyhow", "assert_cmd", @@ -1972,7 +1972,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "opendal" -version = "0.49.1" +version = "0.49.2" dependencies = [ "anyhow", "async-tls", @@ -2177,7 +2177,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-io", ] @@ -2303,9 +2303,9 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.20" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", "syn", @@ -2469,9 +2469,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -2568,9 +2568,9 @@ dependencies = [ [[package]] name = "redox_users" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", "libredox", @@ -2639,9 +2639,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.5" +version = "0.12.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" dependencies = [ "base64 0.22.1", "bytes", @@ -2678,7 +2678,7 @@ dependencies = [ "wasm-streams", "web-sys", "webpki-roots 0.26.3", - "winreg", + "windows-registry", ] [[package]] @@ -2821,9 +2821,9 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba" +checksum = "04182dffc9091a404e0fc069ea5cd60e5b866c3adf881eff99a32d048242dffa" dependencies = [ "openssl-probe", "rustls-pemfile 2.1.3", @@ -2978,18 +2978,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", @@ -2998,9 +2998,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.125" +version = "1.0.127" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed" +checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" dependencies = [ "itoa", "memchr", @@ -3199,9 +3199,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.74" +version = "2.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" +checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" dependencies = [ "proc-macro2", "quote", @@ -3219,6 +3219,9 @@ name = "sync_wrapper" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +dependencies = [ + "futures-core", +] [[package]] name = "tagptr" @@ -3233,7 +3236,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if", - "fastrand 2.1.0", + "fastrand 2.1.1", "once_cell", "rustix 0.38.34", "windows-sys 0.59.0", @@ -3322,9 +3325,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", @@ -3839,6 +3842,36 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-registry" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +dependencies = [ + "windows-result", + "windows-strings", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-result" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-strings" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" +dependencies = [ + "windows-result", + "windows-targets 0.52.6", +] + [[package]] name = "windows-sys" version = "0.48.0" @@ -3996,16 +4029,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "winreg" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - [[package]] name = "zerocopy" version = "0.7.35" diff --git a/bin/oli/Cargo.toml b/bin/oli/Cargo.toml index 050e97aa42b2..87f4d2dd9240 100644 --- a/bin/oli/Cargo.toml +++ b/bin/oli/Cargo.toml @@ -27,7 +27,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.41.9" +version = "0.41.10" [features] # Enable services dashmap support diff --git a/bin/oli/DEPENDENCIES.rust.tsv b/bin/oli/DEPENDENCIES.rust.tsv index a4f567af7349..6f2d9286bafe 100644 --- a/bin/oli/DEPENDENCIES.rust.tsv +++ b/bin/oli/DEPENDENCIES.rust.tsv @@ -25,11 +25,11 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X -clap@4.5.15 X X +clap@4.5.16 X X clap_builder@4.5.15 X X clap_lex@0.7.2 X X colorchoice@1.0.2 X X @@ -50,7 +50,7 @@ dlv-list@0.5.2 X X env_filter@0.1.2 X X env_logger@0.11.5 X X equivalent@1.0.1 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -90,7 +90,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X libredox@0.1.3 X log@0.4.22 X X @@ -106,9 +106,9 @@ num-integer@0.1.46 X X num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X -oli@0.41.9 X +oli@0.41.10 X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X option-ext@0.2.0 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X @@ -127,16 +127,16 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X -redox_users@0.4.5 X +redox_users@0.4.6 X regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -150,9 +150,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_spanned@0.6.7 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X @@ -167,7 +167,7 @@ spin@0.9.8 X spki@0.7.3 X X strsim@0.11.1 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -177,7 +177,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -212,6 +212,9 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.48.0 X X windows-sys@0.52.0 X X windows-targets@0.48.5 X X @@ -232,7 +235,6 @@ windows_x86_64_gnullvm@0.52.6 X X windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X winnow@0.6.18 X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/c/Cargo.toml b/bindings/c/Cargo.toml index ce75514e703b..88cf1f227c1c 100644 --- a/bindings/c/Cargo.toml +++ b/bindings/c/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.44.11" +version = "0.44.12" [lib] crate-type = ["cdylib", "staticlib"] diff --git a/bindings/c/DEPENDENCIES.rust.tsv b/bindings/c/DEPENDENCIES.rust.tsv index dca64f774507..5491f911e044 100644 --- a/bindings/c/DEPENDENCIES.rust.tsv +++ b/bindings/c/DEPENDENCIES.rust.tsv @@ -22,7 +22,7 @@ byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X cbindgen@0.26.0 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -41,7 +41,7 @@ deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X errno@0.3.9 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -81,7 +81,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X linux-raw-sys@0.4.14 X X X log@0.4.22 X X @@ -98,8 +98,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-c@0.44.11 X +opendal@0.49.2 X +opendal-c@0.44.12 X ordered-multimap@0.7.3 X os_str_bytes@6.6.1 X X pbkdf2@0.12.2 X X @@ -118,12 +118,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -138,9 +138,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -155,7 +155,7 @@ spki@0.7.3 X X strsim@0.10.0 X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X tempfile@3.12.0 X X termcolor@1.4.1 X X @@ -168,7 +168,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -204,27 +204,20 @@ winapi-i686-pc-windows-gnu@0.4.0 X X winapi-util@0.1.9 X X winapi-x86_64-pc-windows-gnu@0.4.0 X X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X windows-sys@0.59.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/cpp/CMakeLists.txt b/bindings/cpp/CMakeLists.txt index 1840f735ae7a..7abce03bd021 100644 --- a/bindings/cpp/CMakeLists.txt +++ b/bindings/cpp/CMakeLists.txt @@ -16,7 +16,7 @@ # under the License. cmake_minimum_required(VERSION 3.10) -project(opendal-cpp VERSION 0.45.9 LANGUAGES CXX) +project(opendal-cpp VERSION 0.45.10 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/bindings/cpp/Cargo.toml b/bindings/cpp/Cargo.toml index 803853a5c2a2..dcc8242f596a 100644 --- a/bindings/cpp/Cargo.toml +++ b/bindings/cpp/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.45.9" +version = "0.45.10" [lib] crate-type = ["staticlib"] diff --git a/bindings/cpp/DEPENDENCIES.rust.tsv b/bindings/cpp/DEPENDENCIES.rust.tsv index 74bea0bcb483..5495d0342d02 100644 --- a/bindings/cpp/DEPENDENCIES.rust.tsv +++ b/bindings/cpp/DEPENDENCIES.rust.tsv @@ -18,7 +18,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -39,7 +39,7 @@ der@0.7.9 X X deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -75,7 +75,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X link-cplusplus@1.0.9 X X log@0.4.22 X X @@ -92,8 +92,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-cpp@0.45.9 X +opendal@0.49.2 X +opendal-cpp@0.45.10 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X pem@3.0.4 X @@ -111,12 +111,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -131,9 +131,9 @@ salsa20@0.10.2 X X scratch@1.0.7 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -146,7 +146,7 @@ socket2@0.5.7 X X spin@0.9.8 X spki@0.7.3 X X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X termcolor@1.4.1 X X thiserror@1.0.63 X X @@ -157,7 +157,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -189,27 +189,20 @@ web-sys@0.3.70 X X webpki-roots@0.26.3 X winapi-util@0.1.9 X X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X windows-sys@0.59.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/dotnet/Cargo.toml b/bindings/dotnet/Cargo.toml index 882bc658c686..22fad672d261 100644 --- a/bindings/dotnet/Cargo.toml +++ b/bindings/dotnet/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-dotnet" publish = false -version = "0.1.7" +version = "0.1.8" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/dotnet/DEPENDENCIES.rust.tsv b/bindings/dotnet/DEPENDENCIES.rust.tsv index beab1b668899..06de406dba2a 100644 --- a/bindings/dotnet/DEPENDENCIES.rust.tsv +++ b/bindings/dotnet/DEPENDENCIES.rust.tsv @@ -18,7 +18,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -34,7 +34,7 @@ der@0.7.9 X X deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -70,7 +70,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X log@0.4.22 X X md-5@0.10.6 X X @@ -86,8 +86,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-dotnet@0.1.7 X +opendal@0.49.2 X +opendal-dotnet@0.1.8 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X pem@3.0.4 X @@ -105,12 +105,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -124,9 +124,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -139,7 +139,7 @@ socket2@0.5.7 X X spin@0.9.8 X spki@0.7.3 X X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -149,7 +149,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -179,26 +179,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/haskell/Cargo.toml b/bindings/haskell/Cargo.toml index fc12c0ae864f..a8e70adb0d65 100644 --- a/bindings/haskell/Cargo.toml +++ b/bindings/haskell/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.44.9" +version = "0.44.10" [lib] crate-type = ["cdylib"] diff --git a/bindings/haskell/DEPENDENCIES.rust.tsv b/bindings/haskell/DEPENDENCIES.rust.tsv index 945f858ad6db..7da8b38e3fe2 100644 --- a/bindings/haskell/DEPENDENCIES.rust.tsv +++ b/bindings/haskell/DEPENDENCIES.rust.tsv @@ -18,7 +18,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -34,7 +34,7 @@ der@0.7.9 X X deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -70,7 +70,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X log@0.4.22 X X md-5@0.10.6 X X @@ -86,8 +86,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-hs@0.44.9 X +opendal@0.49.2 X +opendal-hs@0.44.10 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X pem@3.0.4 X @@ -105,12 +105,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -124,9 +124,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -139,7 +139,7 @@ socket2@0.5.7 X X spin@0.9.8 X spki@0.7.3 X X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -149,7 +149,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -179,26 +179,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/haskell/opendal.cabal b/bindings/haskell/opendal.cabal index 37acf15d7dea..eed84093d917 100644 --- a/bindings/haskell/opendal.cabal +++ b/bindings/haskell/opendal.cabal @@ -17,7 +17,7 @@ cabal-version: 3.0 -- under the License. name: opendal -version: 0.44.9.0 +version: 0.44.10.0 license: Apache-2.0 synopsis: Apache OpenDALâ„¢ Haskell Binding description: diff --git a/bindings/java/Cargo.toml b/bindings/java/Cargo.toml index ecd3a4db0c6e..ba2b8848e2c4 100644 --- a/bindings/java/Cargo.toml +++ b/bindings/java/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.47.1" +version = "0.47.2" [lib] crate-type = ["cdylib"] diff --git a/bindings/java/DEPENDENCIES.rust.tsv b/bindings/java/DEPENDENCIES.rust.tsv index 817bee9d998c..5d394223a5a4 100644 --- a/bindings/java/DEPENDENCIES.rust.tsv +++ b/bindings/java/DEPENDENCIES.rust.tsv @@ -23,7 +23,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cesu8@1.1.0 X X cfg-if@1.0.0 X X chrono@0.4.38 X X @@ -44,7 +44,7 @@ derive_destructure2@0.1.3 X X digest@0.10.7 X X dlv-list@0.5.2 X X errno@0.3.9 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -82,7 +82,7 @@ jni-sys@0.3.0 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X linux-raw-sys@0.4.14 X X X lock_api@0.4.12 X X @@ -102,8 +102,8 @@ num-traits@0.2.19 X X num_cpus@1.16.0 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-java@0.47.1 X +opendal@0.49.2 X +opendal-java@0.47.2 X openssh@0.10.5 X X openssh-sftp-client@0.14.6 X openssh-sftp-client-lowlevel@0.6.0 X @@ -129,13 +129,13 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X redox_syscall@0.5.3 X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -152,9 +152,9 @@ same-file@1.0.6 X X scopeguard@1.2.0 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -173,7 +173,7 @@ ssh_format_error@0.1.0 X stable_deref_trait@1.2.0 X X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X tempfile@3.12.0 X X thin-vec@0.2.13 X X @@ -185,7 +185,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-io-utility@0.7.6 X tokio-macros@2.4.0 X tokio-pipe@0.2.12 X X @@ -223,36 +223,29 @@ web-sys@0.3.70 X X webpki-roots@0.26.3 X winapi-util@0.1.9 X X windows-core@0.52.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.45.0 X X -windows-sys@0.48.0 X X windows-sys@0.52.0 X X windows-sys@0.59.0 X X windows-targets@0.42.2 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X windows_aarch64_gnullvm@0.42.2 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X windows_aarch64_msvc@0.42.2 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X windows_i686_gnu@0.42.2 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X windows_i686_msvc@0.42.2 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X windows_x86_64_gnu@0.42.2 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X windows_x86_64_gnullvm@0.42.2 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X windows_x86_64_msvc@0.42.2 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/java/pom.xml b/bindings/java/pom.xml index ebef58dca81d..b9b1762219ab 100644 --- a/bindings/java/pom.xml +++ b/bindings/java/pom.xml @@ -32,7 +32,7 @@ org.apache.opendal opendal - 0.47.1 + 0.47.2 Apache OpenDALâ„¢ diff --git a/bindings/lua/Cargo.toml b/bindings/lua/Cargo.toml index 98f151a8d366..eb047fca0323 100644 --- a/bindings/lua/Cargo.toml +++ b/bindings/lua/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-lua" publish = false -version = "0.1.7" +version = "0.1.8" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/lua/DEPENDENCIES.rust.tsv b/bindings/lua/DEPENDENCIES.rust.tsv index c807bc216191..ed1799103415 100644 --- a/bindings/lua/DEPENDENCIES.rust.tsv +++ b/bindings/lua/DEPENDENCIES.rust.tsv @@ -20,7 +20,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -37,7 +37,7 @@ deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X either@1.13.0 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -74,7 +74,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X log@0.4.22 X X md-5@0.10.6 X X @@ -93,8 +93,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-lua@0.1.7 X +opendal@0.49.2 X +opendal-lua@0.1.8 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X pem@3.0.4 X @@ -115,7 +115,7 @@ proc-macro-error-attr@1.0.4 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X @@ -123,7 +123,7 @@ regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -138,9 +138,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -154,7 +154,7 @@ spin@0.9.8 X spki@0.7.3 X X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -164,7 +164,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -194,26 +194,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/lua/opendal-0.1.7-1.rockspec b/bindings/lua/opendal-0.1.8-1.rockspec similarity index 96% rename from bindings/lua/opendal-0.1.7-1.rockspec rename to bindings/lua/opendal-0.1.8-1.rockspec index 4ce068caafb7..bed4b8228041 100644 --- a/bindings/lua/opendal-0.1.7-1.rockspec +++ b/bindings/lua/opendal-0.1.8-1.rockspec @@ -1,5 +1,5 @@ package = "opendal" -version = "0.1.7-1" +version = "0.1.8-1" source = { url = "git+https://github.com/apache/opendal/", diff --git a/bindings/nodejs/Cargo.toml b/bindings/nodejs/Cargo.toml index d73995a14a24..da1d35493bf3 100644 --- a/bindings/nodejs/Cargo.toml +++ b/bindings/nodejs/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.47.3" +version = "0.47.4" [features] default = [ diff --git a/bindings/nodejs/DEPENDENCIES.rust.tsv b/bindings/nodejs/DEPENDENCIES.rust.tsv index ecc367973e93..ce8d1624c92c 100644 --- a/bindings/nodejs/DEPENDENCIES.rust.tsv +++ b/bindings/nodejs/DEPENDENCIES.rust.tsv @@ -20,7 +20,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -38,7 +38,7 @@ der@0.7.9 X X deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -75,7 +75,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libloading@0.8.5 X libm@0.2.8 X X log@0.4.22 X X @@ -97,8 +97,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-nodejs@0.47.3 X +opendal@0.49.2 X +opendal-nodejs@0.47.4 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X pem@3.0.4 X @@ -116,7 +116,7 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X @@ -124,7 +124,7 @@ regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -138,9 +138,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -153,7 +153,7 @@ socket2@0.5.7 X X spin@0.9.8 X spki@0.7.3 X X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -163,7 +163,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -194,26 +194,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/nodejs/npm/darwin-arm64/package.json b/bindings/nodejs/npm/darwin-arm64/package.json index 48ba0f87caf1..78c4dedf2e63 100644 --- a/bindings/nodejs/npm/darwin-arm64/package.json +++ b/bindings/nodejs/npm/darwin-arm64/package.json @@ -1,7 +1,7 @@ { "name": "@opendal/lib-darwin-arm64", "repository": "git@github.com/apache/opendal.git", - "version": "0.47.3", + "version": "0.47.4", "os": [ "darwin" ], diff --git a/bindings/nodejs/npm/darwin-x64/package.json b/bindings/nodejs/npm/darwin-x64/package.json index c4883551d5e5..fac83a583e3a 100644 --- a/bindings/nodejs/npm/darwin-x64/package.json +++ b/bindings/nodejs/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-darwin-x64", - "version": "0.47.3", + "version": "0.47.4", "repository": "git@github.com/apache/opendal.git", "os": [ "darwin" diff --git a/bindings/nodejs/npm/linux-arm64-gnu/package.json b/bindings/nodejs/npm/linux-arm64-gnu/package.json index 91efd5ff2c3b..6ed1ec4af202 100644 --- a/bindings/nodejs/npm/linux-arm64-gnu/package.json +++ b/bindings/nodejs/npm/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-arm64-gnu", - "version": "0.47.3", + "version": "0.47.4", "repository": "git@github.com/apache/opendal.git", "os": [ "linux" diff --git a/bindings/nodejs/npm/linux-arm64-musl/package.json b/bindings/nodejs/npm/linux-arm64-musl/package.json index 1f8f23c46763..a59282606aa4 100644 --- a/bindings/nodejs/npm/linux-arm64-musl/package.json +++ b/bindings/nodejs/npm/linux-arm64-musl/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-arm64-musl", - "version": "0.47.3", + "version": "0.47.4", "repository": "git@github.com/apache/opendal.git", "os": [ "linux" diff --git a/bindings/nodejs/npm/linux-x64-gnu/package.json b/bindings/nodejs/npm/linux-x64-gnu/package.json index 4e3421e72dca..9803124470a6 100644 --- a/bindings/nodejs/npm/linux-x64-gnu/package.json +++ b/bindings/nodejs/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-linux-x64-gnu", - "version": "0.47.3", + "version": "0.47.4", "repository": "git@github.com/apache/opendal.git", "os": [ "linux" diff --git a/bindings/nodejs/npm/win32-arm64-msvc/package.json b/bindings/nodejs/npm/win32-arm64-msvc/package.json index e60866d84f2e..7f5144ce836b 100644 --- a/bindings/nodejs/npm/win32-arm64-msvc/package.json +++ b/bindings/nodejs/npm/win32-arm64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-win32-arm64-msvc", - "version": "0.47.3", + "version": "0.47.4", "repository": "git@github.com/apache/opendal.git", "os": [ "win32" diff --git a/bindings/nodejs/npm/win32-x64-msvc/package.json b/bindings/nodejs/npm/win32-x64-msvc/package.json index 307ab7342c1a..6f14811dbcd7 100644 --- a/bindings/nodejs/npm/win32-x64-msvc/package.json +++ b/bindings/nodejs/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@opendal/lib-win32-x64-msvc", - "version": "0.47.3", + "version": "0.47.4", "repository": "git@github.com/apache/opendal.git", "os": [ "win32" diff --git a/bindings/nodejs/package.json b/bindings/nodejs/package.json index a1f8002edb0e..8fed33381570 100644 --- a/bindings/nodejs/package.json +++ b/bindings/nodejs/package.json @@ -1,7 +1,7 @@ { "name": "opendal", "author": "Apache OpenDAL ", - "version": "0.47.3", + "version": "0.47.4", "license": "Apache-2.0", "main": "index.js", "types": "index.d.ts", diff --git a/bindings/ocaml/DEPENDENCIES.rust.tsv b/bindings/ocaml/DEPENDENCIES.rust.tsv index ddede54d3e06..926131728579 100644 --- a/bindings/ocaml/DEPENDENCIES.rust.tsv +++ b/bindings/ocaml/DEPENDENCIES.rust.tsv @@ -18,7 +18,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -35,7 +35,7 @@ der@0.7.9 X X deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -71,7 +71,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X log@0.4.22 X X md-5@0.10.6 X X @@ -94,7 +94,7 @@ ocaml-interop@0.8.8 X ocaml-sys@0.22.3 X ocaml-sys@0.23.0 X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X opendal-ocaml@0.0.0 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X @@ -113,12 +113,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -132,9 +132,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -149,7 +149,7 @@ spki@0.7.3 X X static_assertions@1.1.0 X X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -159,7 +159,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -189,26 +189,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/php/Cargo.toml b/bindings/php/Cargo.toml index 6097b5879817..2f931bd7a2dc 100644 --- a/bindings/php/Cargo.toml +++ b/bindings/php/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-php" publish = false -version = "0.1.7" +version = "0.1.8" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/php/DEPENDENCIES.rust.tsv b/bindings/php/DEPENDENCIES.rust.tsv index 4b4ed88253ee..1d34f9bd5ccf 100644 --- a/bindings/php/DEPENDENCIES.rust.tsv +++ b/bindings/php/DEPENDENCIES.rust.tsv @@ -1,6 +1,7 @@ crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 ISC MIT MPL-2.0 OpenSSL Unicode-DFS-2016 Unlicense Zlib addr2line@0.22.0 X X adler@1.0.2 X X X +adler2@2.0.0 X X X aes@0.8.4 X X android-tzdata@0.1.1 X X android_system_properties@0.1.5 X X @@ -22,11 +23,11 @@ byteorder@1.5.0 X X bytes@1.7.1 X bzip2@0.4.4 X X bzip2-sys@0.1.11+1.0.8 X X -camino@1.1.7 X X +camino@1.1.9 X X cargo-platform@0.1.8 X X cargo_metadata@0.14.2 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cexpr@0.6.0 X X cfg-if@1.0.0 X X chrono@0.4.38 X X @@ -56,9 +57,9 @@ errno@0.3.9 X X error-chain@0.12.4 X X ext-php-rs@0.11.2 X X ext-php-rs-derive@0.10.1 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X -flate2@1.0.31 X X +flate2@1.0.33 X X fnv@1.0.7 X X foreign-types@0.3.2 X X foreign-types-shared@0.1.1 X X @@ -99,7 +100,7 @@ js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X lazycell@1.3.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libloading@0.8.5 X libm@0.2.8 X X linux-raw-sys@0.4.14 X X X @@ -110,6 +111,7 @@ memchr@2.7.4 X X mime@0.3.17 X X minimal-lexical@0.2.1 X X miniz_oxide@0.7.4 X X X +miniz_oxide@0.8.0 X X X mio@1.0.2 X native-tls@0.2.12 X X nom@7.1.3 X @@ -121,8 +123,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-php@0.1.7 X +opendal@0.49.2 X +opendal-php@0.1.8 X openssl@0.10.66 X openssl-macros@0.1.1 X X openssl-probe@0.1.5 X X @@ -147,12 +149,12 @@ pkcs8@0.10.2 X X pkg-config@0.3.30 X X powerfmt@0.2.0 X X ppv-lite86@0.2.20 X X -prettyplease@0.2.20 X X +prettyplease@0.2.22 X X proc-macro2@1.0.86 X X pulldown-cmark@0.9.6 X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X @@ -161,7 +163,7 @@ regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -182,9 +184,9 @@ scrypt@0.11.0 X X security-framework@2.11.1 X X security-framework-sys@2.11.1 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -200,7 +202,7 @@ spki@0.7.3 X X strsim@0.10.0 X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X tempfile@3.12.0 X X thiserror@1.0.63 X X @@ -211,7 +213,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -247,27 +249,20 @@ webpki-roots@0.26.3 X which@4.4.2 X winapi-util@0.1.9 X X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X windows-sys@0.59.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 828e8ee8e69a..d4244181f77b 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.45.8" +version = "0.45.9" [features] default = [ diff --git a/bindings/python/DEPENDENCIES.rust.tsv b/bindings/python/DEPENDENCIES.rust.tsv index e7dbaabe419d..96fef5c4cadb 100644 --- a/bindings/python/DEPENDENCIES.rust.tsv +++ b/bindings/python/DEPENDENCIES.rust.tsv @@ -23,7 +23,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cipher@0.4.4 X X @@ -42,7 +42,7 @@ derive_destructure2@0.1.3 X X digest@0.10.7 X X dlv-list@0.5.2 X X errno@0.3.9 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -81,7 +81,7 @@ itoa@1.0.11 X X js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X linux-raw-sys@0.4.14 X X X lock_api@0.4.12 X X @@ -101,8 +101,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-python@0.45.8 X +opendal@0.49.2 X +opendal-python@0.45.9 X openssh@0.10.5 X X openssh-sftp-client@0.14.6 X openssh-sftp-client-lowlevel@0.6.0 X @@ -135,13 +135,13 @@ pyo3-macros@0.21.2 X X pyo3-macros-backend@0.21.2 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X redox_syscall@0.5.3 X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -157,9 +157,9 @@ salsa20@0.10.2 X X scopeguard@1.2.0 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -178,7 +178,7 @@ ssh_format_error@0.1.0 X stable_deref_trait@1.2.0 X X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X target-lexicon@0.12.16 X tempfile@3.12.0 X X @@ -191,7 +191,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-io-utility@0.7.6 X tokio-macros@2.4.0 X tokio-pipe@0.2.12 X X @@ -228,27 +228,20 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X windows-sys@0.59.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/bindings/ruby/Cargo.toml b/bindings/ruby/Cargo.toml index f60ef6f998a2..7f1adf0de148 100644 --- a/bindings/ruby/Cargo.toml +++ b/bindings/ruby/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "opendal-ruby" publish = false -version = "0.1.7" +version = "0.1.8" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/bindings/ruby/DEPENDENCIES.rust.tsv b/bindings/ruby/DEPENDENCIES.rust.tsv index eb5b2c6fdf17..01f96745c01b 100644 --- a/bindings/ruby/DEPENDENCIES.rust.tsv +++ b/bindings/ruby/DEPENDENCIES.rust.tsv @@ -21,7 +21,7 @@ bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X cbc@0.1.2 X X -cc@1.1.11 X X +cc@1.1.14 X X cexpr@0.6.0 X X cfg-if@1.0.0 X X chrono@0.4.38 X X @@ -40,7 +40,7 @@ deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X either@1.13.0 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -79,7 +79,7 @@ js-sys@0.3.70 X X jsonwebtoken@9.3.0 X lazy_static@1.5.0 X X lazycell@1.3.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libloading@0.8.5 X libm@0.2.8 X X log@0.4.22 X X @@ -100,8 +100,8 @@ num-iter@0.1.45 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X -opendal-ruby@0.1.7 X +opendal@0.49.2 X +opendal-ruby@0.1.8 X ordered-multimap@0.7.3 X pbkdf2@0.12.2 X X pem@3.0.4 X @@ -119,18 +119,18 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X -rb-sys@0.9.101 X X -rb-sys-build@0.9.101 X X +rb-sys@0.9.102 X X +rb-sys-build@0.9.102 X X rb-sys-env@0.1.2 X X regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rsa@0.9.6 X X rust-ini@0.21.1 X @@ -145,9 +145,9 @@ ryu@1.0.18 X X salsa20@0.10.2 X X scrypt@0.11.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -162,7 +162,7 @@ spin@0.9.8 X spki@0.7.3 X X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X @@ -172,7 +172,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -202,26 +202,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/core/Cargo.lock b/core/Cargo.lock index 76fc1ef72c9f..906f6a1a6e07 100644 --- a/core/Cargo.lock +++ b/core/Cargo.lock @@ -26,6 +26,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "adler2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" + [[package]] name = "aes" version = "0.8.4" @@ -205,9 +211,9 @@ dependencies = [ [[package]] name = "arrayvec" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "ascii-canvas" @@ -242,7 +248,7 @@ checksum = "affbba0d438add06462a0371997575927bc05052f7ec486e7a4ca405c956c3d7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -276,7 +282,7 @@ checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-lite 2.3.0", "slab", ] @@ -374,7 +380,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -422,7 +428,7 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -452,7 +458,7 @@ checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -508,7 +514,7 @@ checksum = "62f7df18977a1ee03650ee4b31b4aefed6d56bac188760b6e37610400fe8d4bb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -570,7 +576,7 @@ dependencies = [ "aws-smithy-types", "aws-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "hex", "http 0.2.12", "ring 0.17.8", @@ -635,7 +641,7 @@ dependencies = [ "aws-smithy-types", "aws-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "http 0.2.12", "http-body 0.4.6", "once_cell", @@ -647,9 +653,9 @@ dependencies = [ [[package]] name = "aws-sdk-s3" -version = "1.43.0" +version = "1.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ccda7e730ace3cb8bbd4071bc650c6d294364891f9564bd4e43adfc8dea3177" +checksum = "4abf69a87be33b6f125a93d5046b5f7395c26d1f449bf8d3927f5577463b6de0" dependencies = [ "ahash 0.8.11", "aws-credential-types", @@ -666,7 +672,7 @@ dependencies = [ "aws-smithy-xml", "aws-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "hex", "hmac", "http 0.2.12", @@ -682,9 +688,9 @@ dependencies = [ [[package]] name = "aws-sdk-sso" -version = "1.37.0" +version = "1.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1074e818fbe4f9169242d78448b15be8916a79daa38ea1231f2e2e10d993fcd2" +checksum = "11822090cf501c316c6f75711d77b96fba30658e3867a7762e5e2f5d32d31e81" dependencies = [ "aws-credential-types", "aws-runtime", @@ -704,9 +710,9 @@ dependencies = [ [[package]] name = "aws-sdk-ssooidc" -version = "1.38.0" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29755c51e33fa3f678598f64324a169cf4b7d3c4865d2709d4308f53366a92a4" +checksum = "78a2a06ff89176123945d1bbe865603c4d7101bea216a550bb4d2e4e9ba74d74" dependencies = [ "aws-credential-types", "aws-runtime", @@ -726,9 +732,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.37.0" +version = "1.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e52dc3fd7dfa6c01a69cf3903e00aa467261639138a05b06cd92314d2c8fb07" +checksum = "a20a91795850826a6f456f4a48eff1dfa59a0e69bdbf5b8c50518fd372106574" dependencies = [ "aws-credential-types", "aws-runtime", @@ -870,7 +876,7 @@ dependencies = [ "aws-smithy-runtime-api", "aws-smithy-types", "bytes", - "fastrand 2.1.0", + "fastrand 2.1.1", "h2 0.3.26", "http 0.2.12", "http-body 0.4.6", @@ -905,9 +911,9 @@ dependencies = [ [[package]] name = "aws-smithy-types" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f37570a4e8ce26bd3a69c7c011f13eee6b2a1135c4518cb57030f4257077ca36" +checksum = "6cee7cadb433c781d3299b916fbf620fea813bf38f49db282fb6858141a05cc8" dependencies = [ "base64-simd", "bytes", @@ -1050,7 +1056,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d67782c3f868daa71d3533538e98a8e13713231969def7536e8039606fc46bf0" dependencies = [ - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-core", "pin-project", "tokio", @@ -1066,7 +1072,7 @@ dependencies = [ "cc", "cfg-if", "libc", - "miniz_oxide", + "miniz_oxide 0.7.4", "object", "rustc-demangle", ] @@ -1188,7 +1194,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -1210,10 +1216,28 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.74", + "syn 2.0.76", "which", ] +[[package]] +name = "bindgen" +version = "0.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f" +dependencies = [ + "bitflags 2.6.0", + "cexpr", + "clang-sys", + "itertools 0.13.0", + "proc-macro2", + "quote", + "regex", + "rustc-hash 1.1.0", + "shlex", + "syn 2.0.76", +] + [[package]] name = "bit-set" version = "0.5.3" @@ -1323,7 +1347,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", "syn_derive", ] @@ -1393,9 +1417,9 @@ checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce" [[package]] name = "bytemuck" -version = "1.16.3" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" +checksum = "6fd4c6dcc3b0aea2f5c0b4b82c2b15fe39ddbc76041a310848f4706edf76bb31" [[package]] name = "byteorder" @@ -1459,9 +1483,9 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.7" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" +checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" dependencies = [ "serde", ] @@ -1505,9 +1529,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.11" +version = "1.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189" +checksum = "50d2eb3cd3d1bf4529e31c215ee6f93ec5a3d536d9f578f93d9d33ee19562932" dependencies = [ "jobserver", "libc", @@ -1657,9 +1681,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.15" +version = "4.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc" +checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" dependencies = [ "clap_builder", "clap_derive", @@ -1686,7 +1710,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -1697,9 +1721,9 @@ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" [[package]] name = "cmake" -version = "0.1.50" +version = "0.1.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" +checksum = "fb1e43aa7fd152b1f968787f7dbcdeb306d1867ff373c69955211876c053f91a" dependencies = [ "cc", ] @@ -2041,9 +2065,9 @@ dependencies = [ [[package]] name = "critical-section" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216" +checksum = "f64009896348fc5af4222e9cf7d7d82a95a256c634ebcf61c53e4ea461422242" [[package]] name = "crossbeam" @@ -2203,7 +2227,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2225,7 +2249,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ "darling_core 0.20.10", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2322,7 +2346,7 @@ checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2343,7 +2367,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2353,7 +2377,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" dependencies = [ "derive_builder_core", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2364,7 +2388,7 @@ checksum = "64b697ac90ff296f0fc031ee5a61c7ac31fb9fff50e3fb32873b09223613fc0c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2377,7 +2401,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version 0.4.0", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2397,13 +2421,9 @@ checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" [[package]] name = "diatomic-waker" -version = "0.2.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92a510eb4dc7fa435297888c00e0f999aa2ee3e920a357221c35ab615a80bbcf" -dependencies = [ - "loom", - "waker-fn", -] +checksum = "af873b6853650fb206431c52fa7bbf6917146b70a8a9979d6d141f5d5394086b" [[package]] name = "diff" @@ -2510,7 +2530,7 @@ dependencies = [ [[package]] name = "edge_test_aws_s3_assume_role_with_web_identity" -version = "0.49.0" +version = "0.49.1" dependencies = [ "opendal", "tokio", @@ -2519,7 +2539,7 @@ dependencies = [ [[package]] name = "edge_test_file_write_on_full_disk" -version = "0.49.0" +version = "0.49.1" dependencies = [ "futures", "opendal", @@ -2529,7 +2549,7 @@ dependencies = [ [[package]] name = "edge_test_s3_read_on_wasm" -version = "0.49.0" +version = "0.49.1" dependencies = [ "opendal", "wasm-bindgen", @@ -2704,9 +2724,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" [[package]] name = "fastrace" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01bdb5c59912525f75feba878196c9aa5c3e41bfb3f3566e103e39bd39651a33" +checksum = "25767929385a5128ff5a58c77d5fef43779bb580656801f72d4d32f7a97fea28" dependencies = [ "fastrace-macro", "minstant", @@ -2719,14 +2739,14 @@ dependencies = [ [[package]] name = "fastrace-macro" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809c42c4001c2a46b4b755deb1500f369b1598246624a1ea7aaf34e677886390" +checksum = "d11870c0168b3d10fc7a7f0b6f9319fd7244d4caacc669ae86b3ecc5b6ca1b8c" dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2740,9 +2760,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "ff" @@ -2768,12 +2788,12 @@ checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec" [[package]] name = "flate2" -version = "1.0.31" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" +checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253" dependencies = [ "crc32fast", - "miniz_oxide", + "miniz_oxide 0.8.0", ] [[package]] @@ -2871,7 +2891,7 @@ checksum = "f8db6653cbc621a3810d95d55bd342be3e71181d6df21a4eb29ef986202d3f9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", "try_map", ] @@ -2910,7 +2930,7 @@ checksum = "b0fa992f1656e1707946bbba340ad244f0814009ef8c0118eb7b658395f19a2e" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2922,7 +2942,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -2934,7 +2954,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -3060,7 +3080,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" dependencies = [ - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-core", "futures-io", "parking", @@ -3075,7 +3095,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -3141,7 +3161,7 @@ dependencies = [ "g2poly", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -3340,9 +3360,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" dependencies = [ "atomic-waker", "bytes", @@ -3658,7 +3678,7 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.5", + "h2 0.4.6", "http 1.1.0", "http-body 1.0.1", "httparse", @@ -3841,7 +3861,7 @@ dependencies = [ "proc-macro2", "quote", "strum", - "syn 2.0.74", + "syn 2.0.76", "thiserror", ] @@ -3894,7 +3914,7 @@ dependencies = [ "socket2 0.5.7", "widestring", "windows-sys 0.48.0", - "winreg 0.50.0", + "winreg", ] [[package]] @@ -4056,9 +4076,9 @@ dependencies = [ [[package]] name = "lazy-regex" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "576c8060ecfdf2e56995cf3274b4f2d71fa5e4fa3607c1c0b63c10180ee58741" +checksum = "8d8e41c97e6bc7ecb552016274b99fbb5d035e8de288c582d9b933af6677bfda" dependencies = [ "lazy-regex-proc_macros", "once_cell", @@ -4067,14 +4087,14 @@ dependencies = [ [[package]] name = "lazy-regex-proc_macros" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9efb9e65d4503df81c615dc33ff07042a9408ac7f26b45abee25566f7fbfd12c" +checksum = "76e1d8b05d672c53cb9c7b920bbba8783845ae4f0b076e02a3db1d02c81b4163" dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -4103,9 +4123,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.155" +version = "0.2.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libfuzzer-sys" @@ -4183,9 +4203,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.19" +version = "1.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc53a7799a7496ebc9fd29f31f7df80e83c9bda5299768af5f9e59eeea74647" +checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" dependencies = [ "cc", "pkg-config", @@ -4351,7 +4371,7 @@ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -4410,6 +4430,15 @@ dependencies = [ "adler", ] +[[package]] +name = "miniz_oxide" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +dependencies = [ + "adler2", +] + [[package]] name = "minstant" version = "0.1.7" @@ -4530,7 +4559,7 @@ checksum = "934305ae9c66ef6a3aa728c66dec8fa2424de4dfcd043c7acaffacae2bf99442" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -4564,7 +4593,7 @@ checksum = "176a5f5e69613d9e88337cf2a65e11135332b4efbcc628404a7c555e4452084c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -4586,7 +4615,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", "termcolor", "thiserror", ] @@ -4633,7 +4662,7 @@ checksum = "478b0ff3f7d67b79da2b96f56f334431aef65e15ba4b29dd74a4236e29582bdc" dependencies = [ "base64 0.21.7", "bigdecimal", - "bindgen 0.69.4", + "bindgen 0.70.1", "bitflags 2.6.0", "bitvec", "btoi", @@ -4887,7 +4916,7 @@ checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" [[package]] name = "opendal" -version = "0.49.1" +version = "0.49.2" dependencies = [ "anyhow", "async-backtrace", @@ -4947,7 +4976,7 @@ dependencies = [ "redb", "redis", "reqsign", - "reqwest 0.12.5", + "reqwest 0.12.7", "rocksdb", "rusqlite", "serde", @@ -4995,7 +5024,7 @@ dependencies = [ [[package]] name = "opendal-examples-basic" -version = "0.49.0" +version = "0.49.1" dependencies = [ "futures", "opendal", @@ -5004,7 +5033,7 @@ dependencies = [ [[package]] name = "opendal-examples-concurrent-upload" -version = "0.49.0" +version = "0.49.1" dependencies = [ "futures", "opendal", @@ -5013,7 +5042,7 @@ dependencies = [ [[package]] name = "opendal-examples-multipart-upload" -version = "0.49.0" +version = "0.49.1" dependencies = [ "futures", "opendal", @@ -5152,7 +5181,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -5455,7 +5484,7 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -5477,7 +5506,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.0", + "fastrand 2.1.1", "futures-io", ] @@ -5662,12 +5691,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.20" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" dependencies = [ "proc-macro2", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -5778,7 +5807,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -5818,7 +5847,7 @@ dependencies = [ "prost 0.13.1", "prost-types 0.13.1", "regex", - "syn 2.0.74", + "syn 2.0.76", "tempfile", ] @@ -5832,7 +5861,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -5845,7 +5874,7 @@ dependencies = [ "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -6021,9 +6050,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -6158,9 +6187,9 @@ dependencies = [ [[package]] name = "redb" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6dd20d3cdeb9c7d2366a0b16b93b35b75aec15309fbeb7ce477138c9f68c8c0" +checksum = "58323dc32ea52a8ae105ff94bc0460c5d906307533ba3401aa63db3cbe491fe5" dependencies = [ "libc", ] @@ -6186,7 +6215,7 @@ dependencies = [ "pin-project-lite", "rand 0.8.5", "rustls 0.23.12", - "rustls-native-certs 0.7.1", + "rustls-native-certs 0.7.2", "rustls-pemfile 2.1.3", "rustls-pki-types", "ryu", @@ -6229,9 +6258,9 @@ dependencies = [ [[package]] name = "redox_users" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom 0.2.15", "libredox", @@ -6255,7 +6284,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -6350,7 +6379,7 @@ dependencies = [ "percent-encoding", "quick-xml 0.35.0", "rand 0.8.5", - "reqwest 0.12.5", + "reqwest 0.12.7", "rsa", "rust-ini", "serde", @@ -6400,14 +6429,14 @@ dependencies = [ "wasm-streams", "web-sys", "webpki-roots 0.25.4", - "winreg 0.50.0", + "winreg", ] [[package]] name = "reqwest" -version = "0.12.5" +version = "0.12.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" +checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" dependencies = [ "base64 0.22.1", "bytes", @@ -6444,7 +6473,7 @@ dependencies = [ "wasm-streams", "web-sys", "webpki-roots 0.26.3", - "winreg 0.52.0", + "windows-registry", ] [[package]] @@ -6485,7 +6514,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -6531,9 +6560,9 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.44" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" +checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" dependencies = [ "bitvec", "bytecheck", @@ -6549,9 +6578,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.44" +version = "0.7.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" +checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" dependencies = [ "proc-macro2", "quote", @@ -6669,9 +6698,9 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.35.0" +version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" +checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" dependencies = [ "arrayvec", "borsh", @@ -6807,9 +6836,9 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba" +checksum = "04182dffc9091a404e0fc069ea5cd60e5b866c3adf881eff99a32d048242dffa" dependencies = [ "openssl-probe", "rustls-pemfile 2.1.3", @@ -7034,9 +7063,9 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] @@ -7052,13 +7081,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.207" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -7074,9 +7103,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.125" +version = "1.0.127" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed" +checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" dependencies = [ "indexmap 2.4.0", "itoa", @@ -7146,7 +7175,7 @@ dependencies = [ "darling 0.20.10", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -7472,15 +7501,15 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stacker" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" +checksum = "95a5daa25ea337c85ed954c0496e3bdd2c7308cc3b24cf7b50d04876654c579f" dependencies = [ "cc", "cfg-if", "libc", "psm", - "winapi", + "windows-sys 0.36.1", ] [[package]] @@ -7556,7 +7585,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -7743,9 +7772,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.74" +version = "2.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" +checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" dependencies = [ "proc-macro2", "quote", @@ -7761,7 +7790,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -7775,6 +7804,9 @@ name = "sync_wrapper" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +dependencies = [ + "futures-core", +] [[package]] name = "system-configuration" @@ -7822,7 +7854,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if", - "fastrand 2.1.0", + "fastrand 2.1.1", "once_cell", "rustix 0.38.34", "windows-sys 0.59.0", @@ -7871,7 +7903,7 @@ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -7987,9 +8019,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.39.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" dependencies = [ "backtrace", "bytes", @@ -8031,7 +8063,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -8210,7 +8242,7 @@ dependencies = [ "axum 0.7.5", "base64 0.22.1", "bytes", - "h2 0.4.5", + "h2 0.4.6", "http 1.1.0", "http-body 1.0.1", "http-body-util", @@ -8241,7 +8273,7 @@ dependencies = [ "proc-macro2", "prost-build", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -8295,7 +8327,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -8514,9 +8546,9 @@ dependencies = [ [[package]] name = "unicode-properties" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" +checksum = "52ea75f83c0137a9b98608359a5f1af8144876eb67bcb1ce837368e906a9f524" [[package]] name = "unicode-script" @@ -8542,9 +8574,9 @@ checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" [[package]] name = "unicode-xid" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" +checksum = "229730647fbc343e3a80e463c1db7f78f3855d3f3739bee0dda773c9a037c90a" [[package]] name = "unsigned-varint" @@ -8734,7 +8766,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", "wasm-bindgen-shared", ] @@ -8768,7 +8800,7 @@ checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -8802,7 +8834,7 @@ checksum = "4b8220be1fa9e4c889b30fd207d4906657e7e90b12e0e6b0c8b8d8709f5de021" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -9000,7 +9032,7 @@ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -9011,7 +9043,18 @@ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", +] + +[[package]] +name = "windows-registry" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" +dependencies = [ + "windows-result", + "windows-strings", + "windows-targets 0.52.6", ] [[package]] @@ -9033,6 +9076,19 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +dependencies = [ + "windows_aarch64_msvc 0.36.1", + "windows_i686_gnu 0.36.1", + "windows_i686_msvc 0.36.1", + "windows_x86_64_gnu 0.36.1", + "windows_x86_64_msvc 0.36.1", +] + [[package]] name = "windows-sys" version = "0.48.0" @@ -9103,6 +9159,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" + [[package]] name = "windows_aarch64_msvc" version = "0.48.5" @@ -9115,6 +9177,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_i686_gnu" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" + [[package]] name = "windows_i686_gnu" version = "0.48.5" @@ -9133,6 +9201,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +[[package]] +name = "windows_i686_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" + [[package]] name = "windows_i686_msvc" version = "0.48.5" @@ -9145,6 +9219,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_x86_64_gnu" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" + [[package]] name = "windows_x86_64_gnu" version = "0.48.5" @@ -9169,6 +9249,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" + [[package]] name = "windows_x86_64_msvc" version = "0.48.5" @@ -9200,16 +9286,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "winreg" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - [[package]] name = "ws_stream_wasm" version = "0.7.4" @@ -9280,7 +9356,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] @@ -9300,7 +9376,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.74", + "syn 2.0.76", ] [[package]] diff --git a/core/Cargo.toml b/core/Cargo.toml index d4926a9587b6..c84e255c9396 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -28,7 +28,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.49.1" +version = "0.49.2" [package.metadata.docs.rs] all-features = true @@ -41,7 +41,7 @@ members = [".", "examples/*", "fuzz", "edge/*", "benches/vs_*"] edition = "2021" license = "Apache-2.0" rust-version = "1.75" -version = "0.49.0" +version = "0.49.1" [features] default = ["reqwest/rustls-tls", "executors-tokio", "services-memory"] diff --git a/core/DEPENDENCIES.rust.tsv b/core/DEPENDENCIES.rust.tsv index b3a8c2b76c70..a43bb1e5e4d2 100644 --- a/core/DEPENDENCIES.rust.tsv +++ b/core/DEPENDENCIES.rust.tsv @@ -13,7 +13,7 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X const-oid@0.9.6 X X @@ -27,7 +27,7 @@ crypto-common@0.1.6 X X digest@0.10.7 X X dlv-list@0.5.2 X X dotenvy@0.15.7 X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -60,7 +60,7 @@ idna@0.5.0 X X ipnet@2.9.0 X X itoa@1.0.11 X X js-sys@0.3.70 X X -libc@0.2.155 X X +libc@0.2.158 X X log@0.4.22 X X md-5@0.10.6 X X memchr@2.7.4 X X @@ -70,7 +70,7 @@ mio@1.0.2 X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X ordered-multimap@0.7.3 X percent-encoding@2.3.1 X X pin-project@1.1.5 X X @@ -81,12 +81,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rust-ini@0.21.1 X rustc-demangle@0.1.24 X X @@ -97,9 +97,9 @@ rustls-pki-types@1.8.0 X X rustls-webpki@0.102.6 X ryu@1.0.18 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -109,12 +109,12 @@ smallvec@1.13.2 X X socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -146,26 +146,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/integrations/cloudfilter/DEPENDENCIES.rust.tsv b/integrations/cloudfilter/DEPENDENCIES.rust.tsv index 453c9a2e4d3d..aeac051f96ea 100644 --- a/integrations/cloudfilter/DEPENDENCIES.rust.tsv +++ b/integrations/cloudfilter/DEPENDENCIES.rust.tsv @@ -14,7 +14,7 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X cloud-filter@0.0.5 X @@ -31,7 +31,7 @@ deranged@0.3.11 X X digest@0.10.7 X X dlv-list@0.5.2 X X dotenvy@0.15.7 X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -65,7 +65,7 @@ idna@0.5.0 X X ipnet@2.9.0 X X itoa@1.0.11 X X js-sys@0.3.70 X X -libc@0.2.155 X X +libc@0.2.158 X X log@0.4.22 X X md-5@0.10.6 X X memchr@2.7.4 X X @@ -78,7 +78,7 @@ num-conv@0.1.0 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X ordered-multimap@0.7.3 X percent-encoding@2.3.1 X X pin-project@1.1.5 X X @@ -90,12 +90,12 @@ ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.35.0 X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rust-ini@0.21.1 X rustc-demangle@0.1.24 X X @@ -106,9 +106,9 @@ rustls-pki-types@1.8.0 X X rustls-webpki@0.102.6 X ryu@1.0.18 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -119,7 +119,7 @@ smallvec@1.13.2 X X socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X time@0.3.36 X X time-core@0.1.2 X X @@ -127,7 +127,7 @@ time-macros@0.2.18 X X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -163,28 +163,19 @@ windows-core@0.52.0 X X windows-core@0.58.0 X X windows-implement@0.58.0 X X windows-interface@0.58.0 X X +windows-registry@0.2.0 X X windows-result@0.2.0 X X windows-strings@0.1.0 X X -windows-sys@0.48.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/integrations/dav-server/Cargo.toml b/integrations/dav-server/Cargo.toml index 52a6d5983034..753bb87e5a28 100644 --- a/integrations/dav-server/Cargo.toml +++ b/integrations/dav-server/Cargo.toml @@ -18,7 +18,7 @@ [package] description = "Use OpenDAL as a backend to access data in various service with WebDAV protocol" name = "dav-server-opendalfs" -version = "0.0.8" +version = "0.1.0" authors = ["Apache OpenDAL "] edition = "2021" diff --git a/integrations/dav-server/DEPENDENCIES.rust.tsv b/integrations/dav-server/DEPENDENCIES.rust.tsv index 6214915d20f7..7d544169365e 100644 --- a/integrations/dav-server/DEPENDENCIES.rust.tsv +++ b/integrations/dav-server/DEPENDENCIES.rust.tsv @@ -17,17 +17,17 @@ bitflags@2.6.0 X X block-buffer@0.10.4 X X bumpalo@3.16.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X core-foundation-sys@0.8.7 X X cpufeatures@0.2.13 X X crypto-common@0.1.6 X X dav-server@0.7.0 X -dav-server-opendalfs@0.0.8 X +dav-server-opendalfs@0.1.0 X deranged@0.3.11 X X digest@0.10.7 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -63,7 +63,7 @@ ipnet@2.9.0 X X itoa@1.0.11 X X js-sys@0.3.70 X X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X lock_api@0.4.12 X X log@0.4.22 X X lru@0.12.4 X @@ -77,7 +77,7 @@ num-conv@0.1.0 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X parking_lot@0.12.3 X X parking_lot_core@0.9.10 X X percent-encoding@2.3.1 X X @@ -88,12 +88,12 @@ pin-utils@0.1.0 X X powerfmt@0.2.0 X X proc-macro2@1.0.86 X X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X redox_syscall@0.5.3 X regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustls@0.23.12 X X X @@ -102,9 +102,9 @@ rustls-pki-types@1.8.0 X X rustls-webpki@0.102.6 X ryu@1.0.18 X X scopeguard@1.2.0 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X shlex@1.3.0 X X @@ -113,14 +113,14 @@ smallvec@1.13.2 X X socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X time@0.3.36 X X time-core@0.1.2 X X time-macros@0.2.18 X X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -151,26 +151,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X xml-rs@0.8.21 X xmltree@0.10.3 X zerocopy@0.7.35 X X X diff --git a/integrations/fuse3/Cargo.toml b/integrations/fuse3/Cargo.toml index 4f494ee59545..20b8760241cc 100644 --- a/integrations/fuse3/Cargo.toml +++ b/integrations/fuse3/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.0.5" +version = "0.0.6" [dependencies] bytes = "1.6.0" diff --git a/integrations/fuse3/DEPENDENCIES.rust.tsv b/integrations/fuse3/DEPENDENCIES.rust.tsv index 0370116bff36..f434d274c476 100644 --- a/integrations/fuse3/DEPENDENCIES.rust.tsv +++ b/integrations/fuse3/DEPENDENCIES.rust.tsv @@ -15,7 +15,7 @@ bitflags@2.6.0 X X block-buffer@0.10.4 X X bumpalo@3.16.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X cfg_aliases@0.1.1 X chrono@0.4.38 X X @@ -28,12 +28,12 @@ digest@0.10.7 X X either@1.13.0 X X errno@0.3.9 X X event-listener@4.0.3 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X fuse3@0.7.2 X -fuse3_opendal@0.0.5 X +fuse3_opendal@0.0.6 X futures@0.3.30 X X futures-channel@0.3.30 X X futures-core@0.3.30 X X @@ -61,7 +61,7 @@ ipnet@2.9.0 X X itoa@1.0.11 X X js-sys@0.3.70 X X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X linux-raw-sys@0.4.14 X X X log@0.4.22 X X md-5@0.10.6 X X @@ -74,7 +74,7 @@ nix@0.28.0 X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X parking@2.2.0 X X percent-encoding@2.3.1 X X pin-project@1.1.5 X X @@ -83,8 +83,8 @@ pin-project-lite@0.2.14 X X pin-utils@0.1.0 X X proc-macro2@1.0.86 X X quick-xml@0.36.1 X -quote@1.0.36 X X -reqwest@0.12.5 X X +quote@1.0.37 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustix@0.38.34 X X X @@ -93,9 +93,9 @@ rustls-pemfile@2.1.3 X X X rustls-pki-types@1.8.0 X X rustls-webpki@0.102.6 X ryu@1.0.18 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sharded-slab@0.1.7 X shlex@1.3.0 X X @@ -105,11 +105,11 @@ smallvec@1.13.2 X X socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -140,27 +140,20 @@ wasm-bindgen-shared@0.2.93 X X wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X -which@6.0.2 X +which@6.0.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X winsafe@0.0.19 X zeroize@1.8.1 X X diff --git a/integrations/object_store/Cargo.toml b/integrations/object_store/Cargo.toml index e0e5bab5c0f6..13f67ee269f1 100644 --- a/integrations/object_store/Cargo.toml +++ b/integrations/object_store/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.46.1" +version = "0.47.0" [features] send_wrapper = ["dep:send_wrapper"] @@ -36,7 +36,7 @@ bytes = "1" flagset = "0.4" futures = "0.3" futures-util = "0.3" -object_store = "0.10" +object_store = "0.11" opendal = { version = "0.49.0", path = "../../core" } pin-project = "1.1" send_wrapper = { version = "0.6", features = ["futures"], optional = true } diff --git a/integrations/object_store/DEPENDENCIES.rust.tsv b/integrations/object_store/DEPENDENCIES.rust.tsv index 96c3efbe3d2f..1bd5198d3475 100644 --- a/integrations/object_store/DEPENDENCIES.rust.tsv +++ b/integrations/object_store/DEPENDENCIES.rust.tsv @@ -14,7 +14,7 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X const-oid@0.9.6 X X @@ -23,9 +23,8 @@ cpufeatures@0.2.13 X X crc32c@0.6.8 X X crypto-common@0.1.6 X X digest@0.10.7 X X -doc-comment@0.3.3 X either@1.13.0 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -41,7 +40,7 @@ futures-util@0.3.30 X X generic-array@0.14.7 X getrandom@0.2.15 X X gimli@0.29.0 X X -heck@0.4.1 X X +heck@0.5.0 X X hermit-abi@0.3.9 X X hex@0.4.3 X X hmac@0.12.1 X X @@ -61,7 +60,7 @@ ipnet@2.9.0 X X itertools@0.13.0 X X itoa@1.0.11 X X js-sys@0.3.70 X X -libc@0.2.155 X X +libc@0.2.158 X X lock_api@0.4.12 X X log@0.4.22 X X md-5@0.10.6 X X @@ -71,10 +70,10 @@ miniz_oxide@0.7.4 X X X mio@1.0.2 X num-traits@0.2.19 X X object@0.36.3 X X -object_store@0.10.2 X X -object_store_opendal@0.46.1 X +object_store@0.11.0 X X +object_store_opendal@0.47.0 X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X parking_lot@0.12.3 X X parking_lot_core@0.9.10 X X percent-encoding@2.3.1 X X @@ -85,13 +84,13 @@ pin-utils@0.1.0 X X ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X redox_syscall@0.5.3 X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustc_version@0.4.0 X X @@ -103,26 +102,25 @@ ryu@1.0.18 X X same-file@1.0.6 X X scopeguard@1.2.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X shlex@1.3.0 X X slab@0.4.9 X smallvec@1.13.2 X X -snafu@0.7.5 X X -snafu-derive@0.7.5 X X +snafu@0.8.4 X X +snafu-derive@0.8.4 X X socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X -syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -155,27 +153,20 @@ web-sys@0.3.70 X X webpki-roots@0.26.3 X winapi-util@0.1.9 X X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X windows-sys@0.59.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/integrations/object_store/README.md b/integrations/object_store/README.md index 80d562358419..1250a0a4aabc 100644 --- a/integrations/object_store/README.md +++ b/integrations/object_store/README.md @@ -14,7 +14,7 @@ This crate can help you to access 30 more storage services with the same object_store API. - + ## Useful Links - Documentation: [release](https://docs.rs/object_store_opendal/) | [dev](https://opendal.apache.org/docs/object-store-opendal/object_store_opendal/) @@ -25,9 +25,9 @@ Add the following dependencies to your `Cargo.toml` with correct version: ```toml [dependencies] -object_store = "0.10.0" -object_store_opendal = "0.44.0" -opendal = { version = "0.47.0", features = ["services-s3"] } +object_store = "0.11.0" +object_store_opendal = "0.47.0" +opendal = { version = "0.49.0", features = ["services-s3"] } ``` Build `OpendalStore` via `opendal::Operator`: diff --git a/integrations/parquet/Cargo.toml b/integrations/parquet/Cargo.toml index 69f02458a791..a165b8a24149 100644 --- a/integrations/parquet/Cargo.toml +++ b/integrations/parquet/Cargo.toml @@ -25,7 +25,7 @@ homepage = "https://opendal.apache.org/" license = "Apache-2.0" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.1.1" +version = "0.1.2" [dependencies] async-trait = "0.1" diff --git a/integrations/parquet/DEPENDENCIES.rust.tsv b/integrations/parquet/DEPENDENCIES.rust.tsv index 22e615ebac49..ec1e47663328 100644 --- a/integrations/parquet/DEPENDENCIES.rust.tsv +++ b/integrations/parquet/DEPENDENCIES.rust.tsv @@ -23,7 +23,7 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X const-oid@0.9.6 X X @@ -35,7 +35,7 @@ crc32c@0.6.8 X X crunchy@0.2.2 X crypto-common@0.1.6 X X digest@0.10.7 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X flatbuffers@24.3.25 X fnv@1.0.7 X X @@ -78,7 +78,7 @@ lexical-parse-integer@0.8.6 X X lexical-util@0.8.5 X X lexical-write-float@0.8.5 X X lexical-write-integer@0.8.5 X X -libc@0.2.155 X X +libc@0.2.158 X X libm@0.2.8 X X log@0.4.22 X X md-5@0.10.6 X X @@ -95,10 +95,10 @@ num-rational@0.4.2 X X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X ordered-float@2.10.1 X parquet@52.2.0 X -parquet_opendal@0.1.1 X +parquet_opendal@0.1.2 X paste@1.0.15 X X percent-encoding@2.3.1 X X pin-project@1.1.5 X X @@ -108,12 +108,12 @@ pin-utils@0.1.0 X X ppv-lite86@0.2.20 X X proc-macro2@1.0.86 X X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustc_version@0.4.0 X X @@ -124,9 +124,9 @@ rustls-webpki@0.102.6 X ryu@1.0.18 X X semver@1.0.23 X X seq-macro@0.3.5 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -137,13 +137,13 @@ socket2@0.5.7 X X spin@0.9.8 X static_assertions@1.1.0 X X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thrift@0.17.0 X tiny-keccak@2.0.2 X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -174,26 +174,19 @@ wasm-streams@0.4.0 X X web-sys@0.3.70 X X webpki-roots@0.26.3 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X zeroize@1.8.1 X X diff --git a/integrations/unftp-sbe/Cargo.toml b/integrations/unftp-sbe/Cargo.toml index 981fa3537e2c..d2c01afe638b 100644 --- a/integrations/unftp-sbe/Cargo.toml +++ b/integrations/unftp-sbe/Cargo.toml @@ -24,7 +24,7 @@ license = "Apache-2.0" name = "unftp-sbe-opendal" repository = "https://github.com/apache/opendal" rust-version = "1.75" -version = "0.0.5" +version = "0.0.6" [dependencies] async-trait = "0.1.80" diff --git a/integrations/unftp-sbe/DEPENDENCIES.rust.tsv b/integrations/unftp-sbe/DEPENDENCIES.rust.tsv index aac3afff17fb..a4226ab5e059 100644 --- a/integrations/unftp-sbe/DEPENDENCIES.rust.tsv +++ b/integrations/unftp-sbe/DEPENDENCIES.rust.tsv @@ -21,13 +21,13 @@ block-buffer@0.10.4 X X bumpalo@3.16.0 X X byteorder@1.5.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cexpr@0.6.0 X X cfg-if@1.0.0 X X cfg_aliases@0.2.1 X chrono@0.4.38 X X clang-sys@1.8.1 X -cmake@0.1.50 X X +cmake@0.1.51 X X const-oid@0.9.6 X X convert_case@0.4.0 X core-foundation-sys@0.8.7 X X @@ -48,7 +48,7 @@ doc-comment@0.3.3 X dunce@1.0.5 X X X either@1.13.0 X X errno@0.3.9 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -87,7 +87,7 @@ jobserver@0.1.32 X X js-sys@0.3.70 X X lazy_static@1.5.0 X X lazycell@1.3.0 X X -libc@0.2.155 X X +libc@0.2.158 X X libloading@0.8.5 X libunftp@0.20.1 X linux-raw-sys@0.4.14 X X X @@ -110,7 +110,7 @@ num-traits@0.2.19 X X object@0.36.3 X X oid-registry@0.7.0 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X parking_lot@0.12.3 X X parking_lot_core@0.9.10 X X paste@1.0.15 X X @@ -121,12 +121,12 @@ pin-project-lite@0.2.14 X X pin-utils@0.1.0 X X powerfmt@0.2.0 X X ppv-lite86@0.2.20 X X -prettyplease@0.2.20 X X +prettyplease@0.2.22 X X proc-macro2@1.0.86 X X prometheus@0.13.4 X proxy-protocol@0.5.0 X X quick-xml@0.36.1 X -quote@1.0.36 X X +quote@1.0.37 X X rand@0.8.5 X X rand_chacha@0.3.1 X X rand_core@0.6.4 X X @@ -135,7 +135,7 @@ regex@1.10.6 X X regex-automata@0.4.7 X X regex-syntax@0.8.4 X X reqsign@0.16.0 X -reqwest@0.12.5 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustc-hash@1.1.0 X X @@ -149,9 +149,9 @@ rustls-webpki@0.102.6 X ryu@1.0.18 X X scopeguard@1.2.0 X X semver@1.0.23 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sha1@0.10.6 X X sha2@0.10.8 X X @@ -168,7 +168,7 @@ socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X syn@1.0.109 X X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X synstructure@0.13.1 X tagptr@0.2.0 X X @@ -179,7 +179,7 @@ time-core@0.1.2 X X time-macros@0.2.18 X X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-macros@2.4.0 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X @@ -192,7 +192,7 @@ tracing-core@0.1.32 X triomphe@0.1.11 X X try-lock@0.2.5 X typenum@1.17.0 X X -unftp-sbe-opendal@0.0.5 X +unftp-sbe-opendal@0.0.6 X unicode-bidi@0.3.15 X X unicode-ident@1.0.12 X X X unicode-normalization@0.1.23 X X @@ -213,26 +213,19 @@ web-sys@0.3.70 X X webpki-roots@0.26.3 X which@4.4.2 X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X x509-parser@0.16.0 X X zerocopy@0.7.35 X X X zerocopy-derive@0.7.35 X X X diff --git a/integrations/virtiofs/DEPENDENCIES.rust.tsv b/integrations/virtiofs/DEPENDENCIES.rust.tsv index 367e45c7a096..ee8a021ba133 100644 --- a/integrations/virtiofs/DEPENDENCIES.rust.tsv +++ b/integrations/virtiofs/DEPENDENCIES.rust.tsv @@ -15,13 +15,13 @@ bitflags@2.6.0 X X block-buffer@0.10.4 X X bumpalo@3.16.0 X X bytes@1.7.1 X -cc@1.1.11 X X +cc@1.1.14 X X cfg-if@1.0.0 X X chrono@0.4.38 X X core-foundation-sys@0.8.7 X X crypto-common@0.1.6 X X digest@0.10.7 X X -fastrand@2.1.0 X X +fastrand@2.1.1 X X flagset@0.4.6 X fnv@1.0.7 X X form_urlencoded@1.2.1 X X @@ -52,7 +52,7 @@ ipnet@2.9.0 X X itoa@1.0.11 X X js-sys@0.3.70 X X lazy_static@1.5.0 X X -libc@0.2.155 X X +libc@0.2.158 X X log@0.4.22 X X md-5@0.10.6 X X memchr@2.7.4 X X @@ -62,7 +62,7 @@ mio@1.0.2 X num-traits@0.2.19 X X object@0.36.3 X X once_cell@1.19.0 X X -opendal@0.49.1 X +opendal@0.49.2 X percent-encoding@2.3.1 X X pin-project@1.1.5 X X pin-project-internal@1.1.5 X X @@ -70,8 +70,8 @@ pin-project-lite@0.2.14 X X pin-utils@0.1.0 X X proc-macro2@1.0.86 X X quick-xml@0.36.1 X -quote@1.0.36 X X -reqwest@0.12.5 X X +quote@1.0.37 X X +reqwest@0.12.7 X X ring@0.17.8 X rustc-demangle@0.1.24 X X rustls@0.23.12 X X X @@ -79,9 +79,9 @@ rustls-pemfile@2.1.3 X X X rustls-pki-types@1.8.0 X X rustls-webpki@0.102.6 X ryu@1.0.18 X X -serde@1.0.207 X X -serde_derive@1.0.207 X X -serde_json@1.0.125 X X +serde@1.0.209 X X +serde_derive@1.0.209 X X +serde_json@1.0.127 X X serde_urlencoded@0.7.1 X X sharded-slab@0.1.7 X shlex@1.3.0 X X @@ -92,13 +92,13 @@ snafu-derive@0.8.4 X X socket2@0.5.7 X X spin@0.9.8 X subtle@2.6.1 X -syn@2.0.74 X X +syn@2.0.76 X X sync_wrapper@1.0.1 X thiserror@1.0.63 X X thiserror-impl@1.0.63 X X tinyvec@1.8.0 X X X tinyvec_macros@0.1.1 X X X -tokio@1.39.2 X +tokio@1.39.3 X tokio-rustls@0.26.0 X X tokio-util@0.7.11 X tower@0.4.13 X @@ -137,24 +137,17 @@ winapi@0.3.9 X X winapi-i686-pc-windows-gnu@0.4.0 X X winapi-x86_64-pc-windows-gnu@0.4.0 X X windows-core@0.52.0 X X -windows-sys@0.48.0 X X +windows-registry@0.2.0 X X +windows-result@0.2.0 X X +windows-strings@0.1.0 X X windows-sys@0.52.0 X X -windows-targets@0.48.5 X X windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.48.5 X X windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.48.5 X X windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.48.5 X X windows_i686_gnu@0.52.6 X X windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.48.5 X X windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.48.5 X X windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.48.5 X X windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.48.5 X X windows_x86_64_msvc@0.52.6 X X -winreg@0.52.0 X zeroize@1.8.1 X X