This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new cbff4d818d Update object_store Dependencies and Configure Dependabot
(#4700)
cbff4d818d is described below
commit cbff4d818ded578b0e28be5cd89c32085ed07ff4
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Wed Aug 16 13:09:51 2023 +0100
Update object_store Dependencies and Configure Dependabot (#4700)
* Update itertools and quick-xml
* Add dependabot
---
.github/dependabot.yml | 11 +++++++++--
object_store/Cargo.toml | 4 ++--
2 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 9c4cda5d03..ffde5378da 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -6,10 +6,17 @@ updates:
interval: daily
open-pull-requests-limit: 10
target-branch: master
- labels: [auto-dependencies]
+ labels: [ auto-dependencies, arrow ]
+ - package-ecosystem: cargo
+ directory: "/object_store"
+ schedule:
+ interval: daily
+ open-pull-requests-limit: 10
+ target-branch: master
+ labels: [ auto-dependencies, object_store ]
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
- labels: [auto-dependencies]
+ labels: [ auto-dependencies ]
diff --git a/object_store/Cargo.toml b/object_store/Cargo.toml
index 7ef395acd4..3c10f4a9c8 100644
--- a/object_store/Cargo.toml
+++ b/object_store/Cargo.toml
@@ -35,7 +35,7 @@ bytes = "1.0"
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
futures = "0.3"
humantime = "2.1"
-itertools = "0.10.1"
+itertools = "0.11.0"
parking_lot = { version = "0.12" }
percent-encoding = "2.1"
snafu = "0.7"
@@ -46,7 +46,7 @@ walkdir = "2"
# Cloud storage support
base64 = { version = "0.21", default-features = false, features = ["std"],
optional = true }
hyper = { version = "0.14", default-features = false, optional = true }
-quick-xml = { version = "0.28.0", features = ["serialize",
"overlapped-lists"], optional = true }
+quick-xml = { version = "0.30.0", features = ["serialize",
"overlapped-lists"], optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"],
optional = true }
serde_json = { version = "1.0", default-features = false, optional = true }
rand = { version = "0.8", default-features = false, features = ["std",
"std_rng"], optional = true }