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"] }