From 24ced52aa26f0cff484e1462f5d99357fdd01732 Mon Sep 17 00:00:00 2001 From: tison Date: Tue, 28 May 2024 08:29:03 +0800 Subject: [PATCH] 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 --- 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 0e5ed0f33ab..cfb93d55e3c 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 73c53e6ac37..a2e52b6a36d 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 a89cc24a0de..f72e9f1af10 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.