This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 24ced52aa2 build(deps): upgrade crc32c to 0.6.6 for nightly toolchain
(#4650)
24ced52aa2 is described below
commit 24ced52aa26f0cff484e1462f5d99357fdd01732
Author: tison <[email protected]>
AuthorDate: Tue May 28 08:29:03 2024 +0800
build(deps): upgrade crc32c to 0.6.6 for nightly toolchain (#4650)
build(deps): upgrade crc32c to 0.6.5 for nightly toolchain
Signed-off-by: tison <[email protected]>
---
core/Cargo.lock | 4 ++--
core/Cargo.toml | 2 +-
core/src/types/buffer.rs | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/core/Cargo.lock b/core/Cargo.lock
index 0e5ed0f33a..cfb93d55e3 100644
--- a/core/Cargo.lock
+++ b/core/Cargo.lock
@@ -1888,9 +1888,9 @@ checksum =
"338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff"
[[package]]
name = "crc32c"
-version = "0.6.5"
+version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "89254598aa9b9fa608de44b3ae54c810f0f06d755e24c50177f1f8f31ff50ce2"
+checksum = "716b38bb6e49e9071060ab2c5e26195b70274f83fdf6cbc44542d63bb2f45c7d"
dependencies = [
"rustc_version 0.4.0",
]
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 73c53e6ac3..a2e52b6a36 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -336,7 +336,7 @@ surrealdb = { version = "1.3.0", optional = true, features
= ["protocol-http"] }
# for services-compfs
compio = { version = "0.10.0", optional = true, features = ["runtime",
"bytes", "polling"] }
# for services-s3
-crc32c = { version = "0.6.5", optional = true }
+crc32c = { version = "0.6.6", optional = true }
# Layers
# for layers-async-backtrace
diff --git a/core/src/types/buffer.rs b/core/src/types/buffer.rs
index a89cc24a0d..f72e9f1af1 100644
--- a/core/src/types/buffer.rs
+++ b/core/src/types/buffer.rs
@@ -34,7 +34,7 @@ use bytes::Bytes;
use bytes::BytesMut;
use futures::Stream;
-/// Buffer is a wrapper of contiguous `Bytes` and non contiguous `[Bytes]`.
+/// Buffer is a wrapper of contiguous `Bytes` and non-contiguous `[Bytes]`.
///
/// We designed buffer to allow underlying storage to return non-contiguous
bytes. For example,
/// http based storage like s3 could generate non-contiguous bytes by stream.