This is an automated email from the ASF dual-hosted git repository.
junouyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 7688974b88 chore(deps): bump quick-xml from 0.30.0 to 0.31.0 (#4113)
7688974b88 is described below
commit 7688974b881a47821de53e3acc6edf1fc9c87d4d
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sun Feb 4 00:09:12 2024 +0800
chore(deps): bump quick-xml from 0.30.0 to 0.31.0 (#4113)
* chore(deps): bump quick-xml from 0.30.0 to 0.31.0
Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.30.0 to 0.31.0.
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](https://github.com/tafia/quick-xml/compare/v0.30.0...v0.31.0)
---
updated-dependencies:
- dependency-name: quick-xml
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
* chore: fix code
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jun Ouyang <[email protected]>
---
Cargo.lock | 18 ++++--------------
bin/oay/Cargo.toml | 2 +-
bindings/c/Cargo.lock | 14 ++------------
core/Cargo.toml | 2 +-
integrations/dav-server/Cargo.toml | 2 +-
5 files changed, 9 insertions(+), 29 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 0b93c06efe..44928935e8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1925,7 +1925,7 @@ dependencies = [
"futures",
"futures-util",
"opendal",
- "quick-xml 0.30.0",
+ "quick-xml",
"serde",
"tokio",
]
@@ -4394,7 +4394,7 @@ dependencies = [
"futures",
"futures-util",
"opendal",
- "quick-xml 0.30.0",
+ "quick-xml",
"serde",
"tokio",
"toml 0.8.9",
@@ -4550,7 +4550,7 @@ dependencies = [
"prometheus",
"prometheus-client",
"prost 0.11.9",
- "quick-xml 0.30.0",
+ "quick-xml",
"r2d2",
"rand 0.8.5",
"redb",
@@ -5581,16 +5581,6 @@ version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
-[[package]]
-name = "quick-xml"
-version = "0.30.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
-dependencies = [
- "memchr",
- "serde",
-]
-
[[package]]
name = "quick-xml"
version = "0.31.0"
@@ -5890,7 +5880,7 @@ dependencies = [
"log",
"once_cell",
"percent-encoding",
- "quick-xml 0.31.0",
+ "quick-xml",
"rand 0.8.5",
"reqwest",
"rsa",
diff --git a/bin/oay/Cargo.toml b/bin/oay/Cargo.toml
index 6d1c604ad6..a47af6d9ac 100644
--- a/bin/oay/Cargo.toml
+++ b/bin/oay/Cargo.toml
@@ -52,7 +52,7 @@ dirs = "5.0.1"
futures = "0.3"
futures-util = { version = "0.3.29", optional = true }
opendal.workspace = true
-quick-xml = { version = "0.30", features = ["serialize", "overlapped-lists"] }
+quick-xml = { version = "0.31", features = ["serialize", "overlapped-lists"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.34", features = [
"fs",
diff --git a/bindings/c/Cargo.lock b/bindings/c/Cargo.lock
index ef4363c37e..5fff107ad1 100644
--- a/bindings/c/Cargo.lock
+++ b/bindings/c/Cargo.lock
@@ -914,7 +914,7 @@ dependencies = [
"md-5",
"once_cell",
"percent-encoding",
- "quick-xml 0.30.0",
+ "quick-xml",
"reqsign",
"reqwest",
"serde",
@@ -1056,16 +1056,6 @@ dependencies = [
"unicode-ident",
]
-[[package]]
-name = "quick-xml"
-version = "0.30.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
-dependencies = [
- "memchr",
- "serde",
-]
-
[[package]]
name = "quick-xml"
version = "0.31.0"
@@ -1144,7 +1134,7 @@ dependencies = [
"log",
"once_cell",
"percent-encoding",
- "quick-xml 0.31.0",
+ "quick-xml",
"rand",
"reqwest",
"rsa",
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 44b47a357f..f1e01ef07d 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -251,7 +251,7 @@ md-5 = "0.10"
# TODO: remove once_cell when lazy_lock is stable:
https://doc.rust-lang.org/std/cell/struct.LazyCell.html
once_cell = "1"
percent-encoding = "2"
-quick-xml = { version = "0.30", features = ["serialize", "overlapped-lists"] }
+quick-xml = { version = "0.31", features = ["serialize", "overlapped-lists"] }
reqwest = { version = "0.11.18", features = [
"stream",
], default-features = false }
diff --git a/integrations/dav-server/Cargo.toml
b/integrations/dav-server/Cargo.toml
index 7932000dcd..56de67486d 100644
--- a/integrations/dav-server/Cargo.toml
+++ b/integrations/dav-server/Cargo.toml
@@ -36,7 +36,7 @@ dirs = "5.0.0"
futures = "0.3"
futures-util = { version = "0.3.16" }
opendal.workspace = true
-quick-xml = { version = "0.30", features = ["serialize", "overlapped-lists"] }
+quick-xml = { version = "0.31", features = ["serialize", "overlapped-lists"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.27", features = [
"fs",