From 2a607c9fee5d1897e2da2c76ac34fbc293216b0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 18:34:04 +0000 Subject: [PATCH] chore(deps): Bump twox-hash from 1.6.3 to 2.0.1 Bumps [twox-hash](https://github.com/shepmaster/twox-hash) from 1.6.3 to 2.0.1. - [Changelog](https://github.com/shepmaster/twox-hash/blob/main/CHANGELOG.md) - [Commits](https://github.com/shepmaster/twox-hash/compare/v1.6.3...v2.0.1) --- updated-dependencies: - dependency-name: twox-hash dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++-------- src/batch/Cargo.toml | 2 +- src/common/Cargo.toml | 2 +- src/storage/backup/Cargo.toml | 2 +- 4 files changed, 20 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb9830efdcc41..c1eb9134ab6ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5172,7 +5172,7 @@ dependencies = [ "serde", "thiserror", "tracing", - "twox-hash", + "twox-hash 1.6.3", "zstd 0.13.0", ] @@ -7240,7 +7240,7 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ea9b256699eda7b0387ffbc776dd625e28bde3918446381781245b7a50349d8" dependencies = [ - "twox-hash", + "twox-hash 1.6.3", ] [[package]] @@ -7796,7 +7796,7 @@ dependencies = [ "tokio", "tokio-native-tls", "tokio-util", - "twox-hash", + "twox-hash 1.6.3", "url", ] @@ -8757,7 +8757,7 @@ dependencies = [ "snap", "thrift", "tokio", - "twox-hash", + "twox-hash 1.6.3", "zstd 0.13.0", "zstd-sys", ] @@ -8792,7 +8792,7 @@ dependencies = [ "snap", "thrift", "tokio", - "twox-hash", + "twox-hash 1.6.3", "zstd 0.13.0", "zstd-sys", ] @@ -10472,7 +10472,7 @@ dependencies = [ "serde", "serde_json", "thiserror", - "twox-hash", + "twox-hash 2.0.1", ] [[package]] @@ -10529,7 +10529,7 @@ dependencies = [ "tokio-stream 0.1.15", "tokio-util", "tracing", - "twox-hash", + "twox-hash 2.0.1", "uuid", "workspace-hack", ] @@ -10740,7 +10740,7 @@ dependencies = [ "tracing-futures", "tracing-opentelemetry", "tracing-subscriber", - "twox-hash", + "twox-hash 2.0.1", "url", "uuid", "workspace-hack", @@ -15111,6 +15111,15 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "twox-hash" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6db6856664807f43c17fbaf2718e2381ac1476a449aa104f5f64622defa1245" +dependencies = [ + "rand", +] + [[package]] name = "typed-builder" version = "0.10.0" diff --git a/src/batch/Cargo.toml b/src/batch/Cargo.toml index ee6f757e17376..a8934e20070fa 100644 --- a/src/batch/Cargo.toml +++ b/src/batch/Cargo.toml @@ -68,7 +68,7 @@ tokio-stream = { workspace = true } tokio-util = { workspace = true } tonic = { workspace = true } tracing = "0.1" -twox-hash = "1" +twox-hash = "2" uuid = { version = "1", features = ["v4"] } [target.'cfg(not(madsim))'.dependencies] diff --git a/src/common/Cargo.toml b/src/common/Cargo.toml index 8b341fb621fe6..d15412edb0811 100644 --- a/src/common/Cargo.toml +++ b/src/common/Cargo.toml @@ -121,7 +121,7 @@ tracing = "0.1" tracing-futures = { version = "0.2", features = ["futures-03"] } tracing-opentelemetry = { workspace = true } tracing-subscriber = "0.3.17" -twox-hash = "1" +twox-hash = "2" url = "2" uuid = { version = "1", features = ["v4"] } diff --git a/src/storage/backup/Cargo.toml b/src/storage/backup/Cargo.toml index 3fd7d7ecde5ce..23a2c99567c48 100644 --- a/src/storage/backup/Cargo.toml +++ b/src/storage/backup/Cargo.toml @@ -29,7 +29,7 @@ risingwave_pb = { workspace = true } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "1" -twox-hash = "1" +twox-hash = "2" [dev-dependencies] risingwave_hummock_sdk = { workspace = true }