From 037354cec08180d6a5eb3390aac24534dc096ac6 Mon Sep 17 00:00:00 2001 From: Zhengchao An Date: Sun, 6 Sep 2026 01:37:02 +0800 Subject: [PATCH] fix(build): declare relocated migration service dependencies (#7229) --- Cargo.lock | 2 ++ rustfs/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index c6d279229..aeadb7866 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9527,6 +9527,7 @@ dependencies = [ "metrics", "metrics-util", "mime_guess", + "moka", "opentelemetry", "opentelemetry_sdk", "p256 0.14.0", @@ -9619,6 +9620,7 @@ dependencies = [ "urlencoding", "uuid", "x509-parser", + "xxhash-rust", "zeroize", "zip", "zstd 0.14.0", diff --git a/rustfs/Cargo.toml b/rustfs/Cargo.toml index 03b6b378e..aabf2d865 100644 --- a/rustfs/Cargo.toml +++ b/rustfs/Cargo.toml @@ -291,6 +291,8 @@ tokio-rustls = { workspace = true, default-features = false, features = ["loggin aws-smithy-runtime-api = { workspace = true, features = ["http-1x"] } aws-smithy-types = { workspace = true } google-cloud-auth = { workspace = true, optional = true } +moka = { workspace = true, features = ["sync"] } +xxhash-rust = { workspace = true, features = ["xxh3"] } aws-sdk-s3 = { workspace = true, default-features = false, features = ["sigv4a", "default-https-client", "rt-tokio"] } tokio-stream.workspace = true tokio-util = { workspace = true, features = ["io", "compat", "time"] }