Skip to content

Commit

Permalink
build(deps): upgrade crc32c to 0.6.6 for nightly toolchain (#4650)
Browse files Browse the repository at this point in the history
build(deps): upgrade crc32c to 0.6.5 for nightly toolchain

Signed-off-by: tison <wander4096@gmail.com>
  • Loading branch information
tisonkun committed May 28, 2024
1 parent dd7f180 commit 24ced52
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion core/src/types/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 24ced52

Please sign in to comment.