diff --git a/Cargo.lock b/Cargo.lock index c8110bb5f..d1a999c46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3677,15 +3677,16 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "google-cloud-auth" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f084abe65c3bdde490bf4a4eebc7e103637fb3ac4b101d09508dd5bf12ce82b1" +checksum = "5628e0c17140a50dd4d75d37465bf190d26a6c67909519c2e3cf87a9e45d5cf6" dependencies = [ "async-trait", "base64 0.22.1", "bon", "google-cloud-gax", "http 1.3.1", + "jsonwebtoken", "reqwest", "rustc_version", "rustls 0.23.35", @@ -3699,9 +3700,9 @@ dependencies = [ [[package]] name = "google-cloud-gax" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a36f8701dac18c2cbedf588d15ee4ce5c018da531c2e74e9ad043cbd32b0fccb" +checksum = "3c5aa07295f49565ee1ae52e0799e42bd67284396e042734f078b8737a816047" dependencies = [ "base64 0.22.1", "bytes", @@ -3719,9 +3720,9 @@ dependencies = [ [[package]] name = "google-cloud-gax-internal" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "152076418386463ff650deabbef392672626d62e97639bb5194e11f8984b4835" +checksum = "6dbd41e77921bbf75ed32acc8a648f087b3227ca88c62ddd9b37b43230c91554" dependencies = [ "bytes", "google-cloud-auth", @@ -3730,6 +3731,7 @@ dependencies = [ "google-cloud-wkt", "http 1.3.1", "http-body-util", + "hyper 1.7.0", "opentelemetry-semantic-conventions", "percent-encoding", "prost 0.14.1", @@ -3740,6 +3742,7 @@ dependencies = [ "serde_json", "thiserror 2.0.17", "tokio", + "tokio-stream", "tonic", "tonic-prost", "tracing", @@ -3814,9 +3817,9 @@ dependencies = [ [[package]] name = "google-cloud-storage" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "166471b8f807470024f4533d7229bc98696161b5e1f254d1a485b60c6c42baf3" +checksum = "12e6a4d24384f8ffae6d295d55095b25d21c9099855c5a96a0edf6777178b35b" dependencies = [ "async-trait", "base64 0.22.1", @@ -6424,9 +6427,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.38.3" +version = "0.38.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" dependencies = [ "memchr", "serde", @@ -7221,7 +7224,7 @@ dependencies = [ "parking_lot", "path-absolutize", "pin-project-lite", - "quick-xml 0.38.3", + "quick-xml 0.38.4", "rand 0.10.0-rc.5", "reed-solomon-simd", "regex", @@ -7402,7 +7405,7 @@ dependencies = [ "form_urlencoded", "futures", "hashbrown 0.16.0", - "quick-xml 0.38.3", + "quick-xml 0.38.4", "rayon", "rumqttc", "rustc-hash", diff --git a/Cargo.toml b/Cargo.toml index 152e1bfe3..4c1e86272 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,7 +128,7 @@ byteorder = "1.5.0" flatbuffers = "25.9.23" form_urlencoded = "1.2.2" prost = "0.14.1" -quick-xml = "0.38.3" +quick-xml = "0.38.4" rmcp = { version = "0.8.5" } rmp = { version = "0.8.14" } rmp-serde = { version = "1.3.0" } @@ -142,7 +142,7 @@ aes-gcm = { version = "0.11.0-rc.2", features = ["rand_core"] } argon2 = { version = "0.6.0-rc.2", features = ["std"] } blake3 = { version = "1.8.2" } chacha20poly1305 = { version = "0.11.0-rc.2" } -crc-fast = "1.3.0" +crc-fast = "1.6.0" crc32c = "0.6.8" crc32fast = "1.5.0" crc64fast-nvme = "1.2.0" @@ -188,8 +188,8 @@ faster-hex = "0.10.0" flate2 = "1.1.5" flexi_logger = { version = "0.31.7", features = ["trc", "dont_minimize_extra_stacks", "compress", "kv", "json"] } glob = "0.3.3" -google-cloud-storage = "1.2.0" -google-cloud-auth = "1.1.0" +google-cloud-storage = "1.3.0" +google-cloud-auth = "1.1.1" hashbrown = { version = "0.16.0", features = ["serde", "rayon"] } heed = { version = "0.22.0" } hex-simd = "0.8.0" diff --git a/crates/ecstore/src/cache_value/metacache_set.rs b/crates/ecstore/src/cache_value/metacache_set.rs index a02a376ba..621ffea77 100644 --- a/crates/ecstore/src/cache_value/metacache_set.rs +++ b/crates/ecstore/src/cache_value/metacache_set.rs @@ -19,7 +19,7 @@ use rustfs_filemeta::{MetaCacheEntries, MetaCacheEntry, MetacacheReader, is_io_e use std::{future::Future, pin::Pin, sync::Arc}; use tokio::spawn; use tokio_util::sync::CancellationToken; -use tracing::{error, warn}; +use tracing::{error, info, warn}; pub type AgreedFn = Box Pin + Send>> + Send + 'static>; pub type PartialFn = @@ -99,7 +99,7 @@ pub async fn list_path_raw(rx: CancellationToken, opts: ListPathRawOptions) -> d match disk.walk_dir(wakl_opts, &mut wr).await { Ok(_res) => {} Err(err) => { - error!("walk dir err {:?}", &err); + info!("walk dir err {:?}", &err); need_fallback = true; } }