From 1fad8167af613b48b4acc5aff46daaef0d95f5b0 Mon Sep 17 00:00:00 2001 From: houseme Date: Mon, 12 Jan 2026 19:13:37 +0800 Subject: [PATCH 01/22] dependency name ignore for object_store (#1481) --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 50cdb35d..c914e2f0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -26,6 +26,9 @@ updates: day: "monday" timezone: "Asia/Shanghai" time: "08:00" + ignore: + - dependency-name: "object_store" + versions: [ "0.13.x" ] groups: s3s: update-types: @@ -36,4 +39,4 @@ updates: - "s3s-*" dependencies: patterns: - - "*" + - "*" \ No newline at end of file From bec51bb783a98b1f25078b1f1e7e48150edd0b5c Mon Sep 17 00:00:00 2001 From: houseme Date: Mon, 12 Jan 2026 19:30:59 +0800 Subject: [PATCH 02/22] fix: return 404 for HEAD requests on non-existent objects in TLS (#1480) --- rustfs/src/storage/ecfs.rs | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index 1fec35ec..5df5821d 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -2610,7 +2610,18 @@ impl S3 for FS { return Err(S3Error::with_message(S3ErrorCode::InternalError, "Not init".to_string())); }; - let info = store.get_object_info(&bucket, &key, &opts).await.map_err(ApiError::from)?; + // Modification Points: Explicitly handles get_object_info errors, distinguishing between object absence and other errors + let info = match store.get_object_info(&bucket, &key, &opts).await { + Ok(info) => info, + Err(err) => { + // If the error indicates the object or its version was not found, return 404 (NoSuchKey) + if is_err_object_not_found(&err) || is_err_version_not_found(&err) { + return Err(S3Error::new(S3ErrorCode::NoSuchKey)); + } + // Other errors, such as insufficient permissions, still return the original error + return Err(ApiError::from(err).into()); + } + }; if info.delete_marker { if opts.version_id.is_none() { @@ -2689,7 +2700,7 @@ impl S3 for FS { .get("x-amz-server-side-encryption-customer-algorithm") .map(|v| SSECustomerAlgorithm::from(v.clone())); let sse_customer_key_md5 = metadata_map.get("x-amz-server-side-encryption-customer-key-md5").cloned(); - let ssekms_key_id = metadata_map.get("x-amz-server-side-encryption-aws-kms-key-id").cloned(); + let sse_kms_key_id = metadata_map.get("x-amz-server-side-encryption-aws-kms-key-id").cloned(); // Prefer explicit storage_class from object info; fall back to persisted metadata header. let storage_class = info .storage_class @@ -2754,7 +2765,7 @@ impl S3 for FS { server_side_encryption, sse_customer_algorithm, sse_customer_key_md5, - ssekms_key_id, + ssekms_key_id: sse_kms_key_id, checksum_crc32, checksum_crc32c, checksum_sha1, From 5f2e594480e30180b611cc5622273ce3bc17782f Mon Sep 17 00:00:00 2001 From: LeonWang0735 Date: Mon, 12 Jan 2026 22:02:09 +0800 Subject: [PATCH 03/22] fix:handle null version ID in delete and return version_id in get_object (#1479) Signed-off-by: houseme Co-authored-by: houseme --- rustfs/src/storage/ecfs.rs | 18 ++++++++++++++++++ rustfs/src/storage/options.rs | 34 +++++++++++++++++++++++++++------- 2 files changed, 45 insertions(+), 7 deletions(-) diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index 5df5821d..35146ff3 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -2491,6 +2491,23 @@ impl S3 for FS { } } + let versioned = BucketVersioningSys::prefix_enabled(&bucket, &key).await; + + // Get version_id from object info + // If versioning is enabled and version_id exists in object info, return it + // If version_id is Uuid::nil(), return "null" string (AWS S3 convention) + let output_version_id = if versioned { + info.version_id.map(|vid| { + if vid == Uuid::nil() { + "null".to_string() + } else { + vid.to_string() + } + }) + } else { + None + }; + let output = GetObjectOutput { body, content_length: Some(response_content_length), @@ -2511,6 +2528,7 @@ impl S3 for FS { checksum_sha256, checksum_crc64nvme, checksum_type, + version_id: output_version_id, ..Default::default() }; diff --git a/rustfs/src/storage/options.rs b/rustfs/src/storage/options.rs index e0247373..49592850 100644 --- a/rustfs/src/storage/options.rs +++ b/rustfs/src/storage/options.rs @@ -65,13 +65,23 @@ pub async fn del_opts( let vid = vid.map(|v| v.as_str().trim().to_owned()); - if let Some(ref id) = vid - && *id != Uuid::nil().to_string() - && let Err(err) = Uuid::parse_str(id.as_str()) - { - error!("del_opts: invalid version id: {} error: {}", id, err); - return Err(StorageError::InvalidVersionID(bucket.to_owned(), object.to_owned(), id.clone())); - } + // Handle AWS S3 special case: "null" string represents null version ID + // When VersionId='null' is specified, it means delete the object with null version ID + let vid = if let Some(ref id) = vid { + if id.eq_ignore_ascii_case("null") { + // Convert "null" to Uuid::nil() string representation + Some(Uuid::nil().to_string()) + } else { + // Validate UUID format for other version IDs + if *id != Uuid::nil().to_string() && Uuid::parse_str(id.as_str()).is_err() { + error!("del_opts: invalid version id: {} error: invalid UUID format", id); + return Err(StorageError::InvalidVersionID(bucket.to_owned(), object.to_owned(), id.clone())); + } + Some(id.clone()) + } + } else { + None + }; let mut opts = put_opts_from_headers(headers, metadata.clone()).map_err(|err| { error!("del_opts: invalid argument: {} error: {}", object, err); @@ -704,6 +714,16 @@ mod tests { assert!(!opts.delete_prefix); } + #[tokio::test] + async fn test_del_opts_with_null_version_id() { + let headers = create_test_headers(); + let metadata = create_test_metadata(); + let result = del_opts("test-bucket", "test-object", Some("null".to_string()), &headers, metadata.clone()).await; + assert!(result.is_ok()); + let result = del_opts("test-bucket", "test-object", Some("NULL".to_string()), &headers, metadata.clone()).await; + assert!(result.is_ok()); + } + #[tokio::test] async fn test_get_opts_basic() { let headers = create_test_headers(); From b5140f0098535465a40f9ff80d7b9161824c75d8 Mon Sep 17 00:00:00 2001 From: houseme Date: Mon, 12 Jan 2026 23:53:31 +0800 Subject: [PATCH 04/22] build(deps): bump tracing-opentelemetry and flate2 version (#1484) Signed-off-by: dependabot[bot] Signed-off-by: houseme Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8092 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 4 +- 2 files changed, 4042 insertions(+), 4054 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e46daab..5c8f5b92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli", + "gimli", ] [[package]] @@ -23,8 +23,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common 0.1.7", - "generic-array 0.14.7", + "crypto-common 0.1.7", + "generic-array 0.14.7", ] [[package]] @@ -33,8 +33,8 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67a578e7d4edaef88aeb9cdd81556f4a62266ce26601317c006a79e8bc58b5af" dependencies = [ - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", ] [[package]] @@ -43,9 +43,9 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -54,10 +54,10 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd9e1c818b25efb32214df89b0ec22f01aa397aaeb718d1022bf0635a3bfd1a8" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "zeroize", ] [[package]] @@ -66,12 +66,12 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" dependencies = [ - "aead 0.5.2", - "aes 0.8.4", - "cipher 0.4.4", - "ctr 0.9.2", - "ghash 0.5.1", - "subtle", + "aead 0.5.2", + "aes 0.8.4", + "cipher 0.4.4", + "ctr 0.9.2", + "ghash 0.5.1", + "subtle", ] [[package]] @@ -80,13 +80,13 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f5c07f414d7dc0755870f84c7900425360288d24e0eae4836f9dee19a30fa5f" dependencies = [ - "aead 0.6.0-rc.5", - "aes 0.9.0-rc.2", - "cipher 0.5.0-rc.3", - "ctr 0.10.0-rc.2", - "ghash 0.6.0-rc.3", - "subtle", - "zeroize", + "aead 0.6.0-rc.5", + "aes 0.9.0-rc.2", + "cipher 0.5.0-rc.3", + "ctr 0.10.0-rc.2", + "ghash 0.6.0-rc.3", + "subtle", + "zeroize", ] [[package]] @@ -95,12 +95,12 @@ version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ - "cfg-if", - "const-random", - "getrandom 0.3.4", - "once_cell", - "version_check", - "zerocopy", + "cfg-if", + "const-random", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", ] [[package]] @@ -109,7 +109,7 @@ version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -118,7 +118,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" dependencies = [ - "equator", + "equator", ] [[package]] @@ -133,7 +133,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" dependencies = [ - "alloc-no-stdlib", + "alloc-no-stdlib", ] [[package]] @@ -142,7 +142,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" dependencies = [ - "cc", + "cc", ] [[package]] @@ -157,7 +157,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" dependencies = [ - "libc", + "libc", ] [[package]] @@ -172,13 +172,13 @@ version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", ] [[package]] @@ -193,7 +193,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ - "utf8parse", + "utf8parse", ] [[package]] @@ -202,7 +202,7 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -211,9 +211,9 @@ version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.61.2", + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", ] [[package]] @@ -228,7 +228,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" dependencies = [ - "object 0.32.2", + "object 0.32.2", ] [[package]] @@ -237,7 +237,7 @@ version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" dependencies = [ - "derive_arbitrary", + "derive_arbitrary", ] [[package]] @@ -246,7 +246,7 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e" dependencies = [ - "rustversion", + "rustversion", ] [[package]] @@ -255,10 +255,10 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" dependencies = [ - "base64ct", - "blake2 0.10.6", - "cpufeatures", - "password-hash 0.5.0", + "base64ct", + "blake2 0.10.6", + "cpufeatures", + "password-hash 0.5.0", ] [[package]] @@ -267,10 +267,10 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26e88a084142953a0415c47ddf4081eddf9a6d310012bbe92e9827d03e447f0" dependencies = [ - "base64ct", - "blake2 0.11.0-rc.3", - "cpufeatures", - "password-hash 0.6.0-rc.8", + "base64ct", + "blake2 0.11.0-rc.3", + "cpufeatures", + "password-hash 0.6.0-rc.8", ] [[package]] @@ -291,19 +291,19 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e" dependencies = [ - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-csv", - "arrow-data", - "arrow-ipc", - "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema", - "arrow-select", - "arrow-string", + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-csv", + "arrow-data", + "arrow-ipc", + "arrow-json", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", ] [[package]] @@ -312,12 +312,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "num-traits", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "num-traits", ] [[package]] @@ -326,17 +326,17 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c" dependencies = [ - "ahash", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "chrono-tz", - "half", - "hashbrown 0.16.1", - "num-complex", - "num-integer", - "num-traits", + "ahash", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "chrono-tz", + "half", + "hashbrown 0.16.1", + "num-complex", + "num-integer", + "num-traits", ] [[package]] @@ -345,10 +345,10 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56" dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", + "bytes", + "half", + "num-bigint", + "num-traits", ] [[package]] @@ -357,20 +357,20 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-ord", - "arrow-schema", - "arrow-select", - "atoi", - "base64", - "chrono", - "comfy-table", - "half", - "lexical-core", - "num-traits", - "ryu", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-ord", + "arrow-schema", + "arrow-select", + "atoi", + "base64", + "chrono", + "comfy-table", + "half", + "lexical-core", + "num-traits", + "ryu", ] [[package]] @@ -379,13 +379,13 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e4100b729fe656f2e4fb32bc5884f14acf9118d4ad532b7b33c1132e4dce896" dependencies = [ - "arrow-array", - "arrow-cast", - "arrow-schema", - "chrono", - "csv", - "csv-core", - "regex", + "arrow-array", + "arrow-cast", + "arrow-schema", + "chrono", + "csv", + "csv-core", + "regex", ] [[package]] @@ -394,11 +394,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597" dependencies = [ - "arrow-buffer", - "arrow-schema", - "half", - "num-integer", - "num-traits", + "arrow-buffer", + "arrow-schema", + "half", + "num-integer", + "num-traits", ] [[package]] @@ -407,14 +407,14 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3ca63edd2073fcb42ba112f8ae165df1de935627ead6e203d07c99445f2081" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "flatbuffers", - "lz4_flex", - "zstd", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "flatbuffers", + "lz4_flex", + "zstd", ] [[package]] @@ -423,22 +423,22 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a36b2332559d3310ebe3e173f75b29989b4412df4029a26a30cc3f7da0869297" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-schema", - "chrono", - "half", - "indexmap 2.13.0", - "itoa", - "lexical-core", - "memchr", - "num-traits", - "ryu", - "serde_core", - "serde_json", - "simdutf8", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "indexmap 2.13.0", + "itoa", + "lexical-core", + "memchr", + "num-traits", + "ryu", + "serde_core", + "serde_json", + "simdutf8", ] [[package]] @@ -447,11 +447,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", ] [[package]] @@ -460,11 +460,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "half", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", ] [[package]] @@ -473,8 +473,8 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c" dependencies = [ - "serde_core", - "serde_json", + "serde_core", + "serde_json", ] [[package]] @@ -483,12 +483,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "num-traits", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num-traits", ] [[package]] @@ -497,15 +497,15 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "memchr", - "num-traits", - "regex", - "regex-syntax", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num-traits", + "regex", + "regex-syntax", ] [[package]] @@ -514,14 +514,14 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", - "displaydoc", - "nom 7.1.3", - "num-traits", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs-derive", + "asn1-rs-impl", + "displaydoc", + "nom 7.1.3", + "num-traits", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -530,10 +530,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -542,9 +542,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -553,14 +553,14 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5" dependencies = [ - "filetime", - "futures-core", - "libc", - "portable-atomic", - "rustc-hash", - "tokio", - "tokio-stream", - "xattr", + "filetime", + "futures-core", + "libc", + "portable-atomic", + "rustc-hash", + "tokio", + "tokio-stream", + "xattr", ] [[package]] @@ -569,10 +569,10 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" dependencies = [ - "concurrent-queue", - "event-listener-strategy", - "futures-core", - "pin-project-lite", + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", ] [[package]] @@ -581,16 +581,16 @@ version = "0.4.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c" dependencies = [ - "brotli 7.0.0", - "bzip2 0.5.2", - "flate2", - "futures-core", - "memchr", - "pin-project-lite", - "tokio", - "xz2", - "zstd", - "zstd-safe", + "brotli 7.0.0", + "bzip2 0.5.2", + "flate2", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", + "xz2", + "zstd", + "zstd-safe", ] [[package]] @@ -599,9 +599,9 @@ version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ - "event-listener", - "event-listener-strategy", - "pin-project-lite", + "event-listener", + "event-listener-strategy", + "pin-project-lite", ] [[package]] @@ -610,9 +610,9 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -621,9 +621,9 @@ version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -632,7 +632,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -647,9 +647,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99e1aca718ea7b89985790c94aad72d77533063fe00bc497bb79a7c2dae6a661" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -664,28 +664,28 @@ version = "1.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sdk-sso", - "aws-sdk-ssooidc", - "aws-sdk-sts", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "hex", - "http 1.4.0", - "ring", - "time", - "tokio", - "tracing", - "url", - "zeroize", + "aws-credential-types", + "aws-runtime", + "aws-sdk-sso", + "aws-sdk-ssooidc", + "aws-sdk-sts", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "hex", + "http 1.4.0", + "ring", + "time", + "tokio", + "tracing", + "url", + "zeroize", ] [[package]] @@ -694,10 +694,10 @@ version = "1.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "zeroize", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "zeroize", ] [[package]] @@ -706,9 +706,9 @@ version = "1.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" dependencies = [ - "aws-lc-sys", - "untrusted 0.7.1", - "zeroize", + "aws-lc-sys", + "untrusted 0.7.1", + "zeroize", ] [[package]] @@ -717,10 +717,10 @@ version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" dependencies = [ - "cc", - "cmake", - "dunce", - "fs_extra", + "cc", + "cmake", + "dunce", + "fs_extra", ] [[package]] @@ -729,23 +729,23 @@ version = "1.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d81b5b2898f6798ad58f484856768bca817e3cd9de0974c24ae0f1113fe88f1b" dependencies = [ - "aws-credential-types", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "tracing", - "uuid", + "aws-credential-types", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "tracing", + "uuid", ] [[package]] @@ -754,32 +754,32 @@ version = "1.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d65fddc3844f902dfe1864acb8494db5f9342015ee3ab7890270d36fbd2e01c" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-checksums", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "bytes", - "fastrand", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "lru", - "percent-encoding", - "regex-lite", - "sha2 0.10.9", - "tracing", - "url", + "aws-credential-types", + "aws-runtime", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-checksums", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "bytes", + "fastrand", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "lru", + "percent-encoding", + "regex-lite", + "sha2 0.10.9", + "tracing", + "url", ] [[package]] @@ -788,20 +788,20 @@ version = "1.91.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -810,20 +810,20 @@ version = "1.93.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -832,21 +832,21 @@ version = "1.95.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-query", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-query", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -855,26 +855,26 @@ version = "1.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c" dependencies = [ - "aws-credential-types", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "crypto-bigint 0.5.5", - "form_urlencoded", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "p256 0.11.1", - "percent-encoding", - "ring", - "sha2 0.10.9", - "subtle", - "time", - "tracing", - "zeroize", + "aws-credential-types", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "crypto-bigint 0.5.5", + "form_urlencoded", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "p256 0.11.1", + "percent-encoding", + "ring", + "sha2 0.10.9", + "subtle", + "time", + "tracing", + "zeroize", ] [[package]] @@ -883,9 +883,9 @@ version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c" dependencies = [ - "futures-util", - "pin-project-lite", - "tokio", + "futures-util", + "pin-project-lite", + "tokio", ] [[package]] @@ -894,18 +894,18 @@ version = "0.63.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87294a084b43d649d967efe58aa1f9e0adc260e13a6938eb904c0ae9b45824ae" dependencies = [ - "aws-smithy-http", - "aws-smithy-types", - "bytes", - "crc-fast", - "hex", - "http 0.2.12", - "http-body 0.4.6", - "md-5 0.10.6", - "pin-project-lite", - "sha1 0.10.6", - "sha2 0.10.9", - "tracing", + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "crc-fast", + "hex", + "http 0.2.12", + "http-body 0.4.6", + "md-5 0.10.6", + "pin-project-lite", + "sha1 0.10.6", + "sha2 0.10.9", + "tracing", ] [[package]] @@ -914,9 +914,9 @@ version = "0.60.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc12f8b310e38cad85cf3bef45ad236f470717393c613266ce0a89512286b650" dependencies = [ - "aws-smithy-types", - "bytes", - "crc32fast", + "aws-smithy-types", + "bytes", + "crc32fast", ] [[package]] @@ -925,20 +925,20 @@ version = "0.62.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b" dependencies = [ - "aws-smithy-eventstream", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "bytes-utils", - "futures-core", - "futures-util", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "pin-utils", - "tracing", + "aws-smithy-eventstream", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "bytes-utils", + "futures-core", + "futures-util", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tracing", ] [[package]] @@ -947,22 +947,22 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "h2", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower", - "tracing", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "h2", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower", + "tracing", ] [[package]] @@ -971,7 +971,7 @@ version = "0.61.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551" dependencies = [ - "aws-smithy-types", + "aws-smithy-types", ] [[package]] @@ -980,7 +980,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17f616c3f2260612fe44cede278bafa18e73e6479c4e393e2c4518cf2a9a228a" dependencies = [ - "aws-smithy-runtime-api", + "aws-smithy-runtime-api", ] [[package]] @@ -989,8 +989,8 @@ version = "0.60.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d" dependencies = [ - "aws-smithy-types", - "urlencoding", + "aws-smithy-types", + "urlencoding", ] [[package]] @@ -999,22 +999,22 @@ version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a392db6c583ea4a912538afb86b7be7c5d8887d91604f50eb55c262ee1b4a5f5" dependencies = [ - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-http-client", - "aws-smithy-observability", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "fastrand", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "pin-project-lite", - "pin-utils", - "tokio", - "tracing", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-http-client", + "aws-smithy-observability", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "fastrand", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "pin-project-lite", + "pin-utils", + "tokio", + "tracing", ] [[package]] @@ -1023,15 +1023,15 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab0d43d899f9e508300e587bf582ba54c27a452dd0a9ea294690669138ae14a2" dependencies = [ - "aws-smithy-async", - "aws-smithy-types", - "bytes", - "http 0.2.12", - "http 1.4.0", - "pin-project-lite", - "tokio", - "tracing", - "zeroize", + "aws-smithy-async", + "aws-smithy-types", + "bytes", + "http 0.2.12", + "http 1.4.0", + "pin-project-lite", + "tokio", + "tracing", + "zeroize", ] [[package]] @@ -1040,24 +1040,24 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "905cb13a9895626d49cf2ced759b062d913834c7482c38e49557eac4e6193f01" dependencies = [ - "base64-simd", - "bytes", - "bytes-utils", - "futures-core", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "http-body-util", - "itoa", - "num-integer", - "pin-project-lite", - "pin-utils", - "ryu", - "serde", - "time", - "tokio", - "tokio-util", + "base64-simd", + "bytes", + "bytes-utils", + "futures-core", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "http-body-util", + "itoa", + "num-integer", + "pin-project-lite", + "pin-utils", + "ryu", + "serde", + "time", + "tokio", + "tokio-util", ] [[package]] @@ -1066,7 +1066,7 @@ version = "0.60.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57" dependencies = [ - "xmlparser", + "xmlparser", ] [[package]] @@ -1075,12 +1075,12 @@ version = "1.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164" dependencies = [ - "aws-credential-types", - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "rustc_version", - "tracing", + "aws-credential-types", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "rustc_version", + "tracing", ] [[package]] @@ -1089,31 +1089,31 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ - "axum-core", - "bytes", - "form_urlencoded", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "itoa", - "matchit 0.8.4", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "serde_core", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tower", - "tower-layer", - "tower-service", - "tracing", + "axum-core", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit 0.8.4", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde_core", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1122,17 +1122,17 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "sync_wrapper", - "tower-layer", - "tower-service", - "tracing", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1141,20 +1141,20 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1df331683d982a0b9492b38127151e6453639cd34926eb9c07d4cd8c6d22bfc" dependencies = [ - "arc-swap", - "bytes", - "either", - "fs-err", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", + "arc-swap", + "bytes", + "either", + "fs-err", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", ] [[package]] @@ -1163,13 +1163,13 @@ version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object 0.37.3", - "rustc-demangle", - "windows-link 0.2.1", + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object 0.37.3", + "rustc-demangle", + "windows-link 0.2.1", ] [[package]] @@ -1202,15 +1202,15 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] name = "base64ct" -version = "1.8.2" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d809780667f4410e7c41b07f52439b94d2bdf8528eeedc287fa38d3b7f95d82" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "bcrypt-pbkdf" @@ -1218,9 +1218,9 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2" dependencies = [ - "blowfish", - "pbkdf2 0.12.2", - "sha2 0.10.9", + "blowfish", + "pbkdf2 0.12.2", + "sha2 0.10.9", ] [[package]] @@ -1229,11 +1229,11 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" dependencies = [ - "autocfg", - "libm", - "num-bigint", - "num-integer", - "num-traits", + "autocfg", + "libm", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -1242,7 +1242,7 @@ version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1257,7 +1257,7 @@ version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1266,7 +1266,7 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -1275,7 +1275,7 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "679065eb2b85a078ace42411e657bef3a6afe93a40d1b9cb04e39ca303cc3f36" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -1284,14 +1284,14 @@ version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if", - "constant_time_eq 0.4.2", - "cpufeatures", - "memmap2", - "rayon-core", + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq 0.4.2", + "cpufeatures", + "memmap2", + "rayon-core", ] [[package]] @@ -1300,7 +1300,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1309,8 +1309,8 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f" dependencies = [ - "hybrid-array", - "zeroize", + "hybrid-array", + "zeroize", ] [[package]] @@ -1319,7 +1319,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1328,8 +1328,8 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" dependencies = [ - "byteorder", - "cipher 0.4.4", + "byteorder", + "cipher 0.4.4", ] [[package]] @@ -1338,8 +1338,8 @@ version = "3.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234655ec178edd82b891e262ea7cf71f6584bcd09eff94db786be23f1821825c" dependencies = [ - "bon-macros", - "rustversion", + "bon-macros", + "rustversion", ] [[package]] @@ -1348,13 +1348,13 @@ version = "3.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89ec27229c38ed0eb3c0feee3d2c1d6a4379ae44f418a29a658890e062d8f365" dependencies = [ - "darling 0.23.0", - "ident_case", - "prettyplease", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.114", + "darling 0.23.0", + "ident_case", + "prettyplease", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.114", ] [[package]] @@ -1363,9 +1363,9 @@ version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 4.0.3", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor 4.0.3", ] [[package]] @@ -1374,9 +1374,9 @@ version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 5.0.0", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor 5.0.0", ] [[package]] @@ -1385,8 +1385,8 @@ version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1395,8 +1395,8 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1423,7 +1423,7 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1432,8 +1432,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" dependencies = [ - "bytes", - "either", + "bytes", + "either", ] [[package]] @@ -1448,7 +1448,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289" dependencies = [ - "bytes", + "bytes", ] [[package]] @@ -1457,7 +1457,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" dependencies = [ - "bzip2-sys", + "bzip2-sys", ] [[package]] @@ -1466,7 +1466,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" dependencies = [ - "libbz2-rs-sys", + "libbz2-rs-sys", ] [[package]] @@ -1475,8 +1475,8 @@ version = "0.1.13+1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" dependencies = [ - "cc", - "pkg-config", + "cc", + "pkg-config", ] [[package]] @@ -1485,7 +1485,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1494,8 +1494,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -1504,12 +1504,12 @@ version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9" dependencies = [ - "camino", - "cargo-platform", - "semver", - "serde", - "serde_json", - "thiserror 2.0.17", + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.17", ] [[package]] @@ -1524,7 +1524,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -1533,10 +1533,10 @@ version = "1.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3" dependencies = [ - "find-msvc-tools", - "jobserver", - "libc", - "shlex", + "find-msvc-tools", + "jobserver", + "libc", + "shlex", ] [[package]] @@ -1557,9 +1557,9 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -1568,11 +1568,11 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f895fb33c1ad22da4bc79d37c0bddff8aee2ba4575705345eb73b8ffbc386074" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "rand_core 0.10.0-rc-3", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "rand_core 0.10.0-rc-3", + "zeroize", ] [[package]] @@ -1581,10 +1581,10 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c662d31454533832974f2b2b3fcbd552ed3cde94c95e614a5039d297dd97076f" dependencies = [ - "aead 0.6.0-rc.5", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "poly1305 0.9.0-rc.3", + "aead 0.6.0-rc.5", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "poly1305 0.9.0-rc.3", ] [[package]] @@ -1593,12 +1593,12 @@ version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" dependencies = [ - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "wasm-bindgen", - "windows-link 0.2.1", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link 0.2.1", ] [[package]] @@ -1607,8 +1607,8 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" dependencies = [ - "chrono", - "phf 0.12.1", + "chrono", + "phf 0.12.1", ] [[package]] @@ -1617,9 +1617,9 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", + "ciborium-io", + "ciborium-ll", + "serde", ] [[package]] @@ -1634,8 +1634,8 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ - "ciborium-io", - "half", + "ciborium-io", + "half", ] [[package]] @@ -1644,8 +1644,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common 0.1.7", - "inout 0.1.4", + "crypto-common 0.1.7", + "inout 0.1.4", ] [[package]] @@ -1654,10 +1654,10 @@ version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ - "block-buffer 0.11.0", - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", - "zeroize", + "block-buffer 0.11.0", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", + "zeroize", ] [[package]] @@ -1666,8 +1666,8 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" dependencies = [ - "clap_builder", - "clap_derive", + "clap_builder", + "clap_derive", ] [[package]] @@ -1676,10 +1676,10 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim 0.11.1", + "anstream", + "anstyle", + "clap_lex", + "strsim 0.11.1", ] [[package]] @@ -1688,10 +1688,10 @@ version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1706,7 +1706,7 @@ version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" dependencies = [ - "cc", + "cc", ] [[package]] @@ -1727,8 +1727,8 @@ version = "7.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" dependencies = [ - "unicode-segmentation", - "unicode-width", + "unicode-segmentation", + "unicode-width", ] [[package]] @@ -1737,7 +1737,7 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1758,7 +1758,7 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" dependencies = [ - "const-random-macro", + "const-random-macro", ] [[package]] @@ -1767,9 +1767,9 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.17", - "once_cell", - "tiny-keccak", + "getrandom 0.2.17", + "once_cell", + "tiny-keccak", ] [[package]] @@ -1778,7 +1778,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93e19f68b180ebff43d6d42005c4b5f046c65fcac28369ba8b3beaad633f9ec0" dependencies = [ - "const-str-proc-macro", + "const-str-proc-macro", ] [[package]] @@ -1787,9 +1787,9 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d3e0f24ee268386bd3ab4e04fc60df9a818ad801b5ffe592f388a6acc5053fb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1798,7 +1798,7 @@ version = "0.2.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" dependencies = [ - "const_format_proc_macros", + "const_format_proc_macros", ] [[package]] @@ -1807,9 +1807,9 @@ version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" dependencies = [ - "proc-macro2", - "quote", - "unicode-xid", + "proc-macro2", + "quote", + "unicode-xid", ] [[package]] @@ -1830,7 +1830,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" dependencies = [ - "unicode-segmentation", + "unicode-segmentation", ] [[package]] @@ -1839,8 +1839,8 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1849,8 +1849,8 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1865,9 +1865,9 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0940496e5c83c54f3b753d5317daec82e8edac71c33aaa1f666d76f518de2444" dependencies = [ - "hax-lib", - "pastey 0.1.1", - "rand 0.9.2", + "hax-lib", + "pastey 0.1.1", + "rand 0.9.2", ] [[package]] @@ -1876,7 +1876,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1885,7 +1885,7 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ - "libc", + "libc", ] [[package]] @@ -1894,7 +1894,7 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" dependencies = [ - "crc-catalog", + "crc-catalog", ] [[package]] @@ -1909,11 +1909,11 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ddc2d09feefeee8bd78101665bd8645637828fa9317f9f292496dbbd8c65ff3" dependencies = [ - "crc", - "digest 0.10.7", - "rand 0.9.2", - "regex", - "rustversion", + "crc", + "digest 0.10.7", + "rand 0.9.2", + "regex", + "rustversion", ] [[package]] @@ -1922,7 +1922,7 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" dependencies = [ - "rustc_version", + "rustc_version", ] [[package]] @@ -1931,7 +1931,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1940,23 +1940,23 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf" dependencies = [ - "alloca", - "anes", - "cast", - "ciborium", - "clap", - "criterion-plot", - "itertools 0.13.0", - "num-traits", - "oorandom", - "page_size", - "plotters", - "rayon", - "regex", - "serde", - "serde_json", - "tinytemplate", - "walkdir", + "alloca", + "anes", + "cast", + "ciborium", + "clap", + "criterion-plot", + "itertools 0.13.0", + "num-traits", + "oorandom", + "page_size", + "plotters", + "rayon", + "regex", + "serde", + "serde_json", + "tinytemplate", + "walkdir", ] [[package]] @@ -1965,8 +1965,8 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4" dependencies = [ - "cast", - "itertools 0.13.0", + "cast", + "itertools 0.13.0", ] [[package]] @@ -1975,7 +1975,7 @@ version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1984,8 +1984,8 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] @@ -1994,7 +1994,7 @@ version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -2003,7 +2003,7 @@ version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -2024,10 +2024,10 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -2036,10 +2036,10 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -2048,11 +2048,11 @@ version = "0.7.0-rc.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a9e36ac79ac44866b74e08a0b4925f97b984e3fff17680d2c6fbce8317ab0f6" dependencies = [ - "ctutils", - "num-traits", - "rand_core 0.10.0-rc-3", - "serdect", - "zeroize", + "ctutils", + "num-traits", + "rand_core 0.10.0-rc-3", + "serdect", + "zeroize", ] [[package]] @@ -2061,8 +2061,8 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ - "generic-array 0.14.7", - "typenum", + "generic-array 0.14.7", + "typenum", ] [[package]] @@ -2071,9 +2071,9 @@ version = "0.2.0-rc.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41b8986f836d4aeb30ccf4c9d3bd562fd716074cfd7fc4a2948359fbd21ed809" dependencies = [ - "getrandom 0.4.0-rc.0", - "hybrid-array", - "rand_core 0.10.0-rc-3", + "getrandom 0.4.0-rc.0", + "hybrid-array", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2082,9 +2082,9 @@ version = "0.7.0-pre.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0b07a7a616370e8b6efca0c6a25e5f4c6d02fde11f3d570e4af64d8ed7e2e9" dependencies = [ - "crypto-bigint 0.7.0-rc.15", - "libm", - "rand_core 0.10.0-rc-3", + "crypto-bigint 0.7.0-rc.15", + "libm", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2093,10 +2093,10 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde_core", + "csv-core", + "itoa", + "ryu", + "serde_core", ] [[package]] @@ -2105,7 +2105,7 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -2114,7 +2114,7 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -2123,7 +2123,7 @@ version = "0.10.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0ec605a95e78815a4c4b8040217d56d5a1ab37043851ee9e7e65b89afa00e3" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -2132,7 +2132,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c67c81499f542d1dd38c6a2a2fe825f4dd4bca5162965dd2eea0c8119873d3c" dependencies = [ - "cmov", + "cmov", ] [[package]] @@ -2141,14 +2141,14 @@ version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.10.7", - "fiat-crypto 0.2.9", - "rustc_version", - "subtle", - "zeroize", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.10.7", + "fiat-crypto 0.2.9", + "rustc_version", + "subtle", + "zeroize", ] [[package]] @@ -2157,13 +2157,13 @@ version = "5.0.0-pre.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d8cfa313d59919eda35b420bd37db85bf58d6754d6f128b9949932b0c0fcce7" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.11.0-rc.5", - "fiat-crypto 0.3.0", - "rustc_version", - "subtle", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.11.0-rc.5", + "fiat-crypto 0.3.0", + "rustc_version", + "subtle", ] [[package]] @@ -2172,9 +2172,9 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -2183,8 +2183,8 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", + "darling_core 0.14.4", + "darling_macro 0.14.4", ] [[package]] @@ -2193,8 +2193,8 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core 0.20.11", - "darling_macro 0.20.11", + "darling_core 0.20.11", + "darling_macro 0.20.11", ] [[package]] @@ -2203,8 +2203,8 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" dependencies = [ - "darling_core 0.21.3", - "darling_macro 0.21.3", + "darling_core 0.21.3", + "darling_macro 0.21.3", ] [[package]] @@ -2213,8 +2213,8 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" dependencies = [ - "darling_core 0.23.0", - "darling_macro 0.23.0", + "darling_core 0.23.0", + "darling_macro 0.23.0", ] [[package]] @@ -2223,12 +2223,12 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 1.0.109", ] [[package]] @@ -2237,12 +2237,12 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2251,12 +2251,12 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2265,11 +2265,11 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" dependencies = [ - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2278,9 +2278,9 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" dependencies = [ - "darling_core 0.14.4", - "quote", - "syn 1.0.109", + "darling_core 0.14.4", + "quote", + "syn 1.0.109", ] [[package]] @@ -2289,9 +2289,9 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core 0.20.11", - "quote", - "syn 2.0.114", + "darling_core 0.20.11", + "quote", + "syn 2.0.114", ] [[package]] @@ -2300,9 +2300,9 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" dependencies = [ - "darling_core 0.21.3", - "quote", - "syn 2.0.114", + "darling_core 0.21.3", + "quote", + "syn 2.0.114", ] [[package]] @@ -2311,9 +2311,9 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" dependencies = [ - "darling_core 0.23.0", - "quote", - "syn 2.0.114", + "darling_core 0.23.0", + "quote", + "syn 2.0.114", ] [[package]] @@ -2322,12 +2322,12 @@ version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ - "cfg-if", - "crossbeam-utils", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core", + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", ] [[package]] @@ -2342,54 +2342,54 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ba7cb113e9c0bedf9e9765926031e132fa05a1b09ba6e93a6d1a4d7044457b8" dependencies = [ - "arrow", - "arrow-schema", - "async-trait", - "bytes", - "bzip2 0.6.1", - "chrono", - "datafusion-catalog", - "datafusion-catalog-listing", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-datasource-arrow", - "datafusion-datasource-csv", - "datafusion-datasource-json", - "datafusion-datasource-parquet", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-nested", - "datafusion-functions-table", - "datafusion-functions-window", - "datafusion-optimizer", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-optimizer", - "datafusion-physical-plan", - "datafusion-session", - "datafusion-sql", - "flate2", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "rand 0.9.2", - "regex", - "rstest", - "sqlparser", - "tempfile", - "tokio", - "url", - "uuid", - "xz2", - "zstd", + "arrow", + "arrow-schema", + "async-trait", + "bytes", + "bzip2 0.6.1", + "chrono", + "datafusion-catalog", + "datafusion-catalog-listing", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-datasource-arrow", + "datafusion-datasource-csv", + "datafusion-datasource-json", + "datafusion-datasource-parquet", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-nested", + "datafusion-functions-table", + "datafusion-functions-window", + "datafusion-optimizer", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-optimizer", + "datafusion-physical-plan", + "datafusion-session", + "datafusion-sql", + "flate2", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "rand 0.9.2", + "regex", + "rstest", + "sqlparser", + "tempfile", + "tokio", + "url", + "uuid", + "xz2", + "zstd", ] [[package]] @@ -2398,23 +2398,23 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66a3a799f914a59b1ea343906a0486f17061f39509af74e874a866428951130d" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "tokio", + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "tokio", ] [[package]] @@ -2423,22 +2423,22 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db1b113c80d7a0febcd901476a57aef378e717c54517a163ed51417d87621b0" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "tokio", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "tokio", ] [[package]] @@ -2447,22 +2447,22 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c10f7659e96127d25e8366be7c8be4109595d6a2c3eac70421f380a7006a1b0" dependencies = [ - "ahash", - "arrow", - "arrow-ipc", - "chrono", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "libc", - "log", - "object_store", - "parquet", - "paste", - "recursive", - "sqlparser", - "tokio", - "web-time", + "ahash", + "arrow", + "arrow-ipc", + "chrono", + "half", + "hashbrown 0.14.5", + "indexmap 2.13.0", + "libc", + "log", + "object_store", + "parquet", + "paste", + "recursive", + "sqlparser", + "tokio", + "web-time", ] [[package]] @@ -2471,9 +2471,9 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b92065bbc6532c6651e2f7dd30b55cba0c7a14f860c7e1d15f165c41a1868d95" dependencies = [ - "futures", - "log", - "tokio", + "futures", + "log", + "tokio", ] [[package]] @@ -2482,33 +2482,33 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fde13794244bc7581cd82f6fff217068ed79cdc344cafe4ab2c3a1c3510b38d6" dependencies = [ - "arrow", - "async-compression", - "async-trait", - "bytes", - "bzip2 0.6.1", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "flate2", - "futures", - "glob", - "itertools 0.14.0", - "log", - "object_store", - "rand 0.9.2", - "tokio", - "tokio-util", - "url", - "xz2", - "zstd", + "arrow", + "async-compression", + "async-trait", + "bytes", + "bzip2 0.6.1", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "flate2", + "futures", + "glob", + "itertools 0.14.0", + "log", + "object_store", + "rand 0.9.2", + "tokio", + "tokio-util", + "url", + "xz2", + "zstd", ] [[package]] @@ -2517,22 +2517,22 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "804fa9b4ecf3157982021770617200ef7c1b2979d57bec9044748314775a9aea" dependencies = [ - "arrow", - "arrow-ipc", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "object_store", - "tokio", + "arrow", + "arrow-ipc", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "object_store", + "tokio", ] [[package]] @@ -2541,21 +2541,21 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61a1641a40b259bab38131c5e6f48fac0717bedb7dc93690e604142a849e0568" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "regex", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "regex", + "tokio", ] [[package]] @@ -2564,20 +2564,20 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adeacdb00c1d37271176f8fb6a1d8ce096baba16ea7a4b2671840c5c9c64fe85" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "tokio", ] [[package]] @@ -2586,28 +2586,28 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d0b60ffd66f28bfb026565d62b0a6cbc416da09814766a3797bba7d85a3cd9" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "tokio", ] [[package]] @@ -2622,18 +2622,18 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63695643190679037bc946ad46a263b62016931547bf119859c511f7ff2f5178" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-expr", - "futures", - "log", - "object_store", - "parking_lot", - "rand 0.9.2", - "tempfile", - "url", + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-expr", + "futures", + "log", + "object_store", + "parking_lot", + "rand 0.9.2", + "tempfile", + "url", ] [[package]] @@ -2642,21 +2642,21 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9a4787cbf5feb1ab351f789063398f67654a6df75c4d37d7f637dc96f951a91" dependencies = [ - "arrow", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", - "recursive", - "serde_json", - "sqlparser", + "arrow", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", + "recursive", + "serde_json", + "sqlparser", ] [[package]] @@ -2665,11 +2665,11 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ce2fb1b8c15c9ac45b0863c30b268c69dc9ee7a1ee13ecf5d067738338173dc" dependencies = [ - "arrow", - "datafusion-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", + "arrow", + "datafusion-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", ] [[package]] @@ -2678,28 +2678,28 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "794a9db7f7b96b3346fc007ff25e994f09b8f0511b4cf7dff651fadfe3ebb28f" dependencies = [ - "arrow", - "arrow-buffer", - "base64", - "blake2 0.10.6", - "blake3", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-macros", - "hex", - "itertools 0.14.0", - "log", - "md-5 0.10.6", - "num-traits", - "rand 0.9.2", - "regex", - "sha2 0.10.9", - "unicode-segmentation", - "uuid", + "arrow", + "arrow-buffer", + "base64", + "blake2 0.10.6", + "blake3", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-macros", + "hex", + "itertools 0.14.0", + "log", + "md-5 0.10.6", + "num-traits", + "rand 0.9.2", + "regex", + "sha2 0.10.9", + "unicode-segmentation", + "uuid", ] [[package]] @@ -2708,19 +2708,19 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c25210520a9dcf9c2b2cbbce31ebd4131ef5af7fc60ee92b266dc7d159cb305" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "half", - "log", - "paste", + "ahash", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "half", + "log", + "paste", ] [[package]] @@ -2729,11 +2729,11 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62f4a66f3b87300bb70f4124b55434d2ae3fe80455f3574701d0348da040b55d" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "datafusion-physical-expr-common", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr-common", + "datafusion-physical-expr-common", ] [[package]] @@ -2742,21 +2742,21 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae5c06eed03918dc7fe7a9f082a284050f0e9ecf95d72f57712d1496da03b8c4" dependencies = [ - "arrow", - "arrow-ord", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr-common", - "itertools 0.14.0", - "log", - "paste", + "arrow", + "arrow-ord", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr-common", + "itertools 0.14.0", + "log", + "paste", ] [[package]] @@ -2765,14 +2765,14 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db4fed1d71738fbe22e2712d71396db04c25de4111f1ec252b8f4c6d3b25d7f5" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", - "paste", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", + "paste", ] [[package]] @@ -2781,16 +2781,16 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d92206aa5ae21892f1552b4d61758a862a70956e6fd7a95cb85db1de74bc6d1" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-expr", - "datafusion-functions-window-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "log", - "paste", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-expr", + "datafusion-functions-window-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "log", + "paste", ] [[package]] @@ -2799,8 +2799,8 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53ae9bcc39800820d53a22d758b3b8726ff84a5a3e24cecef04ef4e5fdf1c7cc" dependencies = [ - "datafusion-common", - "datafusion-physical-expr-common", + "datafusion-common", + "datafusion-physical-expr-common", ] [[package]] @@ -2809,9 +2809,9 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1063ad4c9e094b3f798acee16d9a47bd7372d9699be2de21b05c3bd3f34ab848" dependencies = [ - "datafusion-doc", - "quote", - "syn 2.0.114", + "datafusion-doc", + "quote", + "syn 2.0.114", ] [[package]] @@ -2820,18 +2820,18 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f35f9ec5d08b87fd1893a30c2929f2559c2f9806ca072d8fefca5009dc0f06a" dependencies = [ - "arrow", - "chrono", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "recursive", - "regex", - "regex-syntax", + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "recursive", + "regex", + "regex-syntax", ] [[package]] @@ -2840,20 +2840,20 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c30cc8012e9eedcb48bbe112c6eff4ae5ed19cf3003cb0f505662e88b7014c5d" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr-common", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "itertools 0.14.0", - "parking_lot", - "paste", - "petgraph", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr-common", + "half", + "hashbrown 0.14.5", + "indexmap 2.13.0", + "itertools 0.14.0", + "parking_lot", + "paste", + "petgraph", ] [[package]] @@ -2862,13 +2862,13 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f9ff2dbd476221b1f67337699eff432781c4e6e1713d2aefdaa517dfbf79768" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-functions", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "itertools 0.14.0", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-functions", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "itertools 0.14.0", ] [[package]] @@ -2877,12 +2877,12 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "90da43e1ec550b172f34c87ec68161986ced70fd05c8d2a2add66eef9c276f03" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "hashbrown 0.14.5", - "itertools 0.14.0", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr-common", + "hashbrown 0.14.5", + "itertools 0.14.0", ] [[package]] @@ -2891,17 +2891,17 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce9804f799acd7daef3be7aaffe77c0033768ed8fdbf5fb82fc4c5f2e6bc14e6" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "itertools 0.14.0", - "recursive", + "arrow", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "itertools 0.14.0", + "recursive", ] [[package]] @@ -2910,29 +2910,29 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0acf0ad6b6924c6b1aa7d213b181e012e2d3ec0a64ff5b10ee6282ab0f8532ac" dependencies = [ - "ahash", - "arrow", - "arrow-ord", - "arrow-schema", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "futures", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "parking_lot", - "pin-project-lite", - "tokio", + "ahash", + "arrow", + "arrow-ord", + "arrow-schema", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "futures", + "half", + "hashbrown 0.14.5", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "parking_lot", + "pin-project-lite", + "tokio", ] [[package]] @@ -2941,15 +2941,15 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac2c2498a1f134a9e11a9f5ed202a2a7d7e9774bd9249295593053ea3be999db" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-datasource", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "itertools 0.14.0", - "log", + "arrow", + "datafusion-common", + "datafusion-datasource", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "itertools 0.14.0", + "log", ] [[package]] @@ -2958,12 +2958,12 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f96eebd17555386f459037c65ab73aae8df09f464524c709d6a3134ad4f4776" dependencies = [ - "async-trait", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", + "async-trait", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", ] [[package]] @@ -2972,16 +2972,16 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fc195fe60634b2c6ccfd131b487de46dc30eccae8a3c35a13f136e7f440414f" dependencies = [ - "arrow", - "bigdecimal", - "chrono", - "datafusion-common", - "datafusion-expr", - "indexmap 2.13.0", - "log", - "recursive", - "regex", - "sqlparser", + "arrow", + "bigdecimal", + "chrono", + "datafusion-common", + "datafusion-expr", + "indexmap 2.13.0", + "log", + "recursive", + "regex", + "sqlparser", ] [[package]] @@ -2990,7 +2990,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ - "uuid", + "uuid", ] [[package]] @@ -3005,9 +3005,9 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3016,8 +3016,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ - "const-oid 0.9.6", - "zeroize", + "const-oid 0.9.6", + "zeroize", ] [[package]] @@ -3026,9 +3026,9 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ - "const-oid 0.9.6", - "pem-rfc7468 0.7.0", - "zeroize", + "const-oid 0.9.6", + "pem-rfc7468 0.7.0", + "zeroize", ] [[package]] @@ -3037,9 +3037,9 @@ version = "0.8.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02c1d73e9668ea6b6a28172aa55f3ebec38507131ce179051c8033b5c6037653" dependencies = [ - "const-oid 0.10.2", - "pem-rfc7468 1.0.0", - "zeroize", + "const-oid 0.10.2", + "pem-rfc7468 1.0.0", + "zeroize", ] [[package]] @@ -3048,12 +3048,12 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs", - "displaydoc", - "nom 7.1.3", - "num-bigint", - "num-traits", - "rusticata-macros", + "asn1-rs", + "displaydoc", + "nom 7.1.3", + "num-bigint", + "num-traits", + "rusticata-macros", ] [[package]] @@ -3062,8 +3062,8 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" dependencies = [ - "powerfmt", - "serde_core", + "powerfmt", + "serde_core", ] [[package]] @@ -3072,9 +3072,9 @@ version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3083,7 +3083,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" dependencies = [ - "derive_builder_macro 0.12.0", + "derive_builder_macro 0.12.0", ] [[package]] @@ -3092,7 +3092,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" dependencies = [ - "derive_builder_macro 0.20.2", + "derive_builder_macro 0.20.2", ] [[package]] @@ -3101,10 +3101,10 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" dependencies = [ - "darling 0.14.4", - "proc-macro2", - "quote", - "syn 1.0.109", + "darling 0.14.4", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3113,10 +3113,10 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3125,8 +3125,8 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" dependencies = [ - "derive_builder_core 0.12.0", - "syn 1.0.109", + "derive_builder_core 0.12.0", + "syn 1.0.109", ] [[package]] @@ -3135,8 +3135,8 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ - "derive_builder_core 0.20.2", - "syn 2.0.114", + "derive_builder_core 0.20.2", + "syn 2.0.114", ] [[package]] @@ -3145,7 +3145,7 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ - "derive_more-impl", + "derive_more-impl", ] [[package]] @@ -3154,12 +3154,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ - "convert_case", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.114", - "unicode-xid", + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.114", + "unicode-xid", ] [[package]] @@ -3168,7 +3168,7 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512ca722eff02fa73c43e5136f440c46f861d41f9dd7761c1f2817a5ca5d9ad7" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -3183,10 +3183,10 @@ version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer 0.10.4", - "const-oid 0.9.6", - "crypto-common 0.1.7", - "subtle", + "block-buffer 0.10.4", + "const-oid 0.9.6", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -3195,10 +3195,10 @@ version = "0.11.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebf9423bafb058e4142194330c52273c343f8a5beb7176d052f0e73b17dd35b9" dependencies = [ - "block-buffer 0.11.0", - "const-oid 0.10.2", - "crypto-common 0.2.0-rc.9", - "subtle", + "block-buffer 0.11.0", + "const-oid 0.10.2", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -3207,7 +3207,7 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" dependencies = [ - "dirs-sys", + "dirs-sys", ] [[package]] @@ -3216,10 +3216,10 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" dependencies = [ - "libc", - "option-ext", - "redox_users", - "windows-sys 0.61.2", + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", ] [[package]] @@ -3228,9 +3228,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3245,7 +3245,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9" dependencies = [ - "phf 0.11.3", + "phf 0.11.3", ] [[package]] @@ -3264,38 +3264,38 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" name = "e2e_test" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "aws-config", - "aws-sdk-s3", - "base64", - "bytes", - "chrono", - "flatbuffers", - "futures", - "md5 0.8.0", - "rand 0.10.0-rc.6", - "rcgen", - "reqwest", - "rmp-serde", - "rustfs-common", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-protos", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "serial_test", - "suppaftp", - "tokio", - "tonic", - "tracing", - "tracing-subscriber", - "url", - "uuid", + "anyhow", + "async-trait", + "aws-config", + "aws-sdk-s3", + "base64", + "bytes", + "chrono", + "flatbuffers", + "futures", + "md5 0.8.0", + "rand 0.10.0-rc.6", + "rcgen", + "reqwest", + "rmp-serde", + "rustfs-common", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-protos", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serial_test", + "suppaftp", + "tokio", + "tonic", + "tracing", + "tracing-subscriber", + "url", + "uuid", ] [[package]] @@ -3304,10 +3304,10 @@ version = "0.14.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" dependencies = [ - "der 0.6.1", - "elliptic-curve 0.12.3", - "rfc6979 0.3.1", - "signature 1.6.4", + "der 0.6.1", + "elliptic-curve 0.12.3", + "rfc6979 0.3.1", + "signature 1.6.4", ] [[package]] @@ -3316,12 +3316,12 @@ version = "0.16.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" dependencies = [ - "der 0.7.10", - "digest 0.10.7", - "elliptic-curve 0.13.8", - "rfc6979 0.4.0", - "signature 2.2.0", - "spki 0.7.3", + "der 0.7.10", + "digest 0.10.7", + "elliptic-curve 0.13.8", + "rfc6979 0.4.0", + "signature 2.2.0", + "spki 0.7.3", ] [[package]] @@ -3330,8 +3330,8 @@ version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ - "pkcs8 0.10.2", - "signature 2.2.0", + "pkcs8 0.10.2", + "signature 2.2.0", ] [[package]] @@ -3340,7 +3340,7 @@ version = "3.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "594435fe09e345ee388e4e8422072ff7dfeca8729389fbd997b3f5504c44cd47" dependencies = [ - "signature 3.0.0-rc.6", + "signature 3.0.0-rc.6", ] [[package]] @@ -3349,13 +3349,13 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ - "curve25519-dalek 4.1.3", - "ed25519 2.2.3", - "rand_core 0.6.4", - "serde", - "sha2 0.10.9", - "subtle", - "zeroize", + "curve25519-dalek 4.1.3", + "ed25519 2.2.3", + "rand_core 0.6.4", + "serde", + "sha2 0.10.9", + "subtle", + "zeroize", ] [[package]] @@ -3364,10 +3364,10 @@ version = "3.0.0-pre.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbef01b6e6a5f913ae480bb34ddd798ce6d358054bebf77177200ec84af61ad5" dependencies = [ - "curve25519-dalek 5.0.0-pre.2", - "ed25519 3.0.0-rc.2", - "sha2 0.11.0-rc.3", - "subtle", + "curve25519-dalek 5.0.0-pre.2", + "ed25519 3.0.0-rc.2", + "sha2 0.11.0-rc.3", + "subtle", ] [[package]] @@ -3382,18 +3382,18 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" dependencies = [ - "base16ct 0.1.1", - "crypto-bigint 0.4.9", - "der 0.6.1", - "digest 0.10.7", - "ff 0.12.1", - "generic-array 0.14.7", - "group 0.12.1", - "pkcs8 0.9.0", - "rand_core 0.6.4", - "sec1 0.3.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "crypto-bigint 0.4.9", + "der 0.6.1", + "digest 0.10.7", + "ff 0.12.1", + "generic-array 0.14.7", + "group 0.12.1", + "pkcs8 0.9.0", + "rand_core 0.6.4", + "sec1 0.3.0", + "subtle", + "zeroize", ] [[package]] @@ -3402,19 +3402,19 @@ version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ - "base16ct 0.2.0", - "crypto-bigint 0.5.5", - "digest 0.10.7", - "ff 0.13.1", - "generic-array 0.14.7", - "group 0.13.0", - "hkdf", - "pem-rfc7468 0.7.0", - "pkcs8 0.10.2", - "rand_core 0.6.4", - "sec1 0.7.3", - "subtle", - "zeroize", + "base16ct 0.2.0", + "crypto-bigint 0.5.5", + "digest 0.10.7", + "ff 0.13.1", + "generic-array 0.14.7", + "group 0.13.0", + "hkdf", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.2", + "rand_core 0.6.4", + "sec1 0.7.3", + "subtle", + "zeroize", ] [[package]] @@ -3423,7 +3423,7 @@ version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -3432,10 +3432,10 @@ version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.114", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3444,7 +3444,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25b07a8dfbbbfc0064c0a6bdf9edcf966de6b1c33ce344bdeca3b41615452634" dependencies = [ - "enumset_derive", + "enumset_derive", ] [[package]] @@ -3453,10 +3453,10 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f43e744e4ea338060faee68ed933e46e722fb7f3617e722a5772d7e856d8b3ce" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3465,7 +3465,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "log", + "log", ] [[package]] @@ -3474,8 +3474,8 @@ version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ - "env_filter", - "log", + "env_filter", + "log", ] [[package]] @@ -3484,7 +3484,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" dependencies = [ - "equator-macro", + "equator-macro", ] [[package]] @@ -3493,9 +3493,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3510,7 +3510,7 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -3519,9 +3519,9 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" dependencies = [ - "serde", - "serde_core", - "typeid", + "serde", + "serde_core", + "typeid", ] [[package]] @@ -3530,8 +3530,8 @@ version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ - "libc", - "windows-sys 0.61.2", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -3540,9 +3540,9 @@ version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] @@ -3551,8 +3551,8 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener", - "pin-project-lite", + "event-listener", + "pin-project-lite", ] [[package]] @@ -3561,8 +3561,8 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73" dependencies = [ - "heapless", - "serde", + "heapless", + "serde", ] [[package]] @@ -3577,8 +3577,8 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3587,8 +3587,8 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3609,10 +3609,10 @@ version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.60.2", + "cfg-if", + "libc", + "libredox", + "windows-sys 0.60.2", ] [[package]] @@ -3627,10 +3627,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" dependencies = [ - "cc", - "lazy_static", - "libc", - "winapi", + "cc", + "lazy_static", + "libc", + "winapi", ] [[package]] @@ -3645,19 +3645,19 @@ version = "25.12.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" dependencies = [ - "bitflags 2.10.0", - "rustc_version", + "bitflags 2.10.0", + "rustc_version", ] [[package]] name = "flate2" -version = "1.1.5" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" +checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369" dependencies = [ - "crc32fast", - "libz-rs-sys", - "miniz_oxide", + "crc32fast", + "miniz_oxide", + "zlib-rs", ] [[package]] @@ -3666,21 +3666,21 @@ version = "0.31.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31e5335674a3a259527f97e9176a3767dcc9b220b8e29d643daeb2d6c72caf8b" dependencies = [ - "chrono", - "crossbeam-channel", - "crossbeam-queue", - "flate2", - "log", - "notify-debouncer-mini", - "nu-ansi-term", - "regex", - "serde", - "serde_derive", - "serde_json", - "thiserror 2.0.17", - "toml", - "tracing", - "tracing-subscriber", + "chrono", + "crossbeam-channel", + "crossbeam-queue", + "flate2", + "log", + "notify-debouncer-mini", + "nu-ansi-term", + "regex", + "serde", + "serde_derive", + "serde_json", + "thiserror 2.0.17", + "toml", + "tracing", + "tracing-subscriber", ] [[package]] @@ -3689,9 +3689,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ - "futures-core", - "futures-sink", - "spin 0.9.8", + "futures-core", + "futures-sink", + "spin 0.9.8", ] [[package]] @@ -3700,10 +3700,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf5efcf77a4da27927d3ab0509dec5b0954bb3bc59da5a1de9e52642ebd4cdf9" dependencies = [ - "ahash", - "num_cpus", - "parking_lot", - "seize", + "ahash", + "num_cpus", + "parking_lot", + "seize", ] [[package]] @@ -3730,7 +3730,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ - "percent-encoding", + "percent-encoding", ] [[package]] @@ -3739,8 +3739,8 @@ version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf68cef89750956493a66a10f512b9e58d9db21f2a573c079c0bdf1207a54a7" dependencies = [ - "autocfg", - "tokio", + "autocfg", + "tokio", ] [[package]] @@ -3755,7 +3755,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" dependencies = [ - "libc", + "libc", ] [[package]] @@ -3764,13 +3764,13 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] @@ -3779,8 +3779,8 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ - "futures-core", - "futures-sink", + "futures-core", + "futures-sink", ] [[package]] @@ -3795,9 +3795,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ - "futures-core", - "futures-task", - "futures-util", + "futures-core", + "futures-task", + "futures-util", ] [[package]] @@ -3812,11 +3812,11 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ - "fastrand", - "futures-core", - "futures-io", - "parking", - "pin-project-lite", + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", ] [[package]] @@ -3825,9 +3825,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3854,16 +3854,16 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", ] [[package]] @@ -3872,9 +3872,9 @@ version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ - "typenum", - "version_check", - "zeroize", + "typenum", + "version_check", + "zeroize", ] [[package]] @@ -3883,9 +3883,9 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542" dependencies = [ - "generic-array 0.14.7", - "rustversion", - "typenum", + "generic-array 0.14.7", + "rustversion", + "typenum", ] [[package]] @@ -3894,11 +3894,11 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", ] [[package]] @@ -3907,12 +3907,12 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "r-efi", - "wasip2", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", ] [[package]] @@ -3921,11 +3921,11 @@ version = "0.4.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b99f0d993a2b9b97b9a201193aa8ad21305cde06a3be9a7e1f8f4201e5cc27e" dependencies = [ - "cfg-if", - "libc", - "r-efi", - "rand_core 0.10.0-rc-3", - "wasip2", + "cfg-if", + "libc", + "r-efi", + "rand_core 0.10.0-rc-3", + "wasip2", ] [[package]] @@ -3934,10 +3934,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912" dependencies = [ - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3946,8 +3946,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" dependencies = [ - "opaque-debug", - "polyval 0.6.2", + "opaque-debug", + "polyval 0.6.2", ] [[package]] @@ -3956,7 +3956,7 @@ version = "0.6.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "333de57ed9494a40df4bbb866752b100819dde0d18f2264c48f5a08a85fe673d" dependencies = [ - "polyval 0.7.0-rc.3", + "polyval 0.7.0-rc.3", ] [[package]] @@ -3977,21 +3977,21 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "590a1c28795779d5da6fda35b149d5271bcddcf2ce1709eae9e9460faf2f2aa9" dependencies = [ - "async-trait", - "base64", - "bon", - "bytes", - "google-cloud-gax", - "http 1.4.0", - "reqwest", - "rustc_version", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", + "async-trait", + "base64", + "bon", + "bytes", + "google-cloud-gax", + "http 1.4.0", + "reqwest", + "rustc_version", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", ] [[package]] @@ -4000,18 +4000,18 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "324fb97d35103787e80a33ed41ccc43d947c376d2ece68ca53e860f5844dbe24" dependencies = [ - "base64", - "bytes", - "futures", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "pin-project", - "rand 0.9.2", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", + "base64", + "bytes", + "futures", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "pin-project", + "rand 0.9.2", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", ] [[package]] @@ -4020,32 +4020,32 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b75b810886ae872aca68a35ad1d4d5e8f2be39e40238116d8aff9d778f04b38" dependencies = [ - "bytes", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "opentelemetry-semantic-conventions", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "rustc_version", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tonic-prost", - "tower", - "tracing", + "bytes", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "opentelemetry-semantic-conventions", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "rustc_version", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tonic-prost", + "tower", + "tracing", ] [[package]] @@ -4054,18 +4054,18 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "498a68e2a958e8aa9938f7db2c7147aad1b5a0ff2cd47c5ba4e10cb0dcb5bfc5" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-type", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-type", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4074,18 +4074,18 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c80938e704401a47fdf36b51ec10e1a99b1ec22793d607afd0e67c7b675b8b3" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-rpc", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-rpc", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4094,12 +4094,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49747b7b684b804a2d1040c2cdb21238b3d568a41ab9e36c423554509112f61d" dependencies = [ - "google-cloud-gax", - "google-cloud-longrunning", - "google-cloud-rpc", - "google-cloud-wkt", - "serde", - "tokio", + "google-cloud-gax", + "google-cloud-longrunning", + "google-cloud-rpc", + "google-cloud-wkt", + "serde", + "tokio", ] [[package]] @@ -4108,11 +4108,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd10e97751ca894f9dad6be69fcef1cb72f5bc187329e0254817778fc8235030" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4121,41 +4121,41 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "043be824d1b105bfdce786c720e45cae04e66436f8e5d0168e98ca8e5715ce9f" dependencies = [ - "async-trait", - "base64", - "bytes", - "crc32c", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-iam-v1", - "google-cloud-longrunning", - "google-cloud-lro", - "google-cloud-rpc", - "google-cloud-type", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "lazy_static", - "md5 0.8.0", - "mime", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "serde", - "serde_json", - "serde_with", - "sha2 0.10.9", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tracing", - "uuid", + "async-trait", + "base64", + "bytes", + "crc32c", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-iam-v1", + "google-cloud-longrunning", + "google-cloud-lro", + "google-cloud-rpc", + "google-cloud-type", + "google-cloud-wkt", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "lazy_static", + "md5 0.8.0", + "mime", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "serde", + "serde_json", + "serde_with", + "sha2 0.10.9", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tracing", + "uuid", ] [[package]] @@ -4164,11 +4164,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9390ac2f3f9882ff42956b25ea65b9f546c8dd44c131726d75a96bf744ec75f6" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4177,14 +4177,14 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6f270e404be7ce76a3260abe0c3c71492ab2599ccd877f3253f3dd552f48cc9" dependencies = [ - "base64", - "bytes", - "serde", - "serde_json", - "serde_with", - "thiserror 2.0.17", - "time", - "url", + "base64", + "bytes", + "serde", + "serde_json", + "serde_with", + "thiserror 2.0.17", + "time", + "url", ] [[package]] @@ -4193,9 +4193,9 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" dependencies = [ - "ff 0.12.1", - "rand_core 0.6.4", - "subtle", + "ff 0.12.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4204,9 +4204,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ - "ff 0.13.1", - "rand_core 0.6.4", - "subtle", + "ff 0.13.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4215,17 +4215,17 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.4.0", - "indexmap 2.13.0", - "slab", - "tokio", - "tokio-util", - "tracing", + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.4.0", + "indexmap 2.13.0", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -4234,10 +4234,10 @@ version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" dependencies = [ - "cfg-if", - "crunchy", - "num-traits", - "zerocopy", + "cfg-if", + "crunchy", + "num-traits", + "zerocopy", ] [[package]] @@ -4246,7 +4246,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" dependencies = [ - "byteorder", + "byteorder", ] [[package]] @@ -4261,8 +4261,8 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash", - "allocator-api2", + "ahash", + "allocator-api2", ] [[package]] @@ -4271,9 +4271,9 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.1.5", + "allocator-api2", + "equivalent", + "foldhash 0.1.5", ] [[package]] @@ -4282,12 +4282,12 @@ version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.2.0", - "rayon", - "serde", - "serde_core", + "allocator-api2", + "equivalent", + "foldhash 0.2.0", + "rayon", + "serde", + "serde_core", ] [[package]] @@ -4296,9 +4296,9 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74d9ba66d1739c68e0219b2b2238b5c4145f491ebf181b9c6ab561a19352ae86" dependencies = [ - "hax-lib-macros", - "num-bigint", - "num-traits", + "hax-lib-macros", + "num-bigint", + "num-traits", ] [[package]] @@ -4307,11 +4307,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24ba777a231a58d1bce1d68313fa6b6afcc7966adef23d60f45b8a2b9b688bf1" dependencies = [ - "hax-lib-macros-types", - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "hax-lib-macros-types", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -4320,11 +4320,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "867e19177d7425140b417cd27c2e05320e727ee682e98368f88b7194e80ad515" dependencies = [ - "proc-macro2", - "quote", - "serde", - "serde_json", - "uuid", + "proc-macro2", + "quote", + "serde", + "serde_json", + "uuid", ] [[package]] @@ -4333,8 +4333,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" dependencies = [ - "hash32", - "stable_deref_trait", + "hash32", + "stable_deref_trait", ] [[package]] @@ -4349,17 +4349,17 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a56c94661ddfb51aa9cdfbf102cfcc340aa69267f95ebccc4af08d7c530d393" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "heed-traits", - "heed-types", - "libc", - "lmdb-master-sys", - "once_cell", - "page_size", - "serde", - "synchronoise", - "url", + "bitflags 2.10.0", + "byteorder", + "heed-traits", + "heed-types", + "libc", + "lmdb-master-sys", + "once_cell", + "page_size", + "serde", + "synchronoise", + "url", ] [[package]] @@ -4374,11 +4374,11 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c255bdf46e07fb840d120a36dcc81f385140d7191c76a7391672675c01a55d" dependencies = [ - "bincode", - "byteorder", - "heed-traits", - "serde", - "serde_json", + "bincode", + "byteorder", + "heed-traits", + "serde", + "serde_json", ] [[package]] @@ -4405,8 +4405,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f7685beb53fc20efc2605f32f5d51e9ba18b8ef237961d1760169d2290d3bee" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -4421,7 +4421,7 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ - "hmac 0.12.1", + "hmac 0.12.1", ] [[package]] @@ -4430,7 +4430,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -4439,7 +4439,7 @@ version = "0.13.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1c597ac7d6cc8143e30e83ef70915e7f883b18d8bec2e2b2bce47f5bbb06d57" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -4448,7 +4448,7 @@ version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -4457,9 +4457,9 @@ version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ - "bytes", - "fnv", - "itoa", + "bytes", + "fnv", + "itoa", ] [[package]] @@ -4468,8 +4468,8 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ - "bytes", - "itoa", + "bytes", + "itoa", ] [[package]] @@ -4478,9 +4478,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ - "bytes", - "http 0.2.12", - "pin-project-lite", + "bytes", + "http 0.2.12", + "pin-project-lite", ] [[package]] @@ -4489,8 +4489,8 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ - "bytes", - "http 1.4.0", + "bytes", + "http 1.4.0", ] [[package]] @@ -4499,11 +4499,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "pin-project-lite", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "pin-project-lite", ] [[package]] @@ -4530,8 +4530,8 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0" dependencies = [ - "typenum", - "zeroize", + "typenum", + "zeroize", ] [[package]] @@ -4540,21 +4540,21 @@ version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "pin-utils", - "smallvec", - "tokio", - "want", + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", ] [[package]] @@ -4563,17 +4563,17 @@ version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "http 1.4.0", - "hyper", - "hyper-util", - "log", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", + "http 1.4.0", + "hyper", + "hyper-util", + "log", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", ] [[package]] @@ -4582,11 +4582,11 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper", - "hyper-util", - "pin-project-lite", - "tokio", - "tower-service", + "hyper", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", ] [[package]] @@ -4595,24 +4595,24 @@ version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ - "base64", - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "system-configuration", - "tokio", - "tower-service", - "tracing", - "windows-registry", + "base64", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", ] [[package]] @@ -4621,13 +4621,13 @@ version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core 0.62.2", + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", ] [[package]] @@ -4636,7 +4636,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "cc", + "cc", ] [[package]] @@ -4645,11 +4645,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", ] [[package]] @@ -4658,11 +4658,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", ] [[package]] @@ -4671,12 +4671,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", ] [[package]] @@ -4691,12 +4691,12 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "zerotrie", - "zerovec", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", ] [[package]] @@ -4711,13 +4711,13 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" dependencies = [ - "displaydoc", - "icu_locale_core", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", ] [[package]] @@ -4732,9 +4732,9 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", + "idna_adapter", + "smallvec", + "utf8_iter", ] [[package]] @@ -4743,8 +4743,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "icu_normalizer", - "icu_properties", + "icu_normalizer", + "icu_properties", ] [[package]] @@ -4753,9 +4753,9 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", + "autocfg", + "hashbrown 0.12.3", + "serde", ] [[package]] @@ -4764,10 +4764,10 @@ version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ - "equivalent", - "hashbrown 0.16.1", - "serde", - "serde_core", + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", ] [[package]] @@ -4776,16 +4776,16 @@ version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" dependencies = [ - "ahash", - "indexmap 2.13.0", - "is-terminal", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.26.0", - "rgb", - "str_stack", + "ahash", + "indexmap 2.13.0", + "is-terminal", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.26.0", + "rgb", + "str_stack", ] [[package]] @@ -4794,20 +4794,20 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d35223c50fdd26419a4ccea2c73be68bd2b29a3d7d6123ffe101c17f4c20a52a" dependencies = [ - "ahash", - "clap", - "crossbeam-channel", - "crossbeam-utils", - "dashmap", - "env_logger", - "indexmap 2.13.0", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.38.4", - "rgb", - "str_stack", + "ahash", + "clap", + "crossbeam-channel", + "crossbeam-utils", + "dashmap", + "env_logger", + "indexmap 2.13.0", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.38.4", + "rgb", + "str_stack", ] [[package]] @@ -4816,9 +4816,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" dependencies = [ - "bitflags 2.10.0", - "inotify-sys", - "libc", + "bitflags 2.10.0", + "inotify-sys", + "libc", ] [[package]] @@ -4827,7 +4827,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" dependencies = [ - "libc", + "libc", ] [[package]] @@ -4836,8 +4836,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "block-padding", - "generic-array 0.14.7", + "block-padding", + "generic-array 0.14.7", ] [[package]] @@ -4846,7 +4846,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ - "hybrid-array", + "hybrid-array", ] [[package]] @@ -4861,29 +4861,29 @@ version = "0.6.16+upstream-0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe44f2bbd99fcb302e246e2d6bcf51aeda346d02a365f80296a07a8c711b6da6" dependencies = [ - "argon2 0.5.3", - "bcrypt-pbkdf", - "digest 0.11.0-rc.5", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "hex", - "hmac 0.12.1", - "num-bigint-dig", - "p256 0.13.2", - "p384", - "p521", - "rand_core 0.6.4", - "rsa", - "sec1 0.7.3", - "sha1 0.10.6", - "sha1 0.11.0-rc.3", - "sha2 0.10.9", - "signature 2.2.0", - "signature 3.0.0-rc.6", - "ssh-cipher 0.2.0", - "ssh-encoding 0.2.0", - "subtle", - "zeroize", + "argon2 0.5.3", + "bcrypt-pbkdf", + "digest 0.11.0-rc.5", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "hex", + "hmac 0.12.1", + "num-bigint-dig", + "p256 0.13.2", + "p384", + "p521", + "rand_core 0.6.4", + "rsa", + "sec1 0.7.3", + "sha1 0.10.6", + "sha1 0.11.0-rc.3", + "sha2 0.10.9", + "signature 2.2.0", + "signature 3.0.0-rc.6", + "ssh-cipher 0.2.0", + "ssh-encoding 0.2.0", + "subtle", + "zeroize", ] [[package]] @@ -4898,7 +4898,7 @@ version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763" dependencies = [ - "serde", + "serde", ] [[package]] @@ -4907,8 +4907,8 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -4917,9 +4917,9 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.61.2", + "hermit-abi", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -4940,7 +4940,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ - "either", + "either", ] [[package]] @@ -4949,7 +4949,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ - "either", + "either", ] [[package]] @@ -4964,15 +4964,15 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74ff642505c7ce8d31c0d43ec0e235c6fd4585d9b8172d8f9dd04d36590200b5" dependencies = [ - "anyhow", - "libc", - "mappings", - "once_cell", - "pprof_util", - "tempfile", - "tikv-jemalloc-ctl", - "tokio", - "tracing", + "anyhow", + "libc", + "mappings", + "once_cell", + "pprof_util", + "tempfile", + "tikv-jemalloc-ctl", + "tokio", + "tracing", ] [[package]] @@ -4981,8 +4981,8 @@ version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ - "getrandom 0.3.4", - "libc", + "getrandom 0.3.4", + "libc", ] [[package]] @@ -4991,8 +4991,8 @@ version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" dependencies = [ - "once_cell", - "wasm-bindgen", + "once_cell", + "wasm-bindgen", ] [[package]] @@ -5001,15 +5001,15 @@ version = "10.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e" dependencies = [ - "aws-lc-rs", - "base64", - "getrandom 0.2.17", - "js-sys", - "pem", - "serde", - "serde_json", - "signature 2.2.0", - "simple_asn1", + "aws-lc-rs", + "base64", + "getrandom 0.2.17", + "js-sys", + "pem", + "serde", + "serde_json", + "signature 2.2.0", + "simple_asn1", ] [[package]] @@ -5018,8 +5018,8 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" dependencies = [ - "kqueue-sys", - "libc", + "kqueue-sys", + "libc", ] [[package]] @@ -5028,8 +5028,8 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" dependencies = [ - "bitflags 1.3.2", - "libc", + "bitflags 1.3.2", + "libc", ] [[package]] @@ -5038,9 +5038,9 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5c13b6857ade4c8ee05c3c3dc97d2ab5415d691213825b90d3211c425c1f907" dependencies = [ - "lazy-regex-proc_macros", - "once_cell", - "regex", + "lazy-regex-proc_macros", + "once_cell", + "regex", ] [[package]] @@ -5049,10 +5049,10 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a95c68db5d41694cea563c86a4ba4dc02141c16ef64814108cb23def4d5438" dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.114", + "proc-macro2", + "quote", + "regex", + "syn 2.0.114", ] [[package]] @@ -5061,7 +5061,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin 0.9.8", ] [[package]] @@ -5070,11 +5070,11 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" dependencies = [ - "lexical-parse-float", - "lexical-parse-integer", - "lexical-util", - "lexical-write-float", - "lexical-write-integer", + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", ] [[package]] @@ -5083,8 +5083,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" dependencies = [ - "lexical-parse-integer", - "lexical-util", + "lexical-parse-integer", + "lexical-util", ] [[package]] @@ -5093,7 +5093,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5108,8 +5108,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" dependencies = [ - "lexical-util", - "lexical-write-integer", + "lexical-util", + "lexical-write-integer", ] [[package]] @@ -5118,7 +5118,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5139,8 +5139,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc9ee7ef66569dd7516454fe26de4e401c0c62073929803486b96744594b9632" dependencies = [ - "core-models", - "hax-lib", + "core-models", + "hax-lib", ] [[package]] @@ -5149,14 +5149,14 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bb6a88086bf11bd2ec90926c749c4a427f2e59841437dbdede8cde8a96334ab" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-secrets", - "libcrux-sha3", - "libcrux-traits", - "rand 0.9.2", - "tls_codec", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-secrets", + "libcrux-sha3", + "libcrux-traits", + "rand 0.9.2", + "tls_codec", ] [[package]] @@ -5165,7 +5165,7 @@ version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db82d058aa76ea315a3b2092f69dfbd67ddb0e462038a206e1dcd73f058c0778" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5174,7 +5174,7 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e4dbbf6bc9f2bc0f20dc3bea3e5c99adff3bdccf6d2a40488963da69e2ec307" dependencies = [ - "hax-lib", + "hax-lib", ] [[package]] @@ -5183,10 +5183,10 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2400bec764d1c75b8a496d5747cffe32f1fb864a12577f0aca2f55a92021c962" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-traits", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-traits", ] [[package]] @@ -5195,8 +5195,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9adfd58e79d860f6b9e40e35127bfae9e5bd3ade33201d1347459011a2add034" dependencies = [ - "libcrux-secrets", - "rand 0.9.2", + "libcrux-secrets", + "rand 0.9.2", ] [[package]] @@ -5205,8 +5205,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ - "cfg-if", - "windows-link 0.2.1", + "cfg-if", + "windows-link 0.2.1", ] [[package]] @@ -5221,8 +5221,8 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5231,9 +5231,9 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" dependencies = [ - "bitflags 2.10.0", - "libc", - "redox_syscall 0.7.0", + "bitflags 2.10.0", + "libc", + "redox_syscall 0.7.0", ] [[package]] @@ -5242,16 +5242,16 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19c97a761fc86953c5b885422b22c891dbf5bcb9dcc99d0110d6ce4c052759f0" dependencies = [ - "hmac 0.12.1", - "libc", - "log", - "nix 0.29.0", - "nom 8.0.0", - "once_cell", - "serde", - "sha2 0.10.9", - "thiserror 2.0.17", - "uuid", + "hmac 0.12.1", + "libc", + "log", + "nix 0.29.0", + "nom 8.0.0", + "once_cell", + "serde", + "sha2 0.10.9", + "thiserror 2.0.17", + "uuid", ] [[package]] @@ -5260,42 +5260,33 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8270fae0f77279620962f533153fa727a9cf9485dbb79d47eed3086d42b17264" dependencies = [ - "async-trait", - "bitflags 2.10.0", - "bytes", - "chrono", - "dashmap", - "derive_more", - "futures-util", - "getrandom 0.3.4", - "lazy_static", - "libc", - "md-5 0.10.6", - "moka", - "nix 0.29.0", - "prometheus", - "proxy-protocol", - "rustls", - "rustls-pemfile", - "slog", - "slog-stdlog", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-util", - "tracing", - "tracing-attributes", - "uuid", - "x509-parser 0.17.0", -] - -[[package]] -name = "libz-rs-sys" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c10501e7805cee23da17c7790e59df2870c0d4043ec6d03f67d31e2b53e77415" -dependencies = [ - "zlib-rs", + "async-trait", + "bitflags 2.10.0", + "bytes", + "chrono", + "dashmap", + "derive_more", + "futures-util", + "getrandom 0.3.4", + "lazy_static", + "libc", + "md-5 0.10.6", + "moka", + "nix 0.29.0", + "prometheus", + "proxy-protocol", + "rustls", + "rustls-pemfile", + "slog", + "slog-stdlog", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-util", + "tracing", + "tracing-attributes", + "uuid", + "x509-parser 0.17.0", ] [[package]] @@ -5322,9 +5313,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "864808e0b19fb6dd3b70ba94ee671b82fce17554cf80aeb0a155c65bb08027df" dependencies = [ - "cc", - "doxygen-rs", - "libc", + "cc", + "doxygen-rs", + "libc", ] [[package]] @@ -5333,10 +5324,10 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a60bf300a990b2d1ebdde4228e873e8e4da40d834adbf5265f3da1457ede652" dependencies = [ - "libc", - "neli", - "thiserror 2.0.17", - "windows-sys 0.61.2", + "libc", + "neli", + "thiserror 2.0.17", + "windows-sys 0.61.2", ] [[package]] @@ -5345,7 +5336,7 @@ version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "scopeguard", + "scopeguard", ] [[package]] @@ -5354,8 +5345,8 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" dependencies = [ - "serde_core", - "value-bag", + "serde_core", + "value-bag", ] [[package]] @@ -5364,7 +5355,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.15.5", ] [[package]] @@ -5379,7 +5370,7 @@ version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ - "lz4-sys", + "lz4-sys", ] [[package]] @@ -5388,8 +5379,8 @@ version = "1.11.1+lz4-1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5398,7 +5389,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab6473172471198271ff72e9379150e9dfd70d8e533e0752a27e515b48dd375e" dependencies = [ - "twox-hash", + "twox-hash", ] [[package]] @@ -5407,8 +5398,8 @@ version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fa48f5024824ecd3e8282cc948bd46fbd095aed5a98939de0594601a59b4e2b" dependencies = [ - "crc", - "sha2 0.10.9", + "crc", + "sha2 0.10.9", ] [[package]] @@ -5417,9 +5408,9 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" dependencies = [ - "cc", - "libc", - "pkg-config", + "cc", + "libc", + "pkg-config", ] [[package]] @@ -5428,11 +5419,11 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db4d277bb50d4508057e7bddd7fcd19ef4a4cc38051b6a5a36868d75ae2cbeb9" dependencies = [ - "anyhow", - "libc", - "once_cell", - "pprof_util", - "tracing", + "anyhow", + "libc", + "once_cell", + "pprof_util", + "tracing", ] [[package]] @@ -5441,7 +5432,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" dependencies = [ - "regex-automata", + "regex-automata", ] [[package]] @@ -5462,8 +5453,8 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ - "cfg-if", - "digest 0.10.7", + "cfg-if", + "digest 0.10.7", ] [[package]] @@ -5472,8 +5463,8 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64dd2c9099caf8e29b629305199dddb1c6d981562b62c089afea54b0b4b5c333" dependencies = [ - "cfg-if", - "digest 0.11.0-rc.5", + "cfg-if", + "digest 0.11.0-rc.5", ] [[package]] @@ -5500,7 +5491,7 @@ version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5509,7 +5500,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ - "autocfg", + "autocfg", ] [[package]] @@ -5518,8 +5509,8 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" dependencies = [ - "ahash", - "portable-atomic", + "ahash", + "portable-atomic", ] [[package]] @@ -5528,7 +5519,7 @@ version = "0.1.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" dependencies = [ - "libmimalloc-sys", + "libmimalloc-sys", ] [[package]] @@ -5543,8 +5534,8 @@ version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ - "mime", - "unicase", + "mime", + "unicase", ] [[package]] @@ -5559,8 +5550,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ - "adler2", - "simd-adler32", + "adler2", + "simd-adler32", ] [[package]] @@ -5569,10 +5560,10 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ - "libc", - "log", - "wasi", - "windows-sys 0.61.2", + "libc", + "log", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -5581,18 +5572,18 @@ version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3dec6bd31b08944e08b58fd99373893a6c17054d6f3ea5006cc894f4f4eee2a" dependencies = [ - "async-lock", - "crossbeam-channel", - "crossbeam-epoch", - "crossbeam-utils", - "equivalent", - "event-listener", - "futures-util", - "parking_lot", - "portable-atomic", - "smallvec", - "tagptr", - "uuid", + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "event-listener", + "futures-util", + "parking_lot", + "portable-atomic", + "smallvec", + "tagptr", + "uuid", ] [[package]] @@ -5607,14 +5598,14 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e23bebbf3e157c402c4d5ee113233e5e0610cc27453b2f07eefce649c7365dcc" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "derive_builder 0.20.2", - "getset", - "libc", - "log", - "neli-proc-macros", - "parking_lot", + "bitflags 2.10.0", + "byteorder", + "derive_builder 0.20.2", + "getset", + "libc", + "log", + "neli-proc-macros", + "parking_lot", ] [[package]] @@ -5623,11 +5614,11 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609" dependencies = [ - "either", - "proc-macro2", - "quote", - "serde", - "syn 2.0.114", + "either", + "proc-macro2", + "quote", + "serde", + "syn 2.0.114", ] [[package]] @@ -5636,8 +5627,8 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29a01b9f018d6b7b277fef6c79fdbd9bf17bb2d1e298238055cafab49baa5ee" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -5646,9 +5637,9 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc", + "bitflags 1.3.2", + "cfg-if", + "libc", ] [[package]] @@ -5657,11 +5648,11 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", - "memoffset", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", ] [[package]] @@ -5670,10 +5661,10 @@ version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", ] [[package]] @@ -5682,8 +5673,8 @@ version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "memchr", - "minimal-lexical", + "memchr", + "minimal-lexical", ] [[package]] @@ -5692,7 +5683,7 @@ version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5701,16 +5692,16 @@ version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" dependencies = [ - "bitflags 2.10.0", - "fsevent-sys", - "inotify", - "kqueue", - "libc", - "log", - "mio", - "notify-types", - "walkdir", - "windows-sys 0.60.2", + "bitflags 2.10.0", + "fsevent-sys", + "inotify", + "kqueue", + "libc", + "log", + "mio", + "notify-types", + "walkdir", + "windows-sys 0.60.2", ] [[package]] @@ -5719,10 +5710,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8" dependencies = [ - "log", - "notify", - "notify-types", - "tempfile", + "log", + "notify", + "notify-types", + "tempfile", ] [[package]] @@ -5737,7 +5728,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" dependencies = [ - "winapi", + "winapi", ] [[package]] @@ -5746,7 +5737,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -5755,12 +5746,12 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ - "num-bigint", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", ] [[package]] @@ -5769,9 +5760,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "num-integer", - "num-traits", - "rand 0.8.5", + "num-integer", + "num-traits", + "rand 0.8.5", ] [[package]] @@ -5780,14 +5771,14 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" dependencies = [ - "lazy_static", - "libm", - "num-integer", - "num-iter", - "num-traits", - "rand 0.8.5", - "serde", - "smallvec", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.5", + "serde", + "smallvec", ] [[package]] @@ -5796,7 +5787,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5811,8 +5802,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec", - "itoa", + "arrayvec", + "itoa", ] [[package]] @@ -5821,7 +5812,7 @@ version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5830,9 +5821,9 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg", - "num-integer", - "num-traits", + "autocfg", + "num-integer", + "num-traits", ] [[package]] @@ -5841,9 +5832,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "num-bigint", - "num-integer", - "num-traits", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -5852,8 +5843,8 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg", - "libm", + "autocfg", + "libm", ] [[package]] @@ -5862,8 +5853,8 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi", - "libc", + "hermit-abi", + "libc", ] [[package]] @@ -5872,7 +5863,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5887,12 +5878,12 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d5c6c0ef9702176a570f06ad94f3198bc29c524c8b498f1b9346e1b1bdcbb3a" dependencies = [ - "bitflags 2.10.0", - "libloading", - "nvml-wrapper-sys", - "static_assertions", - "thiserror 1.0.69", - "wrapcenum-derive", + "bitflags 2.10.0", + "libloading", + "nvml-wrapper-sys", + "static_assertions", + "thiserror 1.0.69", + "wrapcenum-derive", ] [[package]] @@ -5901,7 +5892,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd23dbe2eb8d8335d2bce0299e0a07d6a63c089243d626ca75b770a962ff49e6" dependencies = [ - "libloading", + "libloading", ] [[package]] @@ -5910,7 +5901,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -5919,8 +5910,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15" dependencies = [ - "libc", - "objc2-core-foundation", + "libc", + "objc2-core-foundation", ] [[package]] @@ -5929,7 +5920,7 @@ version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5938,7 +5929,7 @@ version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5947,22 +5938,22 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740" dependencies = [ - "async-trait", - "bytes", - "chrono", - "futures", - "http 1.4.0", - "humantime", - "itertools 0.14.0", - "parking_lot", - "percent-encoding", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "walkdir", - "wasm-bindgen-futures", - "web-time", + "async-trait", + "bytes", + "chrono", + "futures", + "http 1.4.0", + "humantime", + "itertools 0.14.0", + "parking_lot", + "percent-encoding", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "walkdir", + "wasm-bindgen-futures", + "web-time", ] [[package]] @@ -5971,7 +5962,7 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs", + "asn1-rs", ] [[package]] @@ -6010,12 +6001,12 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0" dependencies = [ - "futures-core", - "futures-sink", - "js-sys", - "pin-project-lite", - "thiserror 2.0.17", - "tracing", + "futures-core", + "futures-sink", + "js-sys", + "pin-project-lite", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -6024,12 +6015,12 @@ version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2" dependencies = [ - "opentelemetry", - "tracing", - "tracing-core", - "tracing-log", - "tracing-opentelemetry", - "tracing-subscriber", + "opentelemetry", + "tracing", + "tracing-core", + "tracing-log", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] @@ -6038,11 +6029,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d" dependencies = [ - "async-trait", - "bytes", - "http 1.4.0", - "opentelemetry", - "reqwest", + "async-trait", + "bytes", + "http 1.4.0", + "opentelemetry", + "reqwest", ] [[package]] @@ -6051,16 +6042,16 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf" dependencies = [ - "flate2", - "http 1.4.0", - "opentelemetry", - "opentelemetry-http", - "opentelemetry-proto", - "opentelemetry_sdk", - "prost 0.14.3", - "reqwest", - "thiserror 2.0.17", - "tracing", + "flate2", + "http 1.4.0", + "opentelemetry", + "opentelemetry-http", + "opentelemetry-proto", + "opentelemetry_sdk", + "prost 0.14.3", + "reqwest", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -6069,11 +6060,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f" dependencies = [ - "opentelemetry", - "opentelemetry_sdk", - "prost 0.14.3", - "tonic", - "tonic-prost", + "opentelemetry", + "opentelemetry_sdk", + "prost 0.14.3", + "tonic", + "tonic-prost", ] [[package]] @@ -6088,9 +6079,9 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc8887887e169414f637b18751487cce4e095be787d23fad13c454e2fb1b3811" dependencies = [ - "chrono", - "opentelemetry", - "opentelemetry_sdk", + "chrono", + "opentelemetry", + "opentelemetry_sdk", ] [[package]] @@ -6099,15 +6090,15 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd" dependencies = [ - "futures-channel", - "futures-executor", - "futures-util", - "opentelemetry", - "percent-encoding", - "rand 0.9.2", - "thiserror 2.0.17", - "tokio", - "tokio-stream", + "futures-channel", + "futures-executor", + "futures-util", + "opentelemetry", + "percent-encoding", + "rand 0.9.2", + "thiserror 2.0.17", + "tokio", + "tokio-stream", ] [[package]] @@ -6122,7 +6113,7 @@ version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -6137,9 +6128,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ - "ecdsa 0.14.8", - "elliptic-curve 0.12.3", - "sha2 0.10.9", + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.9", ] [[package]] @@ -6148,10 +6139,10 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6160,10 +6151,10 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6172,12 +6163,12 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" dependencies = [ - "base16ct 0.2.0", - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "rand_core 0.6.4", - "sha2 0.10.9", + "base16ct 0.2.0", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "rand_core 0.6.4", + "sha2 0.10.9", ] [[package]] @@ -6186,8 +6177,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -6196,17 +6187,17 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595" dependencies = [ - "byteorder", - "bytes", - "delegate", - "futures", - "log", - "rand 0.8.5", - "sha2 0.10.9", - "thiserror 1.0.69", - "tokio", - "windows 0.62.2", - "windows-strings 0.5.1", + "byteorder", + "bytes", + "delegate", + "futures", + "log", + "rand 0.8.5", + "sha2 0.10.9", + "thiserror 1.0.69", + "tokio", + "windows 0.62.2", + "windows-strings 0.5.1", ] [[package]] @@ -6221,8 +6212,8 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ - "lock_api", - "parking_lot_core", + "lock_api", + "parking_lot_core", ] [[package]] @@ -6231,11 +6222,11 @@ version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.5.18", - "smallvec", - "windows-link 0.2.1", + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link 0.2.1", ] [[package]] @@ -6244,35 +6235,35 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-ipc", - "arrow-schema", - "arrow-select", - "base64", - "brotli 8.0.2", - "bytes", - "chrono", - "flate2", - "futures", - "half", - "hashbrown 0.16.1", - "lz4_flex", - "num-bigint", - "num-integer", - "num-traits", - "object_store", - "paste", - "seq-macro", - "simdutf8", - "snap", - "thrift", - "tokio", - "twox-hash", - "zstd", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "base64", + "brotli 8.0.2", + "bytes", + "chrono", + "flate2", + "futures", + "half", + "hashbrown 0.16.1", + "lz4_flex", + "num-bigint", + "num-integer", + "num-traits", + "object_store", + "paste", + "seq-macro", + "simdutf8", + "snap", + "thrift", + "tokio", + "twox-hash", + "zstd", ] [[package]] @@ -6281,9 +6272,9 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", + "base64ct", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -6292,8 +6283,8 @@ version = "0.6.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f77af9403a6489b7b51f552693bd48d8e81a710c92d3d77648b203558578762d" dependencies = [ - "getrandom 0.4.0-rc.0", - "phc", + "getrandom 0.4.0-rc.0", + "phc", ] [[package]] @@ -6320,7 +6311,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" dependencies = [ - "path-dedot", + "path-dedot", ] [[package]] @@ -6335,7 +6326,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" dependencies = [ - "once_cell", + "once_cell", ] [[package]] @@ -6344,8 +6335,8 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ - "digest 0.10.7", - "hmac 0.12.1", + "digest 0.10.7", + "hmac 0.12.1", ] [[package]] @@ -6354,8 +6345,8 @@ version = "0.13.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fb9b101849c3ddab38905781f5aa7ae14ea06e87befaf0e7b003e5d3186250d" dependencies = [ - "digest 0.11.0-rc.5", - "hmac 0.13.0-rc.3", + "digest 0.11.0-rc.5", + "hmac 0.13.0-rc.3", ] [[package]] @@ -6364,8 +6355,8 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", - "serde_core", + "base64", + "serde_core", ] [[package]] @@ -6374,7 +6365,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6383,7 +6374,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6398,10 +6389,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" dependencies = [ - "fixedbitset", - "hashbrown 0.15.5", - "indexmap 2.13.0", - "serde", + "fixedbitset", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "serde", ] [[package]] @@ -6410,9 +6401,9 @@ version = "0.6.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71d390c5fe8d102c2c18ff39f1e72b9ad5996de282c2d831b0312f56910f5508" dependencies = [ - "base64ct", - "getrandom 0.4.0-rc.0", - "subtle", + "base64ct", + "getrandom 0.4.0-rc.0", + "subtle", ] [[package]] @@ -6421,8 +6412,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "phf_macros", - "phf_shared 0.11.3", + "phf_macros", + "phf_shared 0.11.3", ] [[package]] @@ -6431,7 +6422,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ - "phf_shared 0.12.1", + "phf_shared 0.12.1", ] [[package]] @@ -6440,8 +6431,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.3", - "rand 0.8.5", + "phf_shared 0.11.3", + "rand 0.8.5", ] [[package]] @@ -6450,11 +6441,11 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator", - "phf_shared 0.11.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "phf_generator", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6463,7 +6454,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6472,7 +6463,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6481,7 +6472,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ - "pin-project-internal", + "pin-project-internal", ] [[package]] @@ -6490,9 +6481,9 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6513,8 +6504,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6523,13 +6514,13 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6" dependencies = [ - "aes 0.8.4", - "cbc", - "der 0.7.10", - "pbkdf2 0.12.2", - "scrypt", - "sha2 0.10.9", - "spki 0.7.3", + "aes 0.8.4", + "cbc", + "der 0.7.10", + "pbkdf2 0.12.2", + "scrypt", + "sha2 0.10.9", + "spki 0.7.3", ] [[package]] @@ -6538,8 +6529,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" dependencies = [ - "der 0.6.1", - "spki 0.6.0", + "der 0.6.1", + "spki 0.6.0", ] [[package]] @@ -6548,10 +6539,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der 0.7.10", - "pkcs5", - "rand_core 0.6.4", - "spki 0.7.3", + "der 0.7.10", + "pkcs5", + "rand_core 0.6.4", + "spki 0.7.3", ] [[package]] @@ -6560,8 +6551,8 @@ version = "0.11.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77089aec8290d0b7bb01b671b091095cf1937670725af4fd73d47249f03b12c0" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6576,11 +6567,11 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -6595,7 +6586,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" dependencies = [ - "plotters-backend", + "plotters-backend", ] [[package]] @@ -6610,9 +6601,9 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" dependencies = [ - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6621,9 +6612,9 @@ version = "0.9.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c0749ae91cfe6e68c77c4d48802d9720ee06aed3f7100a38975fb0962d50bc" dependencies = [ - "cpufeatures", - "universal-hash 0.6.0-rc.4", - "zeroize", + "cpufeatures", + "universal-hash 0.6.0-rc.4", + "zeroize", ] [[package]] @@ -6632,10 +6623,10 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ - "cfg-if", - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6644,9 +6635,9 @@ version = "0.7.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ad60831c19edda4b20878a676595c357e93a9b4e6dca2ba98d75b01066b317b" dependencies = [ - "cfg-if", - "cpufeatures", - "universal-hash 0.6.0-rc.4", + "cfg-if", + "cpufeatures", + "universal-hash 0.6.0-rc.4", ] [[package]] @@ -6661,7 +6652,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" dependencies = [ - "zerovec", + "zerovec", ] [[package]] @@ -6682,22 +6673,22 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187" dependencies = [ - "aligned-vec", - "backtrace", - "cfg-if", - "findshlibs", - "inferno 0.11.21", - "libc", - "log", - "nix 0.26.4", - "once_cell", - "protobuf", - "protobuf-codegen", - "smallvec", - "spin 0.10.0", - "symbolic-demangle", - "tempfile", - "thiserror 2.0.17", + "aligned-vec", + "backtrace", + "cfg-if", + "findshlibs", + "inferno 0.11.21", + "libc", + "log", + "nix 0.26.4", + "once_cell", + "protobuf", + "protobuf-codegen", + "smallvec", + "spin 0.10.0", + "symbolic-demangle", + "tempfile", + "thiserror 2.0.17", ] [[package]] @@ -6706,13 +6697,13 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4429d44e5e2c8a69399fc0070379201eed018e3df61e04eb7432811df073c224" dependencies = [ - "anyhow", - "backtrace", - "flate2", - "inferno 0.12.4", - "num", - "paste", - "prost 0.13.5", + "anyhow", + "backtrace", + "flate2", + "inferno 0.12.4", + "num", + "paste", + "prost 0.13.5", ] [[package]] @@ -6721,7 +6712,7 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy", + "zerocopy", ] [[package]] @@ -6730,8 +6721,8 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ - "diff", - "yansi", + "diff", + "yansi", ] [[package]] @@ -6740,8 +6731,8 @@ version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ - "proc-macro2", - "syn 2.0.114", + "proc-macro2", + "syn 2.0.114", ] [[package]] @@ -6750,7 +6741,7 @@ version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ - "elliptic-curve 0.13.8", + "elliptic-curve 0.13.8", ] [[package]] @@ -6759,7 +6750,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "toml_edit 0.23.10+spec-1.0.0", + "toml_edit 0.23.10+spec-1.0.0", ] [[package]] @@ -6768,8 +6759,8 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" dependencies = [ - "proc-macro2", - "quote", + "proc-macro2", + "quote", ] [[package]] @@ -6778,10 +6769,10 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" dependencies = [ - "proc-macro-error-attr2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6790,7 +6781,7 @@ version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -6799,12 +6790,12 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" dependencies = [ - "cfg-if", - "fnv", - "lazy_static", - "memchr", - "parking_lot", - "thiserror 2.0.17", + "cfg-if", + "fnv", + "lazy_static", + "memchr", + "parking_lot", + "thiserror 2.0.17", ] [[package]] @@ -6813,8 +6804,8 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ - "bytes", - "prost-derive 0.13.5", + "bytes", + "prost-derive 0.13.5", ] [[package]] @@ -6823,8 +6814,8 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" dependencies = [ - "bytes", - "prost-derive 0.14.3", + "bytes", + "prost-derive 0.14.3", ] [[package]] @@ -6833,19 +6824,19 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" dependencies = [ - "heck", - "itertools 0.14.0", - "log", - "multimap", - "petgraph", - "prettyplease", - "prost 0.14.3", - "prost-types", - "pulldown-cmark", - "pulldown-cmark-to-cmark", - "regex", - "syn 2.0.114", - "tempfile", + "heck", + "itertools 0.14.0", + "log", + "multimap", + "petgraph", + "prettyplease", + "prost 0.14.3", + "prost-types", + "pulldown-cmark", + "pulldown-cmark-to-cmark", + "regex", + "syn 2.0.114", + "tempfile", ] [[package]] @@ -6854,11 +6845,11 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6867,11 +6858,11 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6880,7 +6871,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" dependencies = [ - "prost 0.14.3", + "prost 0.14.3", ] [[package]] @@ -6889,9 +6880,9 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" dependencies = [ - "once_cell", - "protobuf-support", - "thiserror 1.0.69", + "once_cell", + "protobuf-support", + "thiserror 1.0.69", ] [[package]] @@ -6900,13 +6891,13 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace" dependencies = [ - "anyhow", - "once_cell", - "protobuf", - "protobuf-parse", - "regex", - "tempfile", - "thiserror 1.0.69", + "anyhow", + "once_cell", + "protobuf", + "protobuf-parse", + "regex", + "tempfile", + "thiserror 1.0.69", ] [[package]] @@ -6915,14 +6906,14 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973" dependencies = [ - "anyhow", - "indexmap 2.13.0", - "log", - "protobuf", - "protobuf-support", - "tempfile", - "thiserror 1.0.69", - "which", + "anyhow", + "indexmap 2.13.0", + "log", + "protobuf", + "protobuf-support", + "tempfile", + "thiserror 1.0.69", + "which", ] [[package]] @@ -6931,7 +6922,7 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" dependencies = [ - "thiserror 1.0.69", + "thiserror 1.0.69", ] [[package]] @@ -6940,8 +6931,8 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e50c72c21c738f5c5f350cc33640aee30bf7cd20f9d9da20ed41bce2671d532" dependencies = [ - "bytes", - "snafu 0.6.10", + "bytes", + "snafu 0.6.10", ] [[package]] @@ -6950,8 +6941,8 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" dependencies = [ - "ar_archive_writer", - "cc", + "ar_archive_writer", + "cc", ] [[package]] @@ -6960,9 +6951,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0" dependencies = [ - "bitflags 2.10.0", - "memchr", - "unicase", + "bitflags 2.10.0", + "memchr", + "unicase", ] [[package]] @@ -6971,7 +6962,7 @@ version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90" dependencies = [ - "pulldown-cmark", + "pulldown-cmark", ] [[package]] @@ -6980,7 +6971,7 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6989,8 +6980,8 @@ version = "0.37.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -6999,7 +6990,7 @@ version = "0.38.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -7008,9 +6999,9 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2e3bf4aa9d243beeb01a7b3bc30b77cfe2c44e24ec02d751a7104a53c2c49a1" dependencies = [ - "memchr", - "serde", - "tokio", + "memchr", + "serde", + "tokio", ] [[package]] @@ -7019,18 +7010,18 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror 2.0.17", - "tokio", - "tracing", - "web-time", + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror 2.0.17", + "tokio", + "tracing", + "web-time", ] [[package]] @@ -7039,19 +7030,19 @@ version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" dependencies = [ - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.2", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.17", - "tinyvec", - "tracing", - "web-time", + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.2", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.17", + "tinyvec", + "tracing", + "web-time", ] [[package]] @@ -7060,12 +7051,12 @@ version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.60.2", + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", ] [[package]] @@ -7074,7 +7065,7 @@ version = "1.0.43" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" dependencies = [ - "proc-macro2", + "proc-macro2", ] [[package]] @@ -7089,9 +7080,9 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", ] [[package]] @@ -7100,8 +7091,8 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_chacha 0.9.0", + "rand_core 0.9.3", ] [[package]] @@ -7110,10 +7101,10 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bccc05ac8fad6ee391f3cc6725171817eed960345e2fb42ad229d486c1ca2d98" dependencies = [ - "chacha20 0.10.0-rc.6", - "getrandom 0.4.0-rc.0", - "rand_core 0.10.0-rc-3", - "serde", + "chacha20 0.10.0-rc.6", + "getrandom 0.4.0-rc.0", + "rand_core 0.10.0-rc-3", + "serde", ] [[package]] @@ -7122,8 +7113,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", + "ppv-lite86", + "rand_core 0.6.4", ] [[package]] @@ -7132,8 +7123,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ - "ppv-lite86", - "rand_core 0.9.3", + "ppv-lite86", + "rand_core 0.9.3", ] [[package]] @@ -7142,7 +7133,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.17", + "getrandom 0.2.17", ] [[package]] @@ -7151,7 +7142,7 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" dependencies = [ - "getrandom 0.3.4", + "getrandom 0.3.4", ] [[package]] @@ -7166,8 +7157,8 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ - "either", - "rayon-core", + "either", + "rayon-core", ] [[package]] @@ -7176,8 +7167,8 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ - "crossbeam-deque", - "crossbeam-utils", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] @@ -7186,12 +7177,12 @@ version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ec0a99f2de91c3cddc84b37e7db80e4d96b743e05607f647eb236fc0455907f" dependencies = [ - "pem", - "ring", - "rustls-pki-types", - "time", - "x509-parser 0.18.0", - "yasna", + "pem", + "ring", + "rustls-pki-types", + "time", + "x509-parser 0.18.0", + "yasna", ] [[package]] @@ -7206,8 +7197,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" dependencies = [ - "recursive-proc-macro-impl", - "stacker", + "recursive-proc-macro-impl", + "stacker", ] [[package]] @@ -7216,8 +7207,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" dependencies = [ - "quote", - "syn 2.0.114", + "quote", + "syn 2.0.114", ] [[package]] @@ -7226,7 +7217,7 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7235,7 +7226,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7244,9 +7235,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.17", - "libredox", - "thiserror 2.0.17", + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.17", ] [[package]] @@ -7255,10 +7246,10 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cffef0520d30fbd4151fb20e262947ae47fb0ab276a744a19b6398438105a072" dependencies = [ - "cpufeatures", - "fixedbitset", - "once_cell", - "readme-rustdocifier", + "cpufeatures", + "fixedbitset", + "once_cell", + "readme-rustdocifier", ] [[package]] @@ -7267,7 +7258,7 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ - "ref-cast-impl", + "ref-cast-impl", ] [[package]] @@ -7276,9 +7267,9 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -7287,10 +7278,10 @@ version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", ] [[package]] @@ -7299,9 +7290,9 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] @@ -7328,45 +7319,45 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots", + "base64", + "bytes", + "encoding_rs", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", ] [[package]] @@ -7375,9 +7366,9 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" dependencies = [ - "crypto-bigint 0.4.9", - "hmac 0.12.1", - "zeroize", + "crypto-bigint 0.4.9", + "hmac 0.12.1", + "zeroize", ] [[package]] @@ -7386,8 +7377,8 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "hmac 0.12.1", - "subtle", + "hmac 0.12.1", + "subtle", ] [[package]] @@ -7396,7 +7387,7 @@ version = "0.8.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" dependencies = [ - "bytemuck", + "bytemuck", ] [[package]] @@ -7405,12 +7396,12 @@ version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.17", - "libc", - "untrusted 0.9.0", - "windows-sys 0.52.0", + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", ] [[package]] @@ -7419,20 +7410,20 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528d42f8176e6e5e71ea69182b17d1d0a19a6b3b894b564678b74cd7cab13cfa" dependencies = [ - "async-trait", - "base64", - "chrono", - "futures", - "pastey 0.2.1", - "pin-project-lite", - "rmcp-macros", - "schemars 1.2.0", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-util", - "tracing", + "async-trait", + "base64", + "chrono", + "futures", + "pastey 0.2.1", + "pin-project-lite", + "rmcp-macros", + "schemars 1.2.0", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -7441,11 +7432,11 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3f81daaa494eb8e985c9462f7d6ce1ab05e5299f48aafd76cdd3d8b060e6f59" dependencies = [ - "darling 0.23.0", - "proc-macro2", - "quote", - "serde_json", - "syn 2.0.114", + "darling 0.23.0", + "proc-macro2", + "quote", + "serde_json", + "syn 2.0.114", ] [[package]] @@ -7454,7 +7445,7 @@ version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -7463,8 +7454,8 @@ version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155" dependencies = [ - "rmp", - "serde", + "rmp", + "serde", ] [[package]] @@ -7473,17 +7464,17 @@ version = "0.10.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d27d813937fdf8e9ad15e3e422a55da4021d29639000139ca19d99f3949060da" dependencies = [ - "const-oid 0.10.2", - "crypto-bigint 0.7.0-rc.15", - "crypto-primes", - "digest 0.11.0-rc.5", - "pkcs1", - "pkcs8 0.11.0-rc.8", - "rand_core 0.10.0-rc-3", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "spki 0.8.0-rc.4", - "zeroize", + "const-oid 0.10.2", + "crypto-bigint 0.7.0-rc.15", + "crypto-primes", + "digest 0.11.0-rc.5", + "pkcs1", + "pkcs8 0.11.0-rc.8", + "rand_core 0.10.0-rc-3", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "spki 0.8.0-rc.4", + "zeroize", ] [[package]] @@ -7492,9 +7483,9 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49" dependencies = [ - "futures-timer", - "futures-util", - "rstest_macros", + "futures-timer", + "futures-util", + "rstest_macros", ] [[package]] @@ -7503,16 +7494,16 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0" dependencies = [ - "cfg-if", - "glob", - "proc-macro-crate", - "proc-macro2", - "quote", - "regex", - "relative-path", - "rustc_version", - "syn 2.0.114", - "unicode-ident", + "cfg-if", + "glob", + "proc-macro-crate", + "proc-macro2", + "quote", + "regex", + "relative-path", + "rustc_version", + "syn 2.0.114", + "unicode-ident", ] [[package]] @@ -7521,19 +7512,19 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0feff8d882bff0b2fddaf99355a10336d43dd3ed44204f85ece28cf9626ab519" dependencies = [ - "bytes", - "fixedbitset", - "flume", - "futures-util", - "log", - "rustls-native-certs", - "rustls-pemfile", - "rustls-webpki 0.102.8", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", + "bytes", + "fixedbitset", + "flume", + "futures-util", + "log", + "rustls-native-certs", + "rustls-pemfile", + "rustls-webpki 0.102.8", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", ] [[package]] @@ -7542,59 +7533,59 @@ version = "0.56.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdbb7dcdd62c17ac911307ff693f55b3ec6712004d2d66ffdb8c0fa00269fd66" dependencies = [ - "aes 0.8.4", - "aws-lc-rs", - "bitflags 2.10.0", - "block-padding", - "byteorder", - "bytes", - "cbc", - "ctr 0.9.2", - "curve25519-dalek 4.1.3", - "data-encoding", - "delegate", - "der 0.7.10", - "digest 0.10.7", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "elliptic-curve 0.13.8", - "enum_dispatch", - "futures", - "generic-array 1.3.5", - "getrandom 0.2.17", - "hex-literal", - "hmac 0.12.1", - "home", - "inout 0.1.4", - "internal-russh-forked-ssh-key", - "libcrux-ml-kem", - "log", - "md5 0.7.0", - "num-bigint", - "p256 0.13.2", - "p384", - "p521", - "pageant", - "pbkdf2 0.12.2", - "pkcs1", - "pkcs5", - "pkcs8 0.10.2", - "rand 0.8.5", - "rand_core 0.6.4", - "rsa", - "russh-cryptovec", - "russh-util", - "sec1 0.7.3", - "sha1 0.10.6", - "sha2 0.10.9", - "signature 2.2.0", - "spki 0.7.3", - "ssh-encoding 0.2.0", - "subtle", - "thiserror 1.0.69", - "tokio", - "typenum", - "zeroize", + "aes 0.8.4", + "aws-lc-rs", + "bitflags 2.10.0", + "block-padding", + "byteorder", + "bytes", + "cbc", + "ctr 0.9.2", + "curve25519-dalek 4.1.3", + "data-encoding", + "delegate", + "der 0.7.10", + "digest 0.10.7", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "elliptic-curve 0.13.8", + "enum_dispatch", + "futures", + "generic-array 1.3.5", + "getrandom 0.2.17", + "hex-literal", + "hmac 0.12.1", + "home", + "inout 0.1.4", + "internal-russh-forked-ssh-key", + "libcrux-ml-kem", + "log", + "md5 0.7.0", + "num-bigint", + "p256 0.13.2", + "p384", + "p521", + "pageant", + "pbkdf2 0.12.2", + "pkcs1", + "pkcs5", + "pkcs8 0.10.2", + "rand 0.8.5", + "rand_core 0.6.4", + "rsa", + "russh-cryptovec", + "russh-util", + "sec1 0.7.3", + "sha1 0.10.6", + "sha2 0.10.9", + "signature 2.2.0", + "spki 0.7.3", + "ssh-encoding 0.2.0", + "subtle", + "thiserror 1.0.69", + "tokio", + "typenum", + "zeroize", ] [[package]] @@ -7603,11 +7594,11 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf" dependencies = [ - "libc", - "log", - "nix 0.29.0", - "ssh-encoding 0.2.0", - "winapi", + "libc", + "log", + "nix 0.29.0", + "ssh-encoding 0.2.0", + "winapi", ] [[package]] @@ -7616,15 +7607,15 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bb94393cafad0530145b8f626d8687f1ee1dedb93d7ba7740d6ae81868b13b5" dependencies = [ - "bitflags 2.10.0", - "bytes", - "chrono", - "flurry", - "log", - "serde", - "thiserror 2.0.17", - "tokio", - "tokio-util", + "bitflags 2.10.0", + "bytes", + "chrono", + "flurry", + "log", + "serde", + "thiserror 2.0.17", + "tokio", + "tokio-util", ] [[package]] @@ -7633,10 +7624,10 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6" dependencies = [ - "chrono", - "tokio", - "wasm-bindgen", - "wasm-bindgen-futures", + "chrono", + "tokio", + "wasm-bindgen", + "wasm-bindgen-futures", ] [[package]] @@ -7645,9 +7636,9 @@ version = "8.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca" dependencies = [ - "rust-embed-impl", - "rust-embed-utils", - "walkdir", + "rust-embed-impl", + "rust-embed-utils", + "walkdir", ] [[package]] @@ -7656,12 +7647,12 @@ version = "8.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2" dependencies = [ - "proc-macro2", - "quote", - "rust-embed-utils", - "shellexpand", - "syn 2.0.114", - "walkdir", + "proc-macro2", + "quote", + "rust-embed-utils", + "shellexpand", + "syn 2.0.114", + "walkdir", ] [[package]] @@ -7670,8 +7661,8 @@ version = "8.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475" dependencies = [ - "sha2 0.10.9", - "walkdir", + "sha2 0.10.9", + "walkdir", ] [[package]] @@ -7692,712 +7683,712 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver", + "semver", ] [[package]] name = "rustfs" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-trait", - "atoi", - "atomic_enum", - "axum", - "axum-server", - "base64", - "base64-simd", - "bytes", - "chrono", - "clap", - "const-str", - "datafusion", - "flatbuffers", - "futures", - "futures-util", - "hex-simd", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "jemalloc_pprof", - "libc", - "libsystemd", - "libunftp", - "matchit 0.9.1", - "md5 0.8.0", - "metrics", - "mimalloc", - "mime_guess", - "moka", - "pin-project-lite", - "pprof", - "reqwest", - "rmp-serde", - "russh", - "russh-sftp", - "rust-embed", - "rustfs-ahm", - "rustfs-appauth", - "rustfs-audit", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-iam", - "rustfs-kms", - "rustfs-lock", - "rustfs-madmin", - "rustfs-notify", - "rustfs-obs", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-s3select-api", - "rustfs-s3select-query", - "rustfs-targets", - "rustfs-utils", - "rustfs-zip", - "rustls", - "rustls-pemfile", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "serial_test", - "shadow-rs", - "socket2", - "ssh-key", - "subtle", - "sysinfo", - "thiserror 2.0.17", - "tikv-jemalloc-ctl", - "tikv-jemallocator", - "time", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", - "tonic", - "tower", - "tower-http", - "tracing", - "url", - "urlencoding", - "uuid", - "zip", + "astral-tokio-tar", + "async-trait", + "atoi", + "atomic_enum", + "axum", + "axum-server", + "base64", + "base64-simd", + "bytes", + "chrono", + "clap", + "const-str", + "datafusion", + "flatbuffers", + "futures", + "futures-util", + "hex-simd", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "jemalloc_pprof", + "libc", + "libsystemd", + "libunftp", + "matchit 0.9.1", + "md5 0.8.0", + "metrics", + "mimalloc", + "mime_guess", + "moka", + "pin-project-lite", + "pprof", + "reqwest", + "rmp-serde", + "russh", + "russh-sftp", + "rust-embed", + "rustfs-ahm", + "rustfs-appauth", + "rustfs-audit", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-iam", + "rustfs-kms", + "rustfs-lock", + "rustfs-madmin", + "rustfs-notify", + "rustfs-obs", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-s3select-api", + "rustfs-s3select-query", + "rustfs-targets", + "rustfs-utils", + "rustfs-zip", + "rustls", + "rustls-pemfile", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "serial_test", + "shadow-rs", + "socket2", + "ssh-key", + "subtle", + "sysinfo", + "thiserror 2.0.17", + "tikv-jemalloc-ctl", + "tikv-jemallocator", + "time", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", + "tonic", + "tower", + "tower-http", + "tracing", + "url", + "urlencoding", + "uuid", + "zip", ] [[package]] name = "rustfs-ahm" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "chrono", - "futures", - "heed", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-common", - "rustfs-config", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-madmin", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "serial_test", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", - "tracing-subscriber", - "uuid", - "walkdir", + "anyhow", + "async-trait", + "chrono", + "futures", + "heed", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-common", + "rustfs-config", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-madmin", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "serial_test", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", + "tracing-subscriber", + "uuid", + "walkdir", ] [[package]] name = "rustfs-appauth" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "rsa", - "serde", - "serde_json", + "base64-simd", + "rand 0.10.0-rc.6", + "rsa", + "serde", + "serde_json", ] [[package]] name = "rustfs-audit" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "const-str", - "futures", - "hashbrown 0.16.1", - "metrics", - "rumqttc", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", + "async-trait", + "chrono", + "const-str", + "futures", + "hashbrown 0.16.1", + "metrics", + "rumqttc", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", ] [[package]] name = "rustfs-checksums" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "crc-fast", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pretty_assertions", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", + "base64-simd", + "bytes", + "crc-fast", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pretty_assertions", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", ] [[package]] name = "rustfs-common" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "path-clean", - "rmp-serde", - "rustfs-filemeta", - "rustfs-madmin", - "s3s", - "serde", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "chrono", + "path-clean", + "rmp-serde", + "rustfs-filemeta", + "rustfs-madmin", + "s3s", + "serde", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-config" version = "0.0.5" dependencies = [ - "const-str", + "const-str", ] [[package]] name = "rustfs-credentials" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "serde", - "serde_json", - "time", + "base64-simd", + "rand 0.10.0-rc.6", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-crypto" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "argon2 0.6.0-rc.5", - "cfg-if", - "chacha20poly1305", - "jsonwebtoken", - "pbkdf2 0.13.0-rc.6", - "rand 0.10.0-rc.6", - "serde_json", - "sha2 0.11.0-rc.3", - "test-case", - "thiserror 2.0.17", - "time", + "aes-gcm 0.11.0-rc.2", + "argon2 0.6.0-rc.5", + "cfg-if", + "chacha20poly1305", + "jsonwebtoken", + "pbkdf2 0.13.0-rc.6", + "rand 0.10.0-rc.6", + "serde_json", + "sha2 0.11.0-rc.3", + "test-case", + "thiserror 2.0.17", + "time", ] [[package]] name = "rustfs-ecstore" version = "0.0.5" dependencies = [ - "async-channel", - "async-recursion", - "async-trait", - "aws-config", - "aws-credential-types", - "aws-sdk-s3", - "aws-smithy-types", - "base64", - "base64-simd", - "byteorder", - "bytes", - "bytesize", - "chrono", - "criterion", - "dunce", - "enumset", - "faster-hex", - "flatbuffers", - "futures", - "glob", - "google-cloud-auth", - "google-cloud-storage", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "lazy_static", - "md-5 0.11.0-rc.3", - "moka", - "num_cpus", - "parking_lot", - "path-absolutize", - "pin-project-lite", - "quick-xml 0.39.0", - "rand 0.10.0-rc.6", - "reed-solomon-simd", - "regex", - "reqwest", - "rmp", - "rmp-serde", - "rustfs-checksums", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-signer", - "rustfs-utils", - "rustfs-workers", - "rustls", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "shadow-rs", - "smallvec", - "temp-env", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tonic", - "tower", - "tracing", - "tracing-subscriber", - "url", - "urlencoding", - "uuid", - "xxhash-rust", + "async-channel", + "async-recursion", + "async-trait", + "aws-config", + "aws-credential-types", + "aws-sdk-s3", + "aws-smithy-types", + "base64", + "base64-simd", + "byteorder", + "bytes", + "bytesize", + "chrono", + "criterion", + "dunce", + "enumset", + "faster-hex", + "flatbuffers", + "futures", + "glob", + "google-cloud-auth", + "google-cloud-storage", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "lazy_static", + "md-5 0.11.0-rc.3", + "moka", + "num_cpus", + "parking_lot", + "path-absolutize", + "pin-project-lite", + "quick-xml 0.39.0", + "rand 0.10.0-rc.6", + "reed-solomon-simd", + "regex", + "reqwest", + "rmp", + "rmp-serde", + "rustfs-checksums", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-signer", + "rustfs-utils", + "rustfs-workers", + "rustls", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "shadow-rs", + "smallvec", + "temp-env", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tonic", + "tower", + "tracing", + "tracing-subscriber", + "url", + "urlencoding", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-filemeta" version = "0.0.5" dependencies = [ - "byteorder", - "bytes", - "crc-fast", - "criterion", - "regex", - "rmp", - "rmp-serde", - "rustfs-utils", - "s3s", - "serde", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", - "uuid", - "xxhash-rust", + "byteorder", + "bytes", + "crc-fast", + "criterion", + "regex", + "rmp", + "rmp-serde", + "rustfs-utils", + "s3s", + "serde", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-iam" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "base64-simd", - "futures", - "jsonwebtoken", - "pollster", - "rand 0.10.0-rc.6", - "rustfs-credentials", - "rustfs-crypto", - "rustfs-ecstore", - "rustfs-madmin", - "rustfs-policy", - "rustfs-utils", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", + "arc-swap", + "async-trait", + "base64-simd", + "futures", + "jsonwebtoken", + "pollster", + "rand 0.10.0-rc.6", + "rustfs-credentials", + "rustfs-crypto", + "rustfs-ecstore", + "rustfs-madmin", + "rustfs-policy", + "rustfs-utils", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-kms" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "async-trait", - "base64", - "chacha20poly1305", - "chrono", - "md5 0.8.0", - "moka", - "rand 0.10.0-rc.6", - "reqwest", - "serde", - "serde_json", - "sha2 0.11.0-rc.3", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "uuid", - "vaultrs", - "zeroize", + "aes-gcm 0.11.0-rc.2", + "async-trait", + "base64", + "chacha20poly1305", + "chrono", + "md5 0.8.0", + "moka", + "rand 0.10.0-rc.6", + "reqwest", + "serde", + "serde_json", + "sha2 0.11.0-rc.3", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "uuid", + "vaultrs", + "zeroize", ] [[package]] name = "rustfs-lock" version = "0.0.5" dependencies = [ - "async-trait", - "crossbeam-queue", - "futures", - "parking_lot", - "serde", - "serde_json", - "smallvec", - "smartstring", - "thiserror 2.0.17", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "crossbeam-queue", + "futures", + "parking_lot", + "serde", + "serde_json", + "smallvec", + "smartstring", + "thiserror 2.0.17", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-madmin" version = "0.0.5" dependencies = [ - "chrono", - "humantime", - "hyper", - "serde", - "serde_json", - "time", + "chrono", + "humantime", + "hyper", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-mcp" version = "0.0.5" dependencies = [ - "anyhow", - "aws-sdk-s3", - "clap", - "mime_guess", - "rmcp", - "schemars 1.2.0", - "serde", - "serde_json", - "tokio", - "tracing", - "tracing-subscriber", + "anyhow", + "aws-sdk-s3", + "clap", + "mime_guess", + "rmcp", + "schemars 1.2.0", + "serde", + "serde_json", + "tokio", + "tracing", + "tracing-subscriber", ] [[package]] name = "rustfs-notify" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "axum", - "chrono", - "form_urlencoded", - "futures", - "hashbrown 0.16.1", - "quick-xml 0.39.0", - "rayon", - "rumqttc", - "rustc-hash", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "rustfs-utils", - "serde", - "serde_json", - "starshard", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-subscriber", - "url", - "wildmatch", + "arc-swap", + "async-trait", + "axum", + "chrono", + "form_urlencoded", + "futures", + "hashbrown 0.16.1", + "quick-xml 0.39.0", + "rayon", + "rumqttc", + "rustc-hash", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "rustfs-utils", + "serde", + "serde_json", + "starshard", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "wildmatch", ] [[package]] name = "rustfs-obs" version = "0.0.5" dependencies = [ - "flexi_logger", - "metrics", - "nu-ansi-term", - "nvml-wrapper", - "opentelemetry", - "opentelemetry-appender-tracing", - "opentelemetry-otlp", - "opentelemetry-semantic-conventions", - "opentelemetry-stdout", - "opentelemetry_sdk", - "rustfs-config", - "rustfs-utils", - "serde", - "smallvec", - "sysinfo", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-appender", - "tracing-error", - "tracing-opentelemetry", - "tracing-subscriber", + "flexi_logger", + "metrics", + "nu-ansi-term", + "nvml-wrapper", + "opentelemetry", + "opentelemetry-appender-tracing", + "opentelemetry-otlp", + "opentelemetry-semantic-conventions", + "opentelemetry-stdout", + "opentelemetry_sdk", + "rustfs-config", + "rustfs-utils", + "serde", + "smallvec", + "sysinfo", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-appender", + "tracing-error", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] name = "rustfs-policy" version = "0.0.5" dependencies = [ - "async-trait", - "base64-simd", - "chrono", - "futures", - "ipnetwork", - "jsonwebtoken", - "moka", - "pollster", - "regex", - "reqwest", - "rustfs-config", - "rustfs-credentials", - "rustfs-crypto", - "serde", - "serde_json", - "strum", - "temp-env", - "test-case", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", + "async-trait", + "base64-simd", + "chrono", + "futures", + "ipnetwork", + "jsonwebtoken", + "moka", + "pollster", + "regex", + "reqwest", + "rustfs-config", + "rustfs-credentials", + "rustfs-crypto", + "serde", + "serde_json", + "strum", + "temp-env", + "test-case", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", ] [[package]] name = "rustfs-protos" version = "0.0.5" dependencies = [ - "flatbuffers", - "prost 0.14.3", - "rustfs-common", - "tonic", - "tonic-prost", - "tonic-prost-build", - "tracing", + "flatbuffers", + "prost 0.14.3", + "rustfs-common", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tracing", ] [[package]] name = "rustfs-rio" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "base64", - "bytes", - "crc-fast", - "faster-hex", - "futures", - "hex-simd", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pin-project-lite", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-config", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "thiserror 2.0.17", - "tokio", - "tokio-test", - "tokio-util", - "tracing", + "aes-gcm 0.11.0-rc.2", + "base64", + "bytes", + "crc-fast", + "faster-hex", + "futures", + "hex-simd", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pin-project-lite", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-config", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "thiserror 2.0.17", + "tokio", + "tokio-test", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-s3select-api" version = "0.0.5" dependencies = [ - "async-trait", - "bytes", - "chrono", - "datafusion", - "futures", - "futures-core", - "http 1.4.0", - "object_store", - "parking_lot", - "pin-project-lite", - "rustfs-common", - "rustfs-ecstore", - "s3s", - "snafu 0.8.9", - "tokio", - "tokio-util", - "tracing", - "transform-stream", - "url", + "async-trait", + "bytes", + "chrono", + "datafusion", + "futures", + "futures-core", + "http 1.4.0", + "object_store", + "parking_lot", + "pin-project-lite", + "rustfs-common", + "rustfs-ecstore", + "s3s", + "snafu 0.8.9", + "tokio", + "tokio-util", + "tracing", + "transform-stream", + "url", ] [[package]] name = "rustfs-s3select-query" version = "0.0.5" dependencies = [ - "async-recursion", - "async-trait", - "datafusion", - "derive_builder 0.20.2", - "futures", - "parking_lot", - "rustfs-s3select-api", - "s3s", - "snafu 0.8.9", - "tokio", - "tracing", + "async-recursion", + "async-trait", + "datafusion", + "derive_builder 0.20.2", + "futures", + "parking_lot", + "rustfs-s3select-api", + "s3s", + "snafu 0.8.9", + "tokio", + "tracing", ] [[package]] name = "rustfs-signer" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "http 1.4.0", - "hyper", - "rustfs-utils", - "s3s", - "serde_urlencoded", - "time", - "tracing", + "base64-simd", + "bytes", + "http 1.4.0", + "hyper", + "rustfs-utils", + "s3s", + "serde_urlencoded", + "time", + "tracing", ] [[package]] name = "rustfs-targets" version = "0.0.5" dependencies = [ - "async-trait", - "reqwest", - "rumqttc", - "rustfs-config", - "rustfs-utils", - "serde", - "serde_json", - "snap", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "urlencoding", - "uuid", + "async-trait", + "reqwest", + "rumqttc", + "rustfs-config", + "rustfs-utils", + "serde", + "serde_json", + "snap", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "urlencoding", + "uuid", ] [[package]] name = "rustfs-utils" version = "0.0.5" dependencies = [ - "base64-simd", - "blake3", - "brotli 8.0.2", - "bytes", - "convert_case", - "crc-fast", - "flate2", - "futures", - "hashbrown 0.16.1", - "hex-simd", - "highway", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "libc", - "local-ip-address", - "lz4", - "md-5 0.11.0-rc.3", - "netif", - "nix 0.30.1", - "rand 0.10.0-rc.6", - "regex", - "rustfs-config", - "rustls", - "rustls-pemfile", - "rustls-pki-types", - "s3s", - "serde", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "siphasher", - "snap", - "sysinfo", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "transform-stream", - "url", - "windows 0.62.2", - "zstd", + "base64-simd", + "blake3", + "brotli 8.0.2", + "bytes", + "convert_case", + "crc-fast", + "flate2", + "futures", + "hashbrown 0.16.1", + "hex-simd", + "highway", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "libc", + "local-ip-address", + "lz4", + "md-5 0.11.0-rc.3", + "netif", + "nix 0.30.1", + "rand 0.10.0-rc.6", + "regex", + "rustfs-config", + "rustls", + "rustls-pemfile", + "rustls-pki-types", + "s3s", + "serde", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "siphasher", + "snap", + "sysinfo", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "transform-stream", + "url", + "windows 0.62.2", + "zstd", ] [[package]] name = "rustfs-workers" version = "0.0.5" dependencies = [ - "tokio", - "tracing", + "tokio", + "tracing", ] [[package]] name = "rustfs-zip" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-compression", - "tokio", - "tokio-stream", + "astral-tokio-tar", + "async-compression", + "tokio", + "tokio-stream", ] [[package]] @@ -8406,7 +8397,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom 7.1.3", + "nom 7.1.3", ] [[package]] @@ -8415,18 +8406,18 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "759a090a17ce545d1adcffcc48207d5136c8984d8153bd8247b1ad4a71e49f5f" dependencies = [ - "anyhow", - "async-trait", - "bytes", - "http 1.4.0", - "reqwest", - "rustify_derive", - "serde", - "serde_json", - "serde_urlencoded", - "thiserror 1.0.69", - "tracing", - "url", + "anyhow", + "async-trait", + "bytes", + "http 1.4.0", + "reqwest", + "rustify_derive", + "serde", + "serde_json", + "serde_urlencoded", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -8435,12 +8426,12 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f07d43b2dbdbd99aaed648192098f0f413b762f0f352667153934ef3955f1793" dependencies = [ - "proc-macro2", - "quote", - "regex", - "serde_urlencoded", - "syn 1.0.109", - "synstructure 0.12.6", + "proc-macro2", + "quote", + "regex", + "serde_urlencoded", + "syn 1.0.109", + "synstructure 0.12.6", ] [[package]] @@ -8449,11 +8440,11 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] @@ -8462,11 +8453,11 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.11.0", - "windows-sys 0.61.2", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.2", ] [[package]] @@ -8475,14 +8466,14 @@ version = "0.23.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" dependencies = [ - "aws-lc-rs", - "log", - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki 0.103.8", - "subtle", - "zeroize", + "aws-lc-rs", + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki 0.103.8", + "subtle", + "zeroize", ] [[package]] @@ -8491,10 +8482,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", - "security-framework", + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", ] [[package]] @@ -8503,7 +8494,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -8512,8 +8503,8 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" dependencies = [ - "web-time", - "zeroize", + "web-time", + "zeroize", ] [[package]] @@ -8522,9 +8513,9 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8533,10 +8524,10 @@ version = "0.103.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" dependencies = [ - "aws-lc-rs", - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "aws-lc-rs", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8556,48 +8547,48 @@ name = "s3s" version = "0.13.0-alpha" source = "git+https://github.com/s3s-project/s3s.git?branch=main#18c168ae21bf1176555f8f529686ecdc2ebd6db7" dependencies = [ - "arrayvec", - "async-trait", - "atoi", - "base64-simd", - "bytes", - "bytestring", - "cfg-if", - "chrono", - "const-str", - "crc-fast", - "futures", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "httparse", - "hyper", - "itoa", - "md-5 0.11.0-rc.3", - "memchr", - "mime", - "nom 8.0.0", - "numeric_cast", - "pin-project-lite", - "quick-xml 0.37.5", - "serde", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "smallvec", - "std-next", - "subtle", - "sync_wrapper", - "thiserror 2.0.17", - "time", - "tokio", - "tower", - "tracing", - "transform-stream", - "urlencoding", - "zeroize", + "arrayvec", + "async-trait", + "atoi", + "base64-simd", + "bytes", + "bytestring", + "cfg-if", + "chrono", + "const-str", + "crc-fast", + "futures", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "httparse", + "hyper", + "itoa", + "md-5 0.11.0-rc.3", + "memchr", + "mime", + "nom 8.0.0", + "numeric_cast", + "pin-project-lite", + "quick-xml 0.37.5", + "serde", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "smallvec", + "std-next", + "subtle", + "sync_wrapper", + "thiserror 2.0.17", + "time", + "tokio", + "tower", + "tracing", + "transform-stream", + "urlencoding", + "zeroize", ] [[package]] @@ -8606,7 +8597,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -8615,7 +8606,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" dependencies = [ - "winapi-util", + "winapi-util", ] [[package]] @@ -8624,7 +8615,7 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc" dependencies = [ - "sdd", + "sdd", ] [[package]] @@ -8633,7 +8624,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -8642,10 +8633,10 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ - "dyn-clone", - "ref-cast", - "serde", - "serde_json", + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] @@ -8654,12 +8645,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" dependencies = [ - "chrono", - "dyn-clone", - "ref-cast", - "schemars_derive", - "serde", - "serde_json", + "chrono", + "dyn-clone", + "ref-cast", + "schemars_derive", + "serde", + "serde_json", ] [[package]] @@ -8668,10 +8659,10 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4908ad288c5035a8eb12cfdf0d49270def0a268ee162b75eeee0f85d155a7c45" dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.114", + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.114", ] [[package]] @@ -8686,9 +8677,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" dependencies = [ - "pbkdf2 0.12.2", - "salsa20", - "sha2 0.10.9", + "pbkdf2 0.12.2", + "salsa20", + "sha2 0.10.9", ] [[package]] @@ -8703,12 +8694,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" dependencies = [ - "base16ct 0.1.1", - "der 0.6.1", - "generic-array 0.14.7", - "pkcs8 0.9.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "der 0.6.1", + "generic-array 0.14.7", + "pkcs8 0.9.0", + "subtle", + "zeroize", ] [[package]] @@ -8717,12 +8708,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ - "base16ct 0.2.0", - "der 0.7.10", - "generic-array 0.14.7", - "pkcs8 0.10.2", - "subtle", - "zeroize", + "base16ct 0.2.0", + "der 0.7.10", + "generic-array 0.14.7", + "pkcs8 0.10.2", + "subtle", + "zeroize", ] [[package]] @@ -8731,8 +8722,8 @@ version = "0.8.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2568531a8ace88b848310caa98fb2115b151ef924d54aa523e659c21b9d32d71" dependencies = [ - "base16ct 1.0.0", - "hybrid-array", + "base16ct 1.0.0", + "hybrid-array", ] [[package]] @@ -8741,11 +8732,11 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.10.1", - "core-foundation-sys", - "libc", - "security-framework-sys", + "bitflags 2.10.0", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", ] [[package]] @@ -8754,8 +8745,8 @@ version = "2.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -8770,8 +8761,8 @@ version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -8786,8 +8777,8 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ - "serde_core", - "serde_derive", + "serde_core", + "serde_derive", ] [[package]] @@ -8796,7 +8787,7 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ - "serde_derive", + "serde_derive", ] [[package]] @@ -8805,9 +8796,9 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8816,9 +8807,9 @@ version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8827,7 +8818,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e497af288b3b95d067a23a4f749f2861121ffcb2f6d8379310dcda040c345ed" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -8836,11 +8827,11 @@ version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ - "itoa", - "memchr", - "serde", - "serde_core", - "zmij", + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", ] [[package]] @@ -8849,9 +8840,9 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" dependencies = [ - "itoa", - "serde", - "serde_core", + "itoa", + "serde", + "serde_core", ] [[package]] @@ -8860,7 +8851,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -8869,10 +8860,10 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", + "form_urlencoded", + "itoa", + "ryu", + "serde", ] [[package]] @@ -8881,17 +8872,17 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" dependencies = [ - "base64", - "chrono", - "hex", - "indexmap 1.9.3", - "indexmap 2.13.0", - "schemars 0.9.0", - "schemars 1.2.0", - "serde_core", - "serde_json", - "serde_with_macros", - "time", + "base64", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.0", + "serde_core", + "serde_json", + "serde_with_macros", + "time", ] [[package]] @@ -8900,10 +8891,10 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8912,8 +8903,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06" dependencies = [ - "base16ct 1.0.0", - "serde", + "base16ct 1.0.0", + "serde", ] [[package]] @@ -8922,13 +8913,13 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555" dependencies = [ - "futures-executor", - "futures-util", - "log", - "once_cell", - "parking_lot", - "scc", - "serial_test_derive", + "futures-executor", + "futures-util", + "log", + "once_cell", + "parking_lot", + "scc", + "serial_test_derive", ] [[package]] @@ -8937,9 +8928,9 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8948,9 +8939,9 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8959,9 +8950,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa1ae819b9870cadc959a052363de870944a1646932d274a4e270f64bf79e5ef" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8970,9 +8961,9 @@ version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8981,9 +8972,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8992,12 +8983,12 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff351910f271e7065781b6b4f0f43cb515d474d812f31176a0246d9058e47d5d" dependencies = [ - "cargo_metadata", - "const_format", - "is_debug", - "serde_json", - "time", - "tzdb", + "cargo_metadata", + "const_format", + "is_debug", + "serde_json", + "time", + "tzdb", ] [[package]] @@ -9006,7 +8997,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ - "lazy_static", + "lazy_static", ] [[package]] @@ -9015,7 +9006,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb" dependencies = [ - "dirs", + "dirs", ] [[package]] @@ -9030,8 +9021,8 @@ version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ - "errno", - "libc", + "errno", + "libc", ] [[package]] @@ -9040,8 +9031,8 @@ version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -9050,8 +9041,8 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -9060,8 +9051,8 @@ version = "3.0.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a96996ccff7dfa16f052bd995b4cecc72af22c35138738dc029f0ead6608d" dependencies = [ - "digest 0.11.0-rc.5", - "rand_core 0.10.0-rc-3", + "digest 0.11.0-rc.5", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -9082,10 +9073,10 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ - "num-bigint", - "num-traits", - "thiserror 2.0.17", - "time", + "num-bigint", + "num-traits", + "thiserror 2.0.17", + "time", ] [[package]] @@ -9106,10 +9097,10 @@ version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b3b8565691b22d2bdfc066426ed48f837fc0c5f2c8cad8d9718f7f99d6995c1" dependencies = [ - "anyhow", - "erased-serde 0.3.31", - "rustversion", - "serde_core", + "anyhow", + "erased-serde 0.3.31", + "rustversion", + "serde_core", ] [[package]] @@ -9118,9 +9109,9 @@ version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" dependencies = [ - "arc-swap", - "lazy_static", - "slog", + "arc-swap", + "lazy_static", + "slog", ] [[package]] @@ -9129,9 +9120,9 @@ version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" dependencies = [ - "log", - "slog", - "slog-scope", + "log", + "slog", + "slog-scope", ] [[package]] @@ -9140,7 +9131,7 @@ version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" dependencies = [ - "serde", + "serde", ] [[package]] @@ -9149,9 +9140,9 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" dependencies = [ - "autocfg", - "static_assertions", - "version_check", + "autocfg", + "static_assertions", + "version_check", ] [[package]] @@ -9160,8 +9151,8 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7" dependencies = [ - "doc-comment", - "snafu-derive 0.6.10", + "doc-comment", + "snafu-derive 0.6.10", ] [[package]] @@ -9170,8 +9161,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2" dependencies = [ - "backtrace", - "snafu-derive 0.8.9", + "backtrace", + "snafu-derive 0.8.9", ] [[package]] @@ -9180,9 +9171,9 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -9191,10 +9182,10 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9209,8 +9200,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" dependencies = [ - "libc", - "windows-sys 0.60.2", + "libc", + "windows-sys 0.60.2", ] [[package]] @@ -9219,7 +9210,7 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9228,7 +9219,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9237,8 +9228,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" dependencies = [ - "base64ct", - "der 0.6.1", + "base64ct", + "der 0.6.1", ] [[package]] @@ -9247,8 +9238,8 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ - "base64ct", - "der 0.7.10", + "base64ct", + "der 0.7.10", ] [[package]] @@ -9257,8 +9248,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80" dependencies = [ - "base64ct", - "der 0.8.0-rc.10", + "base64ct", + "der 0.8.0-rc.10", ] [[package]] @@ -9267,9 +9258,9 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f" dependencies = [ - "log", - "recursive", - "sqlparser_derive", + "log", + "recursive", + "sqlparser_derive", ] [[package]] @@ -9278,9 +9269,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9289,15 +9280,15 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f" dependencies = [ - "aes 0.8.4", - "aes-gcm 0.10.3", - "cbc", - "chacha20 0.9.1", - "cipher 0.4.4", - "ctr 0.9.2", - "poly1305 0.8.0", - "ssh-encoding 0.2.0", - "subtle", + "aes 0.8.4", + "aes-gcm 0.10.3", + "cbc", + "chacha20 0.9.1", + "cipher 0.4.4", + "ctr 0.9.2", + "poly1305 0.8.0", + "ssh-encoding 0.2.0", + "subtle", ] [[package]] @@ -9306,14 +9297,14 @@ version = "0.3.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "361de425e489d5fe3f1ecfd91531c8fe91ededbbc567e24b77a560d503309bf9" dependencies = [ - "aes 0.9.0-rc.2", - "aes-gcm 0.11.0-rc.2", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "des", - "poly1305 0.9.0-rc.3", - "ssh-encoding 0.3.0-rc.3", - "zeroize", + "aes 0.9.0-rc.2", + "aes-gcm 0.11.0-rc.2", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "des", + "poly1305 0.9.0-rc.3", + "ssh-encoding 0.3.0-rc.3", + "zeroize", ] [[package]] @@ -9322,10 +9313,10 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15" dependencies = [ - "base64ct", - "bytes", - "pem-rfc7468 0.7.0", - "sha2 0.10.9", + "base64ct", + "bytes", + "pem-rfc7468 0.7.0", + "sha2 0.10.9", ] [[package]] @@ -9334,12 +9325,12 @@ version = "0.3.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ad6a09263583e83e934fcd436b7e3bb9d69602e2feef3787adb615c1fe3a343" dependencies = [ - "base64ct", - "crypto-bigint 0.7.0-rc.15", - "digest 0.11.0-rc.5", - "pem-rfc7468 1.0.0", - "subtle", - "zeroize", + "base64ct", + "crypto-bigint 0.7.0-rc.15", + "digest 0.11.0-rc.5", + "pem-rfc7468 1.0.0", + "subtle", + "zeroize", ] [[package]] @@ -9348,16 +9339,16 @@ version = "0.7.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faefb89d4a5304e31238913d1f7f164e22494276ed58cd84d5058ba7b04911f" dependencies = [ - "ed25519-dalek 3.0.0-pre.2", - "rand_core 0.10.0-rc-3", - "rsa", - "sec1 0.8.0-rc.11", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "ssh-cipher 0.3.0-rc.4", - "ssh-encoding 0.3.0-rc.3", - "subtle", - "zeroize", + "ed25519-dalek 3.0.0-pre.2", + "rand_core 0.10.0-rc-3", + "rsa", + "sec1 0.8.0-rc.11", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "ssh-cipher 0.3.0-rc.4", + "ssh-encoding 0.3.0-rc.3", + "subtle", + "zeroize", ] [[package]] @@ -9372,11 +9363,11 @@ version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" dependencies = [ - "cc", - "cfg-if", - "libc", - "psm", - "windows-sys 0.59.0", + "cc", + "cfg-if", + "libc", + "psm", + "windows-sys 0.59.0", ] [[package]] @@ -9385,11 +9376,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a88b6e011736aa3523f5962c02ba2d6c4cff35d97a0a9a3999afa6111d704a76" dependencies = [ - "hashbrown 0.16.1", - "rayon", - "rustc-hash", - "serde", - "tokio", + "hashbrown 0.16.1", + "rayon", + "rustc-hash", + "serde", + "tokio", ] [[package]] @@ -9404,8 +9395,8 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04082e93ed1a06debd9148c928234b46d2cf260bc65f44e1d1d3fa594c5beebc" dependencies = [ - "simdutf8", - "thiserror 2.0.17", + "simdutf8", + "thiserror 2.0.17", ] [[package]] @@ -9432,7 +9423,7 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ - "strum_macros", + "strum_macros", ] [[package]] @@ -9441,10 +9432,10 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9459,17 +9450,17 @@ version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69a15b325bbe0a1f85de3dbf988a3a14e9cd321537dffcbf6641381dd6d7586f" dependencies = [ - "async-trait", - "chrono", - "futures-lite", - "lazy-regex", - "log", - "pin-project", - "rustls", - "rustls-pki-types", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", + "async-trait", + "chrono", + "futures-lite", + "lazy-regex", + "log", + "pin-project", + "rustls", + "rustls-pki-types", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", ] [[package]] @@ -9484,8 +9475,8 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4b854348b15b6c441bdd27ce9053569b016a0723eab2d015b1fd8e6abe4f708" dependencies = [ - "sval", - "sval_ref", + "sval", + "sval_ref", ] [[package]] @@ -9494,7 +9485,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0bd9e8b74410ddad37c6962587c5f9801a2caadba9e11f3f916ee3f31ae4a1f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9503,9 +9494,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe17b8deb33a9441280b4266c2d257e166bafbaea6e66b4b34ca139c91766d9" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9514,9 +9505,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "854addb048a5bafb1f496c98e0ab5b9b581c3843f03ca07c034ae110d3b7c623" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9525,9 +9516,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96cf068f482108ff44ae8013477cb047a1665d5f1a635ad7cf79582c1845dce9" dependencies = [ - "sval", - "sval_buffer", - "sval_ref", + "sval", + "sval_buffer", + "sval_ref", ] [[package]] @@ -9536,7 +9527,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed02126365ffe5ab8faa0abd9be54fbe68d03d607cd623725b0a71541f8aaa6f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9545,9 +9536,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a263383c6aa2076c4ef6011d3bae1b356edf6ea2613e3d8e8ebaa7b57dd707d5" dependencies = [ - "serde_core", - "sval", - "sval_nested", + "serde_core", + "sval", + "sval_nested", ] [[package]] @@ -9556,10 +9547,10 @@ version = "12.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60" dependencies = [ - "debugid", - "memmap2", - "stable_deref_trait", - "uuid", + "debugid", + "memmap2", + "stable_deref_trait", + "uuid", ] [[package]] @@ -9568,9 +9559,9 @@ version = "12.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec" dependencies = [ - "cpp_demangle", - "rustc-demangle", - "symbolic-common", + "cpp_demangle", + "rustc-demangle", + "symbolic-common", ] [[package]] @@ -9579,9 +9570,9 @@ version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9590,9 +9581,9 @@ version = "2.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9601,7 +9592,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -9610,7 +9601,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2" dependencies = [ - "crossbeam-queue", + "crossbeam-queue", ] [[package]] @@ -9619,10 +9610,10 @@ version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", + "proc-macro2", + "quote", + "syn 1.0.109", + "unicode-xid", ] [[package]] @@ -9631,9 +9622,9 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9642,13 +9633,13 @@ version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f" dependencies = [ - "libc", - "memchr", - "ntapi", - "objc2-core-foundation", - "objc2-io-kit", - "rayon", - "windows 0.61.3", + "libc", + "memchr", + "ntapi", + "objc2-core-foundation", + "objc2-io-kit", + "rayon", + "windows 0.61.3", ] [[package]] @@ -9657,9 +9648,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.9.4", - "system-configuration-sys", + "bitflags 2.10.0", + "core-foundation 0.9.4", + "system-configuration-sys", ] [[package]] @@ -9668,8 +9659,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -9684,7 +9675,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96374855068f47402c3121c6eed88d29cb1de8f3ab27090e273e420bdabcf050" dependencies = [ - "parking_lot", + "parking_lot", ] [[package]] @@ -9693,11 +9684,11 @@ version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ - "fastrand", - "getrandom 0.3.4", - "once_cell", - "rustix 1.1.3", - "windows-sys 0.61.2", + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix 1.1.3", + "windows-sys 0.61.2", ] [[package]] @@ -9706,7 +9697,7 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" dependencies = [ - "test-case-macros", + "test-case-macros", ] [[package]] @@ -9715,10 +9706,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 2.0.114", + "cfg-if", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9727,10 +9718,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "test-case-core", + "proc-macro2", + "quote", + "syn 2.0.114", + "test-case-core", ] [[package]] @@ -9739,7 +9730,7 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.69", + "thiserror-impl 1.0.69", ] [[package]] @@ -9748,7 +9739,7 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.17", ] [[package]] @@ -9757,9 +9748,9 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9768,9 +9759,9 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9779,7 +9770,7 @@ version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -9788,9 +9779,9 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" dependencies = [ - "byteorder", - "integer-encoding", - "ordered-float", + "byteorder", + "integer-encoding", + "ordered-float", ] [[package]] @@ -9799,9 +9790,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ - "libc", - "paste", - "tikv-jemalloc-sys", + "libc", + "paste", + "tikv-jemalloc-sys", ] [[package]] @@ -9810,8 +9801,8 @@ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -9820,8 +9811,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" dependencies = [ - "libc", - "tikv-jemalloc-sys", + "libc", + "tikv-jemalloc-sys", ] [[package]] @@ -9830,15 +9821,15 @@ version = "0.3.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" dependencies = [ - "deranged", - "itoa", - "libc", - "num-conv", - "num_threads", - "powerfmt", - "serde", - "time-core", - "time-macros", + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde", + "time-core", + "time-macros", ] [[package]] @@ -9853,8 +9844,8 @@ version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" dependencies = [ - "num-conv", - "time-core", + "num-conv", + "time-core", ] [[package]] @@ -9863,7 +9854,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ - "crunchy", + "crunchy", ] [[package]] @@ -9872,8 +9863,8 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" dependencies = [ - "displaydoc", - "zerovec", + "displaydoc", + "zerovec", ] [[package]] @@ -9882,8 +9873,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" dependencies = [ - "serde", - "serde_json", + "serde", + "serde_json", ] [[package]] @@ -9892,7 +9883,7 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" dependencies = [ - "tinyvec_macros", + "tinyvec_macros", ] [[package]] @@ -9907,8 +9898,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" dependencies = [ - "tls_codec_derive", - "zeroize", + "tls_codec_derive", + "zeroize", ] [[package]] @@ -9917,9 +9908,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9928,15 +9919,15 @@ version = "1.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" dependencies = [ - "bytes", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys 0.61.2", + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", ] [[package]] @@ -9945,9 +9936,9 @@ version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9956,8 +9947,8 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "rustls", - "tokio", + "rustls", + "tokio", ] [[package]] @@ -9966,9 +9957,9 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", + "futures-core", + "pin-project-lite", + "tokio", ] [[package]] @@ -9977,9 +9968,9 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545" dependencies = [ - "futures-core", - "tokio", - "tokio-stream", + "futures-core", + "tokio", + "tokio-stream", ] [[package]] @@ -9988,12 +9979,12 @@ version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", - "pin-project-lite", - "tokio", + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite", + "tokio", ] [[package]] @@ -10002,10 +9993,10 @@ version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ - "serde", - "serde_spanned", - "toml_datetime 0.6.11", - "toml_edit 0.22.27", + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "toml_edit 0.22.27", ] [[package]] @@ -10014,7 +10005,7 @@ version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -10023,7 +10014,7 @@ version = "0.7.5+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -10032,12 +10023,12 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.13.0", - "serde", - "serde_spanned", - "toml_datetime 0.6.11", - "toml_write", - "winnow", + "indexmap 2.13.0", + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "toml_write", + "winnow", ] [[package]] @@ -10046,10 +10037,10 @@ version = "0.23.10+spec-1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ - "indexmap 2.13.0", - "toml_datetime 0.7.5+spec-1.1.0", - "toml_parser", - "winnow", + "indexmap 2.13.0", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "winnow", ] [[package]] @@ -10058,7 +10049,7 @@ version = "1.0.6+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" dependencies = [ - "winnow", + "winnow", ] [[package]] @@ -10073,30 +10064,30 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" dependencies = [ - "async-trait", - "axum", - "base64", - "bytes", - "flate2", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "rustls-native-certs", - "socket2", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", + "async-trait", + "axum", + "base64", + "bytes", + "flate2", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "rustls-native-certs", + "socket2", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10105,10 +10096,10 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3" dependencies = [ - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.114", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10117,9 +10108,9 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" dependencies = [ - "bytes", - "prost 0.14.3", - "tonic", + "bytes", + "prost 0.14.3", + "tonic", ] [[package]] @@ -10128,14 +10119,14 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2" dependencies = [ - "prettyplease", - "proc-macro2", - "prost-build", - "prost-types", - "quote", - "syn 2.0.114", - "tempfile", - "tonic-build", + "prettyplease", + "proc-macro2", + "prost-build", + "prost-types", + "quote", + "syn 2.0.114", + "tempfile", + "tonic-build", ] [[package]] @@ -10144,17 +10135,17 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" dependencies = [ - "futures-core", - "futures-util", - "indexmap 2.13.0", - "pin-project-lite", - "slab", - "sync_wrapper", - "tokio", - "tokio-util", - "tower-layer", - "tower-service", - "tracing", + "futures-core", + "futures-util", + "indexmap 2.13.0", + "pin-project-lite", + "slab", + "sync_wrapper", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10163,23 +10154,23 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ - "async-compression", - "bitflags 2.10.0", - "bytes", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "iri-string", - "pin-project-lite", - "tokio", - "tokio-util", - "tower", - "tower-layer", - "tower-service", - "tracing", - "uuid", + "async-compression", + "bitflags 2.10.0", + "bytes", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "iri-string", + "pin-project-lite", + "tokio", + "tokio-util", + "tower", + "tower-layer", + "tower-service", + "tracing", + "uuid", ] [[package]] @@ -10200,10 +10191,10 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", ] [[package]] @@ -10212,10 +10203,10 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" dependencies = [ - "crossbeam-channel", - "thiserror 2.0.17", - "time", - "tracing-subscriber", + "crossbeam-channel", + "thiserror 2.0.17", + "time", + "tracing-subscriber", ] [[package]] @@ -10224,9 +10215,9 @@ version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10235,8 +10226,8 @@ version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ - "once_cell", - "valuable", + "once_cell", + "valuable", ] [[package]] @@ -10245,8 +10236,8 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" dependencies = [ - "tracing", - "tracing-subscriber", + "tracing", + "tracing-subscriber", ] [[package]] @@ -10255,28 +10246,25 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ - "log", - "once_cell", - "tracing-core", + "log", + "once_cell", + "tracing-core", ] [[package]] name = "tracing-opentelemetry" -version = "0.32.0" +version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e6e5658463dd88089aba75c7791e1d3120633b1bfde22478b28f625a9bb1b8e" +checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc" dependencies = [ - "js-sys", - "opentelemetry", - "opentelemetry_sdk", - "rustversion", - "smallvec", - "thiserror 2.0.17", - "tracing", - "tracing-core", - "tracing-log", - "tracing-subscriber", - "web-time", + "js-sys", + "opentelemetry", + "smallvec", + "tracing", + "tracing-core", + "tracing-log", + "tracing-subscriber", + "web-time", ] [[package]] @@ -10285,8 +10273,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" dependencies = [ - "serde", - "tracing-core", + "serde", + "tracing-core", ] [[package]] @@ -10295,20 +10283,20 @@ version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex-automata", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "time", - "tracing", - "tracing-core", - "tracing-log", - "tracing-serde", + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "time", + "tracing", + "tracing-core", + "tracing-log", + "tracing-serde", ] [[package]] @@ -10317,7 +10305,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1a814d25437963577f6221d33a2aaa60bfb44acc3330cdc7c334644e9832022" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -10356,9 +10344,9 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56d4e985b6dda743ae7fd4140c28105316ffd75bc58258ee6cc12934e3eb7a0c" dependencies = [ - "iana-time-zone", - "tz-rs", - "tzdb_data", + "iana-time-zone", + "tz-rs", + "tzdb_data", ] [[package]] @@ -10367,7 +10355,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42302a846dea7ab786f42dc5f519387069045acff793e1178d9368414168fe95" dependencies = [ - "tz-rs", + "tz-rs", ] [[package]] @@ -10406,8 +10394,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common 0.1.7", - "subtle", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -10416,8 +10404,8 @@ version = "0.6.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0386f227888b17b65d3e38219a7d41185035471300855c285667811907bb1677" dependencies = [ - "crypto-common 0.2.0-rc.9", - "subtle", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -10438,10 +10426,10 @@ version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", + "form_urlencoded", + "idna", + "percent-encoding", + "serde", ] [[package]] @@ -10468,12 +10456,12 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" dependencies = [ - "getrandom 0.3.4", - "js-sys", - "rand 0.9.2", - "serde_core", - "uuid-macro-internal", - "wasm-bindgen", + "getrandom 0.3.4", + "js-sys", + "rand 0.9.2", + "serde_core", + "uuid-macro-internal", + "wasm-bindgen", ] [[package]] @@ -10482,9 +10470,9 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10499,8 +10487,8 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" dependencies = [ - "value-bag-serde1", - "value-bag-sval2", + "value-bag-serde1", + "value-bag-sval2", ] [[package]] @@ -10509,9 +10497,9 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16530907bfe2999a1773ca5900a65101e092c70f642f25cc23ca0c43573262c5" dependencies = [ - "erased-serde 0.4.9", - "serde_core", - "serde_fmt", + "erased-serde 0.4.9", + "serde_core", + "serde_fmt", ] [[package]] @@ -10520,13 +10508,13 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d00ae130edd690eaa877e4f40605d534790d1cf1d651e7685bd6a144521b251f" dependencies = [ - "sval", - "sval_buffer", - "sval_dynamic", - "sval_fmt", - "sval_json", - "sval_ref", - "sval_serde", + "sval", + "sval_buffer", + "sval_dynamic", + "sval_fmt", + "sval_json", + "sval_ref", + "sval_serde", ] [[package]] @@ -10535,18 +10523,18 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f81eb4d9221ca29bad43d4b6871b6d2e7656e1af2cfca624a87e5d17880d831d" dependencies = [ - "async-trait", - "bytes", - "derive_builder 0.12.0", - "http 1.4.0", - "reqwest", - "rustify", - "rustify_derive", - "serde", - "serde_json", - "thiserror 1.0.69", - "tracing", - "url", + "async-trait", + "bytes", + "derive_builder 0.12.0", + "http 1.4.0", + "reqwest", + "rustify", + "rustify_derive", + "serde", + "serde_json", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -10567,8 +10555,8 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ - "same-file", - "winapi-util", + "same-file", + "winapi-util", ] [[package]] @@ -10577,7 +10565,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "try-lock", + "try-lock", ] [[package]] @@ -10592,7 +10580,7 @@ version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" dependencies = [ - "wit-bindgen", + "wit-bindgen", ] [[package]] @@ -10601,11 +10589,11 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", - "wasm-bindgen-shared", + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", ] [[package]] @@ -10614,11 +10602,11 @@ version = "0.4.56" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", + "cfg-if", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -10627,8 +10615,8 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" dependencies = [ - "quote", - "wasm-bindgen-macro-support", + "quote", + "wasm-bindgen-macro-support", ] [[package]] @@ -10637,11 +10625,11 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" dependencies = [ - "bumpalo", - "proc-macro2", - "quote", - "syn 2.0.114", - "wasm-bindgen-shared", + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.114", + "wasm-bindgen-shared", ] [[package]] @@ -10650,7 +10638,7 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -10659,11 +10647,11 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", ] [[package]] @@ -10672,8 +10660,8 @@ version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10682,8 +10670,8 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10692,7 +10680,7 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -10701,10 +10689,10 @@ version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.44", + "either", + "home", + "once_cell", + "rustix 0.38.44", ] [[package]] @@ -10713,7 +10701,7 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68" dependencies = [ - "serde", + "serde", ] [[package]] @@ -10722,8 +10710,8 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", ] [[package]] @@ -10738,7 +10726,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -10753,11 +10741,11 @@ version = "0.61.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" dependencies = [ - "windows-collections 0.2.0", - "windows-core 0.61.2", - "windows-future 0.2.1", - "windows-link 0.1.3", - "windows-numerics 0.2.0", + "windows-collections 0.2.0", + "windows-core 0.61.2", + "windows-future 0.2.1", + "windows-link 0.1.3", + "windows-numerics 0.2.0", ] [[package]] @@ -10766,10 +10754,10 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ - "windows-collections 0.3.2", - "windows-core 0.62.2", - "windows-future 0.3.2", - "windows-numerics 0.3.1", + "windows-collections 0.3.2", + "windows-core 0.62.2", + "windows-future 0.3.2", + "windows-numerics 0.3.1", ] [[package]] @@ -10778,7 +10766,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.61.2", ] [[package]] @@ -10787,7 +10775,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-core 0.62.2", + "windows-core 0.62.2", ] [[package]] @@ -10796,11 +10784,11 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.1.3", - "windows-result 0.3.4", - "windows-strings 0.4.2", + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", ] [[package]] @@ -10809,11 +10797,11 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10822,9 +10810,9 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", - "windows-threading 0.1.0", + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading 0.1.0", ] [[package]] @@ -10833,9 +10821,9 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", - "windows-threading 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", + "windows-threading 0.2.1", ] [[package]] @@ -10844,9 +10832,9 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10855,9 +10843,9 @@ version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10878,8 +10866,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", + "windows-core 0.61.2", + "windows-link 0.1.3", ] [[package]] @@ -10888,8 +10876,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", ] [[package]] @@ -10898,9 +10886,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10909,7 +10897,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10918,7 +10906,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10927,7 +10915,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10936,7 +10924,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10945,7 +10933,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10954,7 +10942,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10963,7 +10951,7 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.5", + "windows-targets 0.53.5", ] [[package]] @@ -10972,7 +10960,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10981,14 +10969,14 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -10997,15 +10985,15 @@ version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.2.1", - "windows_aarch64_gnullvm 0.53.1", - "windows_aarch64_msvc 0.53.1", - "windows_i686_gnu 0.53.1", - "windows_i686_gnullvm 0.53.1", - "windows_i686_msvc 0.53.1", - "windows_x86_64_gnu 0.53.1", - "windows_x86_64_gnullvm 0.53.1", - "windows_x86_64_msvc 0.53.1", + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] @@ -11014,7 +11002,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -11023,7 +11011,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -11128,7 +11116,7 @@ version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -11143,10 +11131,10 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a76ff259533532054cfbaefb115c613203c73707017459206380f03b3b3f266e" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11161,15 +11149,15 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11178,16 +11166,16 @@ version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "ring", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "ring", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11196,8 +11184,8 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ - "libc", - "rustix 1.1.3", + "libc", + "rustix 1.1.3", ] [[package]] @@ -11218,7 +11206,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" dependencies = [ - "lzma-sys", + "lzma-sys", ] [[package]] @@ -11233,7 +11221,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ - "time", + "time", ] [[package]] @@ -11242,9 +11230,9 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" dependencies = [ - "stable_deref_trait", - "yoke-derive", - "zerofrom", + "stable_deref_trait", + "yoke-derive", + "zerofrom", ] [[package]] @@ -11253,10 +11241,10 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11265,7 +11253,7 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" dependencies = [ - "zerocopy-derive", + "zerocopy-derive", ] [[package]] @@ -11274,9 +11262,9 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11285,7 +11273,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ - "zerofrom-derive", + "zerofrom-derive", ] [[package]] @@ -11294,10 +11282,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11306,7 +11294,7 @@ version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ - "zeroize_derive", + "zeroize_derive", ] [[package]] @@ -11315,9 +11303,9 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11326,9 +11314,9 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" dependencies = [ - "displaydoc", - "yoke", - "zerofrom", + "displaydoc", + "yoke", + "zerofrom", ] [[package]] @@ -11337,9 +11325,9 @@ version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", + "yoke", + "zerofrom", + "zerovec-derive", ] [[package]] @@ -11348,9 +11336,9 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11359,26 +11347,26 @@ version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" dependencies = [ - "aes 0.8.4", - "arbitrary", - "bzip2 0.6.1", - "constant_time_eq 0.3.1", - "crc32fast", - "deflate64", - "flate2", - "generic-array 0.14.7", - "getrandom 0.3.4", - "hmac 0.12.1", - "indexmap 2.13.0", - "lzma-rust2", - "memchr", - "pbkdf2 0.12.2", - "ppmd-rust", - "sha1 0.10.6", - "time", - "zeroize", - "zopfli", - "zstd", + "aes 0.8.4", + "arbitrary", + "bzip2 0.6.1", + "constant_time_eq 0.3.1", + "crc32fast", + "deflate64", + "flate2", + "generic-array 0.14.7", + "getrandom 0.3.4", + "hmac 0.12.1", + "indexmap 2.13.0", + "lzma-rust2", + "memchr", + "pbkdf2 0.12.2", + "ppmd-rust", + "sha1 0.10.6", + "time", + "zeroize", + "zopfli", + "zstd", ] [[package]] @@ -11399,10 +11387,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" dependencies = [ - "bumpalo", - "crc32fast", - "log", - "simd-adler32", + "bumpalo", + "crc32fast", + "log", + "simd-adler32", ] [[package]] @@ -11411,7 +11399,7 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "zstd-safe", + "zstd-safe", ] [[package]] @@ -11420,7 +11408,7 @@ version = "7.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" dependencies = [ - "zstd-sys", + "zstd-sys", ] [[package]] @@ -11429,6 +11417,6 @@ version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ - "cc", - "pkg-config", + "cc", + "pkg-config", ] diff --git a/Cargo.toml b/Cargo.toml index c8218545..836c3996 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -187,7 +187,7 @@ derive_builder = "0.20.2" dunce = "1.0.5" enumset = "1.1.10" faster-hex = "0.10.0" -flate2 = "1.1.5" +flate2 = "1.1.8" flexi_logger = { version = "0.31.7", features = ["trc", "dont_minimize_extra_stacks", "compress", "kv", "json"] } glob = "0.3.3" google-cloud-storage = "1.5.0" @@ -243,7 +243,7 @@ thiserror = "2.0.17" tracing = { version = "0.1.44" } tracing-appender = "0.2.4" tracing-error = "0.2.1" -tracing-opentelemetry = "0.32.0" +tracing-opentelemetry = "0.32.1" tracing-subscriber = { version = "0.3.22", features = ["env-filter", "time"] } transform-stream = "0.3.1" url = "2.5.8" From dc76e4472ef75f3444bdbdf77a835c7a01a32884 Mon Sep 17 00:00:00 2001 From: houseme Date: Tue, 13 Jan 2026 01:11:50 +0800 Subject: [PATCH 05/22] Fix object tagging functionality issues #1415 (#1485) --- Cargo.lock | 8068 ++++++++++++++++++------------------ rustfs/src/storage/ecfs.rs | 170 +- 2 files changed, 4169 insertions(+), 4069 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c8f5b92..238c6b6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli", + "gimli", ] [[package]] @@ -23,8 +23,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common 0.1.7", - "generic-array 0.14.7", + "crypto-common 0.1.7", + "generic-array 0.14.7", ] [[package]] @@ -33,8 +33,8 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67a578e7d4edaef88aeb9cdd81556f4a62266ce26601317c006a79e8bc58b5af" dependencies = [ - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", ] [[package]] @@ -43,9 +43,9 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -54,10 +54,10 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd9e1c818b25efb32214df89b0ec22f01aa397aaeb718d1022bf0635a3bfd1a8" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "zeroize", ] [[package]] @@ -66,12 +66,12 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" dependencies = [ - "aead 0.5.2", - "aes 0.8.4", - "cipher 0.4.4", - "ctr 0.9.2", - "ghash 0.5.1", - "subtle", + "aead 0.5.2", + "aes 0.8.4", + "cipher 0.4.4", + "ctr 0.9.2", + "ghash 0.5.1", + "subtle", ] [[package]] @@ -80,13 +80,13 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f5c07f414d7dc0755870f84c7900425360288d24e0eae4836f9dee19a30fa5f" dependencies = [ - "aead 0.6.0-rc.5", - "aes 0.9.0-rc.2", - "cipher 0.5.0-rc.3", - "ctr 0.10.0-rc.2", - "ghash 0.6.0-rc.3", - "subtle", - "zeroize", + "aead 0.6.0-rc.5", + "aes 0.9.0-rc.2", + "cipher 0.5.0-rc.3", + "ctr 0.10.0-rc.2", + "ghash 0.6.0-rc.3", + "subtle", + "zeroize", ] [[package]] @@ -95,12 +95,12 @@ version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ - "cfg-if", - "const-random", - "getrandom 0.3.4", - "once_cell", - "version_check", - "zerocopy", + "cfg-if", + "const-random", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", ] [[package]] @@ -109,7 +109,7 @@ version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -118,7 +118,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" dependencies = [ - "equator", + "equator", ] [[package]] @@ -133,7 +133,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" dependencies = [ - "alloc-no-stdlib", + "alloc-no-stdlib", ] [[package]] @@ -142,7 +142,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" dependencies = [ - "cc", + "cc", ] [[package]] @@ -157,7 +157,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" dependencies = [ - "libc", + "libc", ] [[package]] @@ -172,13 +172,13 @@ version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", ] [[package]] @@ -193,7 +193,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ - "utf8parse", + "utf8parse", ] [[package]] @@ -202,7 +202,7 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -211,9 +211,9 @@ version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.61.2", + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", ] [[package]] @@ -228,7 +228,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" dependencies = [ - "object 0.32.2", + "object 0.32.2", ] [[package]] @@ -237,7 +237,7 @@ version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" dependencies = [ - "derive_arbitrary", + "derive_arbitrary", ] [[package]] @@ -246,7 +246,7 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e" dependencies = [ - "rustversion", + "rustversion", ] [[package]] @@ -255,10 +255,10 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" dependencies = [ - "base64ct", - "blake2 0.10.6", - "cpufeatures", - "password-hash 0.5.0", + "base64ct", + "blake2 0.10.6", + "cpufeatures", + "password-hash 0.5.0", ] [[package]] @@ -267,10 +267,10 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26e88a084142953a0415c47ddf4081eddf9a6d310012bbe92e9827d03e447f0" dependencies = [ - "base64ct", - "blake2 0.11.0-rc.3", - "cpufeatures", - "password-hash 0.6.0-rc.8", + "base64ct", + "blake2 0.11.0-rc.3", + "cpufeatures", + "password-hash 0.6.0-rc.8", ] [[package]] @@ -291,19 +291,19 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e" dependencies = [ - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-csv", - "arrow-data", - "arrow-ipc", - "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema", - "arrow-select", - "arrow-string", + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-csv", + "arrow-data", + "arrow-ipc", + "arrow-json", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", ] [[package]] @@ -312,12 +312,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "num-traits", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "num-traits", ] [[package]] @@ -326,17 +326,17 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c" dependencies = [ - "ahash", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "chrono-tz", - "half", - "hashbrown 0.16.1", - "num-complex", - "num-integer", - "num-traits", + "ahash", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "chrono-tz", + "half", + "hashbrown 0.16.1", + "num-complex", + "num-integer", + "num-traits", ] [[package]] @@ -345,10 +345,10 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56" dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", + "bytes", + "half", + "num-bigint", + "num-traits", ] [[package]] @@ -357,20 +357,20 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-ord", - "arrow-schema", - "arrow-select", - "atoi", - "base64", - "chrono", - "comfy-table", - "half", - "lexical-core", - "num-traits", - "ryu", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-ord", + "arrow-schema", + "arrow-select", + "atoi", + "base64", + "chrono", + "comfy-table", + "half", + "lexical-core", + "num-traits", + "ryu", ] [[package]] @@ -379,13 +379,13 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e4100b729fe656f2e4fb32bc5884f14acf9118d4ad532b7b33c1132e4dce896" dependencies = [ - "arrow-array", - "arrow-cast", - "arrow-schema", - "chrono", - "csv", - "csv-core", - "regex", + "arrow-array", + "arrow-cast", + "arrow-schema", + "chrono", + "csv", + "csv-core", + "regex", ] [[package]] @@ -394,11 +394,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597" dependencies = [ - "arrow-buffer", - "arrow-schema", - "half", - "num-integer", - "num-traits", + "arrow-buffer", + "arrow-schema", + "half", + "num-integer", + "num-traits", ] [[package]] @@ -407,14 +407,14 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3ca63edd2073fcb42ba112f8ae165df1de935627ead6e203d07c99445f2081" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "flatbuffers", - "lz4_flex", - "zstd", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "flatbuffers", + "lz4_flex", + "zstd", ] [[package]] @@ -423,22 +423,22 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a36b2332559d3310ebe3e173f75b29989b4412df4029a26a30cc3f7da0869297" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-schema", - "chrono", - "half", - "indexmap 2.13.0", - "itoa", - "lexical-core", - "memchr", - "num-traits", - "ryu", - "serde_core", - "serde_json", - "simdutf8", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "indexmap 2.13.0", + "itoa", + "lexical-core", + "memchr", + "num-traits", + "ryu", + "serde_core", + "serde_json", + "simdutf8", ] [[package]] @@ -447,11 +447,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", ] [[package]] @@ -460,11 +460,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "half", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", ] [[package]] @@ -473,8 +473,8 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c" dependencies = [ - "serde_core", - "serde_json", + "serde_core", + "serde_json", ] [[package]] @@ -483,12 +483,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "num-traits", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num-traits", ] [[package]] @@ -497,15 +497,15 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "memchr", - "num-traits", - "regex", - "regex-syntax", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num-traits", + "regex", + "regex-syntax", ] [[package]] @@ -514,14 +514,14 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", - "displaydoc", - "nom 7.1.3", - "num-traits", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs-derive", + "asn1-rs-impl", + "displaydoc", + "nom 7.1.3", + "num-traits", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -530,10 +530,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -542,9 +542,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -553,14 +553,14 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5" dependencies = [ - "filetime", - "futures-core", - "libc", - "portable-atomic", - "rustc-hash", - "tokio", - "tokio-stream", - "xattr", + "filetime", + "futures-core", + "libc", + "portable-atomic", + "rustc-hash", + "tokio", + "tokio-stream", + "xattr", ] [[package]] @@ -569,10 +569,10 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" dependencies = [ - "concurrent-queue", - "event-listener-strategy", - "futures-core", - "pin-project-lite", + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", ] [[package]] @@ -581,16 +581,16 @@ version = "0.4.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c" dependencies = [ - "brotli 7.0.0", - "bzip2 0.5.2", - "flate2", - "futures-core", - "memchr", - "pin-project-lite", - "tokio", - "xz2", - "zstd", - "zstd-safe", + "brotli 7.0.0", + "bzip2 0.5.2", + "flate2", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", + "xz2", + "zstd", + "zstd-safe", ] [[package]] @@ -599,9 +599,9 @@ version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ - "event-listener", - "event-listener-strategy", - "pin-project-lite", + "event-listener", + "event-listener-strategy", + "pin-project-lite", ] [[package]] @@ -610,9 +610,9 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -621,9 +621,9 @@ version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -632,7 +632,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -647,9 +647,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99e1aca718ea7b89985790c94aad72d77533063fe00bc497bb79a7c2dae6a661" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -664,28 +664,28 @@ version = "1.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sdk-sso", - "aws-sdk-ssooidc", - "aws-sdk-sts", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "hex", - "http 1.4.0", - "ring", - "time", - "tokio", - "tracing", - "url", - "zeroize", + "aws-credential-types", + "aws-runtime", + "aws-sdk-sso", + "aws-sdk-ssooidc", + "aws-sdk-sts", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "hex", + "http 1.4.0", + "ring", + "time", + "tokio", + "tracing", + "url", + "zeroize", ] [[package]] @@ -694,10 +694,10 @@ version = "1.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "zeroize", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "zeroize", ] [[package]] @@ -706,9 +706,9 @@ version = "1.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" dependencies = [ - "aws-lc-sys", - "untrusted 0.7.1", - "zeroize", + "aws-lc-sys", + "untrusted 0.7.1", + "zeroize", ] [[package]] @@ -717,10 +717,10 @@ version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" dependencies = [ - "cc", - "cmake", - "dunce", - "fs_extra", + "cc", + "cmake", + "dunce", + "fs_extra", ] [[package]] @@ -729,23 +729,23 @@ version = "1.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d81b5b2898f6798ad58f484856768bca817e3cd9de0974c24ae0f1113fe88f1b" dependencies = [ - "aws-credential-types", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "tracing", - "uuid", + "aws-credential-types", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "tracing", + "uuid", ] [[package]] @@ -754,32 +754,32 @@ version = "1.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d65fddc3844f902dfe1864acb8494db5f9342015ee3ab7890270d36fbd2e01c" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-checksums", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "bytes", - "fastrand", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "lru", - "percent-encoding", - "regex-lite", - "sha2 0.10.9", - "tracing", - "url", + "aws-credential-types", + "aws-runtime", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-checksums", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "bytes", + "fastrand", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "lru", + "percent-encoding", + "regex-lite", + "sha2 0.10.9", + "tracing", + "url", ] [[package]] @@ -788,20 +788,20 @@ version = "1.91.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -810,20 +810,20 @@ version = "1.93.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -832,21 +832,21 @@ version = "1.95.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-query", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-query", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -855,26 +855,26 @@ version = "1.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c" dependencies = [ - "aws-credential-types", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "crypto-bigint 0.5.5", - "form_urlencoded", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "p256 0.11.1", - "percent-encoding", - "ring", - "sha2 0.10.9", - "subtle", - "time", - "tracing", - "zeroize", + "aws-credential-types", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "crypto-bigint 0.5.5", + "form_urlencoded", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "p256 0.11.1", + "percent-encoding", + "ring", + "sha2 0.10.9", + "subtle", + "time", + "tracing", + "zeroize", ] [[package]] @@ -883,9 +883,9 @@ version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c" dependencies = [ - "futures-util", - "pin-project-lite", - "tokio", + "futures-util", + "pin-project-lite", + "tokio", ] [[package]] @@ -894,18 +894,18 @@ version = "0.63.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87294a084b43d649d967efe58aa1f9e0adc260e13a6938eb904c0ae9b45824ae" dependencies = [ - "aws-smithy-http", - "aws-smithy-types", - "bytes", - "crc-fast", - "hex", - "http 0.2.12", - "http-body 0.4.6", - "md-5 0.10.6", - "pin-project-lite", - "sha1 0.10.6", - "sha2 0.10.9", - "tracing", + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "crc-fast", + "hex", + "http 0.2.12", + "http-body 0.4.6", + "md-5 0.10.6", + "pin-project-lite", + "sha1 0.10.6", + "sha2 0.10.9", + "tracing", ] [[package]] @@ -914,9 +914,9 @@ version = "0.60.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc12f8b310e38cad85cf3bef45ad236f470717393c613266ce0a89512286b650" dependencies = [ - "aws-smithy-types", - "bytes", - "crc32fast", + "aws-smithy-types", + "bytes", + "crc32fast", ] [[package]] @@ -925,20 +925,20 @@ version = "0.62.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b" dependencies = [ - "aws-smithy-eventstream", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "bytes-utils", - "futures-core", - "futures-util", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "pin-utils", - "tracing", + "aws-smithy-eventstream", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "bytes-utils", + "futures-core", + "futures-util", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tracing", ] [[package]] @@ -947,22 +947,22 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "h2", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower", - "tracing", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "h2", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower", + "tracing", ] [[package]] @@ -971,7 +971,7 @@ version = "0.61.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551" dependencies = [ - "aws-smithy-types", + "aws-smithy-types", ] [[package]] @@ -980,7 +980,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17f616c3f2260612fe44cede278bafa18e73e6479c4e393e2c4518cf2a9a228a" dependencies = [ - "aws-smithy-runtime-api", + "aws-smithy-runtime-api", ] [[package]] @@ -989,8 +989,8 @@ version = "0.60.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d" dependencies = [ - "aws-smithy-types", - "urlencoding", + "aws-smithy-types", + "urlencoding", ] [[package]] @@ -999,22 +999,22 @@ version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a392db6c583ea4a912538afb86b7be7c5d8887d91604f50eb55c262ee1b4a5f5" dependencies = [ - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-http-client", - "aws-smithy-observability", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "fastrand", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "pin-project-lite", - "pin-utils", - "tokio", - "tracing", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-http-client", + "aws-smithy-observability", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "fastrand", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "pin-project-lite", + "pin-utils", + "tokio", + "tracing", ] [[package]] @@ -1023,15 +1023,15 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab0d43d899f9e508300e587bf582ba54c27a452dd0a9ea294690669138ae14a2" dependencies = [ - "aws-smithy-async", - "aws-smithy-types", - "bytes", - "http 0.2.12", - "http 1.4.0", - "pin-project-lite", - "tokio", - "tracing", - "zeroize", + "aws-smithy-async", + "aws-smithy-types", + "bytes", + "http 0.2.12", + "http 1.4.0", + "pin-project-lite", + "tokio", + "tracing", + "zeroize", ] [[package]] @@ -1040,24 +1040,24 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "905cb13a9895626d49cf2ced759b062d913834c7482c38e49557eac4e6193f01" dependencies = [ - "base64-simd", - "bytes", - "bytes-utils", - "futures-core", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "http-body-util", - "itoa", - "num-integer", - "pin-project-lite", - "pin-utils", - "ryu", - "serde", - "time", - "tokio", - "tokio-util", + "base64-simd", + "bytes", + "bytes-utils", + "futures-core", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "http-body-util", + "itoa", + "num-integer", + "pin-project-lite", + "pin-utils", + "ryu", + "serde", + "time", + "tokio", + "tokio-util", ] [[package]] @@ -1066,7 +1066,7 @@ version = "0.60.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57" dependencies = [ - "xmlparser", + "xmlparser", ] [[package]] @@ -1075,12 +1075,12 @@ version = "1.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164" dependencies = [ - "aws-credential-types", - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "rustc_version", - "tracing", + "aws-credential-types", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "rustc_version", + "tracing", ] [[package]] @@ -1089,31 +1089,31 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ - "axum-core", - "bytes", - "form_urlencoded", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "itoa", - "matchit 0.8.4", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "serde_core", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tower", - "tower-layer", - "tower-service", - "tracing", + "axum-core", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit 0.8.4", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde_core", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1122,17 +1122,17 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "sync_wrapper", - "tower-layer", - "tower-service", - "tracing", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1141,20 +1141,20 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1df331683d982a0b9492b38127151e6453639cd34926eb9c07d4cd8c6d22bfc" dependencies = [ - "arc-swap", - "bytes", - "either", - "fs-err", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", + "arc-swap", + "bytes", + "either", + "fs-err", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", ] [[package]] @@ -1163,13 +1163,13 @@ version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object 0.37.3", - "rustc-demangle", - "windows-link 0.2.1", + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object 0.37.3", + "rustc-demangle", + "windows-link 0.2.1", ] [[package]] @@ -1202,8 +1202,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -1218,9 +1218,9 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2" dependencies = [ - "blowfish", - "pbkdf2 0.12.2", - "sha2 0.10.9", + "blowfish", + "pbkdf2 0.12.2", + "sha2 0.10.9", ] [[package]] @@ -1229,11 +1229,11 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" dependencies = [ - "autocfg", - "libm", - "num-bigint", - "num-integer", - "num-traits", + "autocfg", + "libm", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -1242,7 +1242,7 @@ version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1257,7 +1257,7 @@ version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1266,7 +1266,7 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -1275,7 +1275,7 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "679065eb2b85a078ace42411e657bef3a6afe93a40d1b9cb04e39ca303cc3f36" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -1284,14 +1284,14 @@ version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if", - "constant_time_eq 0.4.2", - "cpufeatures", - "memmap2", - "rayon-core", + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq 0.4.2", + "cpufeatures", + "memmap2", + "rayon-core", ] [[package]] @@ -1300,7 +1300,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1309,8 +1309,8 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f" dependencies = [ - "hybrid-array", - "zeroize", + "hybrid-array", + "zeroize", ] [[package]] @@ -1319,7 +1319,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1328,8 +1328,8 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" dependencies = [ - "byteorder", - "cipher 0.4.4", + "byteorder", + "cipher 0.4.4", ] [[package]] @@ -1338,8 +1338,8 @@ version = "3.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234655ec178edd82b891e262ea7cf71f6584bcd09eff94db786be23f1821825c" dependencies = [ - "bon-macros", - "rustversion", + "bon-macros", + "rustversion", ] [[package]] @@ -1348,13 +1348,13 @@ version = "3.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89ec27229c38ed0eb3c0feee3d2c1d6a4379ae44f418a29a658890e062d8f365" dependencies = [ - "darling 0.23.0", - "ident_case", - "prettyplease", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.114", + "darling 0.23.0", + "ident_case", + "prettyplease", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.114", ] [[package]] @@ -1363,9 +1363,9 @@ version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 4.0.3", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor 4.0.3", ] [[package]] @@ -1374,9 +1374,9 @@ version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 5.0.0", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor 5.0.0", ] [[package]] @@ -1385,8 +1385,8 @@ version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1395,8 +1395,8 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1423,7 +1423,7 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1432,8 +1432,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" dependencies = [ - "bytes", - "either", + "bytes", + "either", ] [[package]] @@ -1448,7 +1448,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289" dependencies = [ - "bytes", + "bytes", ] [[package]] @@ -1457,7 +1457,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" dependencies = [ - "bzip2-sys", + "bzip2-sys", ] [[package]] @@ -1466,7 +1466,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" dependencies = [ - "libbz2-rs-sys", + "libbz2-rs-sys", ] [[package]] @@ -1475,8 +1475,8 @@ version = "0.1.13+1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" dependencies = [ - "cc", - "pkg-config", + "cc", + "pkg-config", ] [[package]] @@ -1485,7 +1485,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1494,8 +1494,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -1504,12 +1504,12 @@ version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9" dependencies = [ - "camino", - "cargo-platform", - "semver", - "serde", - "serde_json", - "thiserror 2.0.17", + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.17", ] [[package]] @@ -1524,7 +1524,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -1533,10 +1533,10 @@ version = "1.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3" dependencies = [ - "find-msvc-tools", - "jobserver", - "libc", - "shlex", + "find-msvc-tools", + "jobserver", + "libc", + "shlex", ] [[package]] @@ -1557,9 +1557,9 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -1568,11 +1568,11 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f895fb33c1ad22da4bc79d37c0bddff8aee2ba4575705345eb73b8ffbc386074" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "rand_core 0.10.0-rc-3", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "rand_core 0.10.0-rc-3", + "zeroize", ] [[package]] @@ -1581,10 +1581,10 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c662d31454533832974f2b2b3fcbd552ed3cde94c95e614a5039d297dd97076f" dependencies = [ - "aead 0.6.0-rc.5", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "poly1305 0.9.0-rc.3", + "aead 0.6.0-rc.5", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "poly1305 0.9.0-rc.3", ] [[package]] @@ -1593,12 +1593,12 @@ version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" dependencies = [ - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "wasm-bindgen", - "windows-link 0.2.1", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link 0.2.1", ] [[package]] @@ -1607,8 +1607,8 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" dependencies = [ - "chrono", - "phf 0.12.1", + "chrono", + "phf 0.12.1", ] [[package]] @@ -1617,9 +1617,9 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", + "ciborium-io", + "ciborium-ll", + "serde", ] [[package]] @@ -1634,8 +1634,8 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ - "ciborium-io", - "half", + "ciborium-io", + "half", ] [[package]] @@ -1644,8 +1644,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common 0.1.7", - "inout 0.1.4", + "crypto-common 0.1.7", + "inout 0.1.4", ] [[package]] @@ -1654,10 +1654,10 @@ version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ - "block-buffer 0.11.0", - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", - "zeroize", + "block-buffer 0.11.0", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", + "zeroize", ] [[package]] @@ -1666,8 +1666,8 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" dependencies = [ - "clap_builder", - "clap_derive", + "clap_builder", + "clap_derive", ] [[package]] @@ -1676,10 +1676,10 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim 0.11.1", + "anstream", + "anstyle", + "clap_lex", + "strsim 0.11.1", ] [[package]] @@ -1688,10 +1688,10 @@ version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1706,7 +1706,7 @@ version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" dependencies = [ - "cc", + "cc", ] [[package]] @@ -1727,8 +1727,8 @@ version = "7.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" dependencies = [ - "unicode-segmentation", - "unicode-width", + "unicode-segmentation", + "unicode-width", ] [[package]] @@ -1737,7 +1737,7 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1758,7 +1758,7 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" dependencies = [ - "const-random-macro", + "const-random-macro", ] [[package]] @@ -1767,9 +1767,9 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.17", - "once_cell", - "tiny-keccak", + "getrandom 0.2.17", + "once_cell", + "tiny-keccak", ] [[package]] @@ -1778,7 +1778,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93e19f68b180ebff43d6d42005c4b5f046c65fcac28369ba8b3beaad633f9ec0" dependencies = [ - "const-str-proc-macro", + "const-str-proc-macro", ] [[package]] @@ -1787,9 +1787,9 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d3e0f24ee268386bd3ab4e04fc60df9a818ad801b5ffe592f388a6acc5053fb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1798,7 +1798,7 @@ version = "0.2.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" dependencies = [ - "const_format_proc_macros", + "const_format_proc_macros", ] [[package]] @@ -1807,9 +1807,9 @@ version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" dependencies = [ - "proc-macro2", - "quote", - "unicode-xid", + "proc-macro2", + "quote", + "unicode-xid", ] [[package]] @@ -1830,7 +1830,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" dependencies = [ - "unicode-segmentation", + "unicode-segmentation", ] [[package]] @@ -1839,8 +1839,8 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1849,8 +1849,8 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1865,9 +1865,9 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0940496e5c83c54f3b753d5317daec82e8edac71c33aaa1f666d76f518de2444" dependencies = [ - "hax-lib", - "pastey 0.1.1", - "rand 0.9.2", + "hax-lib", + "pastey 0.1.1", + "rand 0.9.2", ] [[package]] @@ -1876,7 +1876,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1885,7 +1885,7 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ - "libc", + "libc", ] [[package]] @@ -1894,7 +1894,7 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" dependencies = [ - "crc-catalog", + "crc-catalog", ] [[package]] @@ -1909,11 +1909,11 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ddc2d09feefeee8bd78101665bd8645637828fa9317f9f292496dbbd8c65ff3" dependencies = [ - "crc", - "digest 0.10.7", - "rand 0.9.2", - "regex", - "rustversion", + "crc", + "digest 0.10.7", + "rand 0.9.2", + "regex", + "rustversion", ] [[package]] @@ -1922,7 +1922,7 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" dependencies = [ - "rustc_version", + "rustc_version", ] [[package]] @@ -1931,7 +1931,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1940,23 +1940,23 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf" dependencies = [ - "alloca", - "anes", - "cast", - "ciborium", - "clap", - "criterion-plot", - "itertools 0.13.0", - "num-traits", - "oorandom", - "page_size", - "plotters", - "rayon", - "regex", - "serde", - "serde_json", - "tinytemplate", - "walkdir", + "alloca", + "anes", + "cast", + "ciborium", + "clap", + "criterion-plot", + "itertools 0.13.0", + "num-traits", + "oorandom", + "page_size", + "plotters", + "rayon", + "regex", + "serde", + "serde_json", + "tinytemplate", + "walkdir", ] [[package]] @@ -1965,8 +1965,8 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4" dependencies = [ - "cast", - "itertools 0.13.0", + "cast", + "itertools 0.13.0", ] [[package]] @@ -1975,7 +1975,7 @@ version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1984,8 +1984,8 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] @@ -1994,7 +1994,7 @@ version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -2003,7 +2003,7 @@ version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -2024,10 +2024,10 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -2036,10 +2036,10 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -2048,11 +2048,11 @@ version = "0.7.0-rc.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a9e36ac79ac44866b74e08a0b4925f97b984e3fff17680d2c6fbce8317ab0f6" dependencies = [ - "ctutils", - "num-traits", - "rand_core 0.10.0-rc-3", - "serdect", - "zeroize", + "ctutils", + "num-traits", + "rand_core 0.10.0-rc-3", + "serdect", + "zeroize", ] [[package]] @@ -2061,8 +2061,8 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ - "generic-array 0.14.7", - "typenum", + "generic-array 0.14.7", + "typenum", ] [[package]] @@ -2071,9 +2071,9 @@ version = "0.2.0-rc.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41b8986f836d4aeb30ccf4c9d3bd562fd716074cfd7fc4a2948359fbd21ed809" dependencies = [ - "getrandom 0.4.0-rc.0", - "hybrid-array", - "rand_core 0.10.0-rc-3", + "getrandom 0.4.0-rc.0", + "hybrid-array", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2082,9 +2082,9 @@ version = "0.7.0-pre.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0b07a7a616370e8b6efca0c6a25e5f4c6d02fde11f3d570e4af64d8ed7e2e9" dependencies = [ - "crypto-bigint 0.7.0-rc.15", - "libm", - "rand_core 0.10.0-rc-3", + "crypto-bigint 0.7.0-rc.15", + "libm", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2093,10 +2093,10 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde_core", + "csv-core", + "itoa", + "ryu", + "serde_core", ] [[package]] @@ -2105,7 +2105,7 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -2114,7 +2114,7 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -2123,7 +2123,7 @@ version = "0.10.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0ec605a95e78815a4c4b8040217d56d5a1ab37043851ee9e7e65b89afa00e3" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -2132,7 +2132,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c67c81499f542d1dd38c6a2a2fe825f4dd4bca5162965dd2eea0c8119873d3c" dependencies = [ - "cmov", + "cmov", ] [[package]] @@ -2141,14 +2141,14 @@ version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.10.7", - "fiat-crypto 0.2.9", - "rustc_version", - "subtle", - "zeroize", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.10.7", + "fiat-crypto 0.2.9", + "rustc_version", + "subtle", + "zeroize", ] [[package]] @@ -2157,13 +2157,13 @@ version = "5.0.0-pre.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d8cfa313d59919eda35b420bd37db85bf58d6754d6f128b9949932b0c0fcce7" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.11.0-rc.5", - "fiat-crypto 0.3.0", - "rustc_version", - "subtle", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.11.0-rc.5", + "fiat-crypto 0.3.0", + "rustc_version", + "subtle", ] [[package]] @@ -2172,9 +2172,9 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -2183,8 +2183,8 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", + "darling_core 0.14.4", + "darling_macro 0.14.4", ] [[package]] @@ -2193,8 +2193,8 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core 0.20.11", - "darling_macro 0.20.11", + "darling_core 0.20.11", + "darling_macro 0.20.11", ] [[package]] @@ -2203,8 +2203,8 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" dependencies = [ - "darling_core 0.21.3", - "darling_macro 0.21.3", + "darling_core 0.21.3", + "darling_macro 0.21.3", ] [[package]] @@ -2213,8 +2213,8 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" dependencies = [ - "darling_core 0.23.0", - "darling_macro 0.23.0", + "darling_core 0.23.0", + "darling_macro 0.23.0", ] [[package]] @@ -2223,12 +2223,12 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 1.0.109", ] [[package]] @@ -2237,12 +2237,12 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2251,12 +2251,12 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2265,11 +2265,11 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" dependencies = [ - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2278,9 +2278,9 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" dependencies = [ - "darling_core 0.14.4", - "quote", - "syn 1.0.109", + "darling_core 0.14.4", + "quote", + "syn 1.0.109", ] [[package]] @@ -2289,9 +2289,9 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core 0.20.11", - "quote", - "syn 2.0.114", + "darling_core 0.20.11", + "quote", + "syn 2.0.114", ] [[package]] @@ -2300,9 +2300,9 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" dependencies = [ - "darling_core 0.21.3", - "quote", - "syn 2.0.114", + "darling_core 0.21.3", + "quote", + "syn 2.0.114", ] [[package]] @@ -2311,9 +2311,9 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" dependencies = [ - "darling_core 0.23.0", - "quote", - "syn 2.0.114", + "darling_core 0.23.0", + "quote", + "syn 2.0.114", ] [[package]] @@ -2322,12 +2322,12 @@ version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ - "cfg-if", - "crossbeam-utils", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core", + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", ] [[package]] @@ -2342,54 +2342,54 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ba7cb113e9c0bedf9e9765926031e132fa05a1b09ba6e93a6d1a4d7044457b8" dependencies = [ - "arrow", - "arrow-schema", - "async-trait", - "bytes", - "bzip2 0.6.1", - "chrono", - "datafusion-catalog", - "datafusion-catalog-listing", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-datasource-arrow", - "datafusion-datasource-csv", - "datafusion-datasource-json", - "datafusion-datasource-parquet", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-nested", - "datafusion-functions-table", - "datafusion-functions-window", - "datafusion-optimizer", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-optimizer", - "datafusion-physical-plan", - "datafusion-session", - "datafusion-sql", - "flate2", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "rand 0.9.2", - "regex", - "rstest", - "sqlparser", - "tempfile", - "tokio", - "url", - "uuid", - "xz2", - "zstd", + "arrow", + "arrow-schema", + "async-trait", + "bytes", + "bzip2 0.6.1", + "chrono", + "datafusion-catalog", + "datafusion-catalog-listing", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-datasource-arrow", + "datafusion-datasource-csv", + "datafusion-datasource-json", + "datafusion-datasource-parquet", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-nested", + "datafusion-functions-table", + "datafusion-functions-window", + "datafusion-optimizer", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-optimizer", + "datafusion-physical-plan", + "datafusion-session", + "datafusion-sql", + "flate2", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "rand 0.9.2", + "regex", + "rstest", + "sqlparser", + "tempfile", + "tokio", + "url", + "uuid", + "xz2", + "zstd", ] [[package]] @@ -2398,23 +2398,23 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66a3a799f914a59b1ea343906a0486f17061f39509af74e874a866428951130d" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "tokio", + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "tokio", ] [[package]] @@ -2423,22 +2423,22 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db1b113c80d7a0febcd901476a57aef378e717c54517a163ed51417d87621b0" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "tokio", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "tokio", ] [[package]] @@ -2447,22 +2447,22 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c10f7659e96127d25e8366be7c8be4109595d6a2c3eac70421f380a7006a1b0" dependencies = [ - "ahash", - "arrow", - "arrow-ipc", - "chrono", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "libc", - "log", - "object_store", - "parquet", - "paste", - "recursive", - "sqlparser", - "tokio", - "web-time", + "ahash", + "arrow", + "arrow-ipc", + "chrono", + "half", + "hashbrown 0.14.5", + "indexmap 2.13.0", + "libc", + "log", + "object_store", + "parquet", + "paste", + "recursive", + "sqlparser", + "tokio", + "web-time", ] [[package]] @@ -2471,9 +2471,9 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b92065bbc6532c6651e2f7dd30b55cba0c7a14f860c7e1d15f165c41a1868d95" dependencies = [ - "futures", - "log", - "tokio", + "futures", + "log", + "tokio", ] [[package]] @@ -2482,33 +2482,33 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fde13794244bc7581cd82f6fff217068ed79cdc344cafe4ab2c3a1c3510b38d6" dependencies = [ - "arrow", - "async-compression", - "async-trait", - "bytes", - "bzip2 0.6.1", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "flate2", - "futures", - "glob", - "itertools 0.14.0", - "log", - "object_store", - "rand 0.9.2", - "tokio", - "tokio-util", - "url", - "xz2", - "zstd", + "arrow", + "async-compression", + "async-trait", + "bytes", + "bzip2 0.6.1", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "flate2", + "futures", + "glob", + "itertools 0.14.0", + "log", + "object_store", + "rand 0.9.2", + "tokio", + "tokio-util", + "url", + "xz2", + "zstd", ] [[package]] @@ -2517,22 +2517,22 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "804fa9b4ecf3157982021770617200ef7c1b2979d57bec9044748314775a9aea" dependencies = [ - "arrow", - "arrow-ipc", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "object_store", - "tokio", + "arrow", + "arrow-ipc", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "object_store", + "tokio", ] [[package]] @@ -2541,21 +2541,21 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61a1641a40b259bab38131c5e6f48fac0717bedb7dc93690e604142a849e0568" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "regex", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "regex", + "tokio", ] [[package]] @@ -2564,20 +2564,20 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adeacdb00c1d37271176f8fb6a1d8ce096baba16ea7a4b2671840c5c9c64fe85" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "tokio", ] [[package]] @@ -2586,28 +2586,28 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d0b60ffd66f28bfb026565d62b0a6cbc416da09814766a3797bba7d85a3cd9" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "tokio", ] [[package]] @@ -2622,18 +2622,18 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63695643190679037bc946ad46a263b62016931547bf119859c511f7ff2f5178" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-expr", - "futures", - "log", - "object_store", - "parking_lot", - "rand 0.9.2", - "tempfile", - "url", + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-expr", + "futures", + "log", + "object_store", + "parking_lot", + "rand 0.9.2", + "tempfile", + "url", ] [[package]] @@ -2642,21 +2642,21 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9a4787cbf5feb1ab351f789063398f67654a6df75c4d37d7f637dc96f951a91" dependencies = [ - "arrow", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", - "recursive", - "serde_json", - "sqlparser", + "arrow", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", + "recursive", + "serde_json", + "sqlparser", ] [[package]] @@ -2665,11 +2665,11 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ce2fb1b8c15c9ac45b0863c30b268c69dc9ee7a1ee13ecf5d067738338173dc" dependencies = [ - "arrow", - "datafusion-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", + "arrow", + "datafusion-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", ] [[package]] @@ -2678,28 +2678,28 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "794a9db7f7b96b3346fc007ff25e994f09b8f0511b4cf7dff651fadfe3ebb28f" dependencies = [ - "arrow", - "arrow-buffer", - "base64", - "blake2 0.10.6", - "blake3", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-macros", - "hex", - "itertools 0.14.0", - "log", - "md-5 0.10.6", - "num-traits", - "rand 0.9.2", - "regex", - "sha2 0.10.9", - "unicode-segmentation", - "uuid", + "arrow", + "arrow-buffer", + "base64", + "blake2 0.10.6", + "blake3", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-macros", + "hex", + "itertools 0.14.0", + "log", + "md-5 0.10.6", + "num-traits", + "rand 0.9.2", + "regex", + "sha2 0.10.9", + "unicode-segmentation", + "uuid", ] [[package]] @@ -2708,19 +2708,19 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c25210520a9dcf9c2b2cbbce31ebd4131ef5af7fc60ee92b266dc7d159cb305" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "half", - "log", - "paste", + "ahash", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "half", + "log", + "paste", ] [[package]] @@ -2729,11 +2729,11 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62f4a66f3b87300bb70f4124b55434d2ae3fe80455f3574701d0348da040b55d" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "datafusion-physical-expr-common", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr-common", + "datafusion-physical-expr-common", ] [[package]] @@ -2742,21 +2742,21 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae5c06eed03918dc7fe7a9f082a284050f0e9ecf95d72f57712d1496da03b8c4" dependencies = [ - "arrow", - "arrow-ord", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr-common", - "itertools 0.14.0", - "log", - "paste", + "arrow", + "arrow-ord", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr-common", + "itertools 0.14.0", + "log", + "paste", ] [[package]] @@ -2765,14 +2765,14 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db4fed1d71738fbe22e2712d71396db04c25de4111f1ec252b8f4c6d3b25d7f5" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", - "paste", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", + "paste", ] [[package]] @@ -2781,16 +2781,16 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d92206aa5ae21892f1552b4d61758a862a70956e6fd7a95cb85db1de74bc6d1" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-expr", - "datafusion-functions-window-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "log", - "paste", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-expr", + "datafusion-functions-window-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "log", + "paste", ] [[package]] @@ -2799,8 +2799,8 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53ae9bcc39800820d53a22d758b3b8726ff84a5a3e24cecef04ef4e5fdf1c7cc" dependencies = [ - "datafusion-common", - "datafusion-physical-expr-common", + "datafusion-common", + "datafusion-physical-expr-common", ] [[package]] @@ -2809,9 +2809,9 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1063ad4c9e094b3f798acee16d9a47bd7372d9699be2de21b05c3bd3f34ab848" dependencies = [ - "datafusion-doc", - "quote", - "syn 2.0.114", + "datafusion-doc", + "quote", + "syn 2.0.114", ] [[package]] @@ -2820,18 +2820,18 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f35f9ec5d08b87fd1893a30c2929f2559c2f9806ca072d8fefca5009dc0f06a" dependencies = [ - "arrow", - "chrono", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "recursive", - "regex", - "regex-syntax", + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "recursive", + "regex", + "regex-syntax", ] [[package]] @@ -2840,20 +2840,20 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c30cc8012e9eedcb48bbe112c6eff4ae5ed19cf3003cb0f505662e88b7014c5d" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr-common", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "itertools 0.14.0", - "parking_lot", - "paste", - "petgraph", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr-common", + "half", + "hashbrown 0.14.5", + "indexmap 2.13.0", + "itertools 0.14.0", + "parking_lot", + "paste", + "petgraph", ] [[package]] @@ -2862,13 +2862,13 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f9ff2dbd476221b1f67337699eff432781c4e6e1713d2aefdaa517dfbf79768" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-functions", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "itertools 0.14.0", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-functions", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "itertools 0.14.0", ] [[package]] @@ -2877,12 +2877,12 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "90da43e1ec550b172f34c87ec68161986ced70fd05c8d2a2add66eef9c276f03" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "hashbrown 0.14.5", - "itertools 0.14.0", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr-common", + "hashbrown 0.14.5", + "itertools 0.14.0", ] [[package]] @@ -2891,17 +2891,17 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce9804f799acd7daef3be7aaffe77c0033768ed8fdbf5fb82fc4c5f2e6bc14e6" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "itertools 0.14.0", - "recursive", + "arrow", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "itertools 0.14.0", + "recursive", ] [[package]] @@ -2910,29 +2910,29 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0acf0ad6b6924c6b1aa7d213b181e012e2d3ec0a64ff5b10ee6282ab0f8532ac" dependencies = [ - "ahash", - "arrow", - "arrow-ord", - "arrow-schema", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "futures", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "parking_lot", - "pin-project-lite", - "tokio", + "ahash", + "arrow", + "arrow-ord", + "arrow-schema", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "futures", + "half", + "hashbrown 0.14.5", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "parking_lot", + "pin-project-lite", + "tokio", ] [[package]] @@ -2941,15 +2941,15 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac2c2498a1f134a9e11a9f5ed202a2a7d7e9774bd9249295593053ea3be999db" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-datasource", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "itertools 0.14.0", - "log", + "arrow", + "datafusion-common", + "datafusion-datasource", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "itertools 0.14.0", + "log", ] [[package]] @@ -2958,12 +2958,12 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f96eebd17555386f459037c65ab73aae8df09f464524c709d6a3134ad4f4776" dependencies = [ - "async-trait", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", + "async-trait", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", ] [[package]] @@ -2972,16 +2972,16 @@ version = "51.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fc195fe60634b2c6ccfd131b487de46dc30eccae8a3c35a13f136e7f440414f" dependencies = [ - "arrow", - "bigdecimal", - "chrono", - "datafusion-common", - "datafusion-expr", - "indexmap 2.13.0", - "log", - "recursive", - "regex", - "sqlparser", + "arrow", + "bigdecimal", + "chrono", + "datafusion-common", + "datafusion-expr", + "indexmap 2.13.0", + "log", + "recursive", + "regex", + "sqlparser", ] [[package]] @@ -2990,7 +2990,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ - "uuid", + "uuid", ] [[package]] @@ -3005,9 +3005,9 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3016,8 +3016,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ - "const-oid 0.9.6", - "zeroize", + "const-oid 0.9.6", + "zeroize", ] [[package]] @@ -3026,9 +3026,9 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ - "const-oid 0.9.6", - "pem-rfc7468 0.7.0", - "zeroize", + "const-oid 0.9.6", + "pem-rfc7468 0.7.0", + "zeroize", ] [[package]] @@ -3037,9 +3037,9 @@ version = "0.8.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02c1d73e9668ea6b6a28172aa55f3ebec38507131ce179051c8033b5c6037653" dependencies = [ - "const-oid 0.10.2", - "pem-rfc7468 1.0.0", - "zeroize", + "const-oid 0.10.2", + "pem-rfc7468 1.0.0", + "zeroize", ] [[package]] @@ -3048,12 +3048,12 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs", - "displaydoc", - "nom 7.1.3", - "num-bigint", - "num-traits", - "rusticata-macros", + "asn1-rs", + "displaydoc", + "nom 7.1.3", + "num-bigint", + "num-traits", + "rusticata-macros", ] [[package]] @@ -3062,8 +3062,8 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" dependencies = [ - "powerfmt", - "serde_core", + "powerfmt", + "serde_core", ] [[package]] @@ -3072,9 +3072,9 @@ version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3083,7 +3083,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" dependencies = [ - "derive_builder_macro 0.12.0", + "derive_builder_macro 0.12.0", ] [[package]] @@ -3092,7 +3092,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" dependencies = [ - "derive_builder_macro 0.20.2", + "derive_builder_macro 0.20.2", ] [[package]] @@ -3101,10 +3101,10 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" dependencies = [ - "darling 0.14.4", - "proc-macro2", - "quote", - "syn 1.0.109", + "darling 0.14.4", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3113,10 +3113,10 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3125,8 +3125,8 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" dependencies = [ - "derive_builder_core 0.12.0", - "syn 1.0.109", + "derive_builder_core 0.12.0", + "syn 1.0.109", ] [[package]] @@ -3135,8 +3135,8 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ - "derive_builder_core 0.20.2", - "syn 2.0.114", + "derive_builder_core 0.20.2", + "syn 2.0.114", ] [[package]] @@ -3145,7 +3145,7 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ - "derive_more-impl", + "derive_more-impl", ] [[package]] @@ -3154,12 +3154,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ - "convert_case", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.114", - "unicode-xid", + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.114", + "unicode-xid", ] [[package]] @@ -3168,7 +3168,7 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512ca722eff02fa73c43e5136f440c46f861d41f9dd7761c1f2817a5ca5d9ad7" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -3183,10 +3183,10 @@ version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer 0.10.4", - "const-oid 0.9.6", - "crypto-common 0.1.7", - "subtle", + "block-buffer 0.10.4", + "const-oid 0.9.6", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -3195,10 +3195,10 @@ version = "0.11.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebf9423bafb058e4142194330c52273c343f8a5beb7176d052f0e73b17dd35b9" dependencies = [ - "block-buffer 0.11.0", - "const-oid 0.10.2", - "crypto-common 0.2.0-rc.9", - "subtle", + "block-buffer 0.11.0", + "const-oid 0.10.2", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -3207,7 +3207,7 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" dependencies = [ - "dirs-sys", + "dirs-sys", ] [[package]] @@ -3216,10 +3216,10 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" dependencies = [ - "libc", - "option-ext", - "redox_users", - "windows-sys 0.61.2", + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", ] [[package]] @@ -3228,9 +3228,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3245,7 +3245,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9" dependencies = [ - "phf 0.11.3", + "phf 0.11.3", ] [[package]] @@ -3264,38 +3264,38 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" name = "e2e_test" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "aws-config", - "aws-sdk-s3", - "base64", - "bytes", - "chrono", - "flatbuffers", - "futures", - "md5 0.8.0", - "rand 0.10.0-rc.6", - "rcgen", - "reqwest", - "rmp-serde", - "rustfs-common", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-protos", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "serial_test", - "suppaftp", - "tokio", - "tonic", - "tracing", - "tracing-subscriber", - "url", - "uuid", + "anyhow", + "async-trait", + "aws-config", + "aws-sdk-s3", + "base64", + "bytes", + "chrono", + "flatbuffers", + "futures", + "md5 0.8.0", + "rand 0.10.0-rc.6", + "rcgen", + "reqwest", + "rmp-serde", + "rustfs-common", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-protos", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serial_test", + "suppaftp", + "tokio", + "tonic", + "tracing", + "tracing-subscriber", + "url", + "uuid", ] [[package]] @@ -3304,10 +3304,10 @@ version = "0.14.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" dependencies = [ - "der 0.6.1", - "elliptic-curve 0.12.3", - "rfc6979 0.3.1", - "signature 1.6.4", + "der 0.6.1", + "elliptic-curve 0.12.3", + "rfc6979 0.3.1", + "signature 1.6.4", ] [[package]] @@ -3316,12 +3316,12 @@ version = "0.16.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" dependencies = [ - "der 0.7.10", - "digest 0.10.7", - "elliptic-curve 0.13.8", - "rfc6979 0.4.0", - "signature 2.2.0", - "spki 0.7.3", + "der 0.7.10", + "digest 0.10.7", + "elliptic-curve 0.13.8", + "rfc6979 0.4.0", + "signature 2.2.0", + "spki 0.7.3", ] [[package]] @@ -3330,8 +3330,8 @@ version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ - "pkcs8 0.10.2", - "signature 2.2.0", + "pkcs8 0.10.2", + "signature 2.2.0", ] [[package]] @@ -3340,7 +3340,7 @@ version = "3.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "594435fe09e345ee388e4e8422072ff7dfeca8729389fbd997b3f5504c44cd47" dependencies = [ - "signature 3.0.0-rc.6", + "signature 3.0.0-rc.6", ] [[package]] @@ -3349,13 +3349,13 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ - "curve25519-dalek 4.1.3", - "ed25519 2.2.3", - "rand_core 0.6.4", - "serde", - "sha2 0.10.9", - "subtle", - "zeroize", + "curve25519-dalek 4.1.3", + "ed25519 2.2.3", + "rand_core 0.6.4", + "serde", + "sha2 0.10.9", + "subtle", + "zeroize", ] [[package]] @@ -3364,10 +3364,10 @@ version = "3.0.0-pre.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbef01b6e6a5f913ae480bb34ddd798ce6d358054bebf77177200ec84af61ad5" dependencies = [ - "curve25519-dalek 5.0.0-pre.2", - "ed25519 3.0.0-rc.2", - "sha2 0.11.0-rc.3", - "subtle", + "curve25519-dalek 5.0.0-pre.2", + "ed25519 3.0.0-rc.2", + "sha2 0.11.0-rc.3", + "subtle", ] [[package]] @@ -3382,18 +3382,18 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" dependencies = [ - "base16ct 0.1.1", - "crypto-bigint 0.4.9", - "der 0.6.1", - "digest 0.10.7", - "ff 0.12.1", - "generic-array 0.14.7", - "group 0.12.1", - "pkcs8 0.9.0", - "rand_core 0.6.4", - "sec1 0.3.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "crypto-bigint 0.4.9", + "der 0.6.1", + "digest 0.10.7", + "ff 0.12.1", + "generic-array 0.14.7", + "group 0.12.1", + "pkcs8 0.9.0", + "rand_core 0.6.4", + "sec1 0.3.0", + "subtle", + "zeroize", ] [[package]] @@ -3402,19 +3402,19 @@ version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ - "base16ct 0.2.0", - "crypto-bigint 0.5.5", - "digest 0.10.7", - "ff 0.13.1", - "generic-array 0.14.7", - "group 0.13.0", - "hkdf", - "pem-rfc7468 0.7.0", - "pkcs8 0.10.2", - "rand_core 0.6.4", - "sec1 0.7.3", - "subtle", - "zeroize", + "base16ct 0.2.0", + "crypto-bigint 0.5.5", + "digest 0.10.7", + "ff 0.13.1", + "generic-array 0.14.7", + "group 0.13.0", + "hkdf", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.2", + "rand_core 0.6.4", + "sec1 0.7.3", + "subtle", + "zeroize", ] [[package]] @@ -3423,7 +3423,7 @@ version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -3432,10 +3432,10 @@ version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.114", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3444,7 +3444,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25b07a8dfbbbfc0064c0a6bdf9edcf966de6b1c33ce344bdeca3b41615452634" dependencies = [ - "enumset_derive", + "enumset_derive", ] [[package]] @@ -3453,10 +3453,10 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f43e744e4ea338060faee68ed933e46e722fb7f3617e722a5772d7e856d8b3ce" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3465,7 +3465,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "log", + "log", ] [[package]] @@ -3474,8 +3474,8 @@ version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ - "env_filter", - "log", + "env_filter", + "log", ] [[package]] @@ -3484,7 +3484,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" dependencies = [ - "equator-macro", + "equator-macro", ] [[package]] @@ -3493,9 +3493,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3510,7 +3510,7 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -3519,9 +3519,9 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" dependencies = [ - "serde", - "serde_core", - "typeid", + "serde", + "serde_core", + "typeid", ] [[package]] @@ -3530,8 +3530,8 @@ version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ - "libc", - "windows-sys 0.61.2", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -3540,9 +3540,9 @@ version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] @@ -3551,8 +3551,8 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener", - "pin-project-lite", + "event-listener", + "pin-project-lite", ] [[package]] @@ -3561,8 +3561,8 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73" dependencies = [ - "heapless", - "serde", + "heapless", + "serde", ] [[package]] @@ -3577,8 +3577,8 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3587,8 +3587,8 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3609,10 +3609,10 @@ version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.60.2", + "cfg-if", + "libc", + "libredox", + "windows-sys 0.60.2", ] [[package]] @@ -3627,10 +3627,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" dependencies = [ - "cc", - "lazy_static", - "libc", - "winapi", + "cc", + "lazy_static", + "libc", + "winapi", ] [[package]] @@ -3645,8 +3645,8 @@ version = "25.12.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" dependencies = [ - "bitflags 2.10.0", - "rustc_version", + "bitflags 2.10.0", + "rustc_version", ] [[package]] @@ -3655,9 +3655,9 @@ version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369" dependencies = [ - "crc32fast", - "miniz_oxide", - "zlib-rs", + "crc32fast", + "miniz_oxide", + "zlib-rs", ] [[package]] @@ -3666,21 +3666,21 @@ version = "0.31.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31e5335674a3a259527f97e9176a3767dcc9b220b8e29d643daeb2d6c72caf8b" dependencies = [ - "chrono", - "crossbeam-channel", - "crossbeam-queue", - "flate2", - "log", - "notify-debouncer-mini", - "nu-ansi-term", - "regex", - "serde", - "serde_derive", - "serde_json", - "thiserror 2.0.17", - "toml", - "tracing", - "tracing-subscriber", + "chrono", + "crossbeam-channel", + "crossbeam-queue", + "flate2", + "log", + "notify-debouncer-mini", + "nu-ansi-term", + "regex", + "serde", + "serde_derive", + "serde_json", + "thiserror 2.0.17", + "toml", + "tracing", + "tracing-subscriber", ] [[package]] @@ -3689,9 +3689,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ - "futures-core", - "futures-sink", - "spin 0.9.8", + "futures-core", + "futures-sink", + "spin 0.9.8", ] [[package]] @@ -3700,10 +3700,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf5efcf77a4da27927d3ab0509dec5b0954bb3bc59da5a1de9e52642ebd4cdf9" dependencies = [ - "ahash", - "num_cpus", - "parking_lot", - "seize", + "ahash", + "num_cpus", + "parking_lot", + "seize", ] [[package]] @@ -3730,7 +3730,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ - "percent-encoding", + "percent-encoding", ] [[package]] @@ -3739,8 +3739,8 @@ version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf68cef89750956493a66a10f512b9e58d9db21f2a573c079c0bdf1207a54a7" dependencies = [ - "autocfg", - "tokio", + "autocfg", + "tokio", ] [[package]] @@ -3755,7 +3755,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" dependencies = [ - "libc", + "libc", ] [[package]] @@ -3764,13 +3764,13 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] @@ -3779,8 +3779,8 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ - "futures-core", - "futures-sink", + "futures-core", + "futures-sink", ] [[package]] @@ -3795,9 +3795,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ - "futures-core", - "futures-task", - "futures-util", + "futures-core", + "futures-task", + "futures-util", ] [[package]] @@ -3812,11 +3812,11 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ - "fastrand", - "futures-core", - "futures-io", - "parking", - "pin-project-lite", + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", ] [[package]] @@ -3825,9 +3825,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3854,16 +3854,16 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", ] [[package]] @@ -3872,9 +3872,9 @@ version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ - "typenum", - "version_check", - "zeroize", + "typenum", + "version_check", + "zeroize", ] [[package]] @@ -3883,9 +3883,9 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542" dependencies = [ - "generic-array 0.14.7", - "rustversion", - "typenum", + "generic-array 0.14.7", + "rustversion", + "typenum", ] [[package]] @@ -3894,11 +3894,11 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", ] [[package]] @@ -3907,12 +3907,12 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "r-efi", - "wasip2", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", ] [[package]] @@ -3921,11 +3921,11 @@ version = "0.4.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b99f0d993a2b9b97b9a201193aa8ad21305cde06a3be9a7e1f8f4201e5cc27e" dependencies = [ - "cfg-if", - "libc", - "r-efi", - "rand_core 0.10.0-rc-3", - "wasip2", + "cfg-if", + "libc", + "r-efi", + "rand_core 0.10.0-rc-3", + "wasip2", ] [[package]] @@ -3934,10 +3934,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912" dependencies = [ - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3946,8 +3946,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" dependencies = [ - "opaque-debug", - "polyval 0.6.2", + "opaque-debug", + "polyval 0.6.2", ] [[package]] @@ -3956,7 +3956,7 @@ version = "0.6.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "333de57ed9494a40df4bbb866752b100819dde0d18f2264c48f5a08a85fe673d" dependencies = [ - "polyval 0.7.0-rc.3", + "polyval 0.7.0-rc.3", ] [[package]] @@ -3977,21 +3977,21 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "590a1c28795779d5da6fda35b149d5271bcddcf2ce1709eae9e9460faf2f2aa9" dependencies = [ - "async-trait", - "base64", - "bon", - "bytes", - "google-cloud-gax", - "http 1.4.0", - "reqwest", - "rustc_version", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", + "async-trait", + "base64", + "bon", + "bytes", + "google-cloud-gax", + "http 1.4.0", + "reqwest", + "rustc_version", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", ] [[package]] @@ -4000,18 +4000,18 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "324fb97d35103787e80a33ed41ccc43d947c376d2ece68ca53e860f5844dbe24" dependencies = [ - "base64", - "bytes", - "futures", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "pin-project", - "rand 0.9.2", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", + "base64", + "bytes", + "futures", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "pin-project", + "rand 0.9.2", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", ] [[package]] @@ -4020,32 +4020,32 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b75b810886ae872aca68a35ad1d4d5e8f2be39e40238116d8aff9d778f04b38" dependencies = [ - "bytes", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "opentelemetry-semantic-conventions", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "rustc_version", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tonic-prost", - "tower", - "tracing", + "bytes", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "opentelemetry-semantic-conventions", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "rustc_version", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tonic-prost", + "tower", + "tracing", ] [[package]] @@ -4054,18 +4054,18 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "498a68e2a958e8aa9938f7db2c7147aad1b5a0ff2cd47c5ba4e10cb0dcb5bfc5" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-type", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-type", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4074,18 +4074,18 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c80938e704401a47fdf36b51ec10e1a99b1ec22793d607afd0e67c7b675b8b3" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-rpc", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-rpc", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4094,12 +4094,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49747b7b684b804a2d1040c2cdb21238b3d568a41ab9e36c423554509112f61d" dependencies = [ - "google-cloud-gax", - "google-cloud-longrunning", - "google-cloud-rpc", - "google-cloud-wkt", - "serde", - "tokio", + "google-cloud-gax", + "google-cloud-longrunning", + "google-cloud-rpc", + "google-cloud-wkt", + "serde", + "tokio", ] [[package]] @@ -4108,11 +4108,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd10e97751ca894f9dad6be69fcef1cb72f5bc187329e0254817778fc8235030" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4121,41 +4121,41 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "043be824d1b105bfdce786c720e45cae04e66436f8e5d0168e98ca8e5715ce9f" dependencies = [ - "async-trait", - "base64", - "bytes", - "crc32c", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-iam-v1", - "google-cloud-longrunning", - "google-cloud-lro", - "google-cloud-rpc", - "google-cloud-type", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "lazy_static", - "md5 0.8.0", - "mime", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "serde", - "serde_json", - "serde_with", - "sha2 0.10.9", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tracing", - "uuid", + "async-trait", + "base64", + "bytes", + "crc32c", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-iam-v1", + "google-cloud-longrunning", + "google-cloud-lro", + "google-cloud-rpc", + "google-cloud-type", + "google-cloud-wkt", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "lazy_static", + "md5 0.8.0", + "mime", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "serde", + "serde_json", + "serde_with", + "sha2 0.10.9", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tracing", + "uuid", ] [[package]] @@ -4164,11 +4164,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9390ac2f3f9882ff42956b25ea65b9f546c8dd44c131726d75a96bf744ec75f6" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4177,14 +4177,14 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6f270e404be7ce76a3260abe0c3c71492ab2599ccd877f3253f3dd552f48cc9" dependencies = [ - "base64", - "bytes", - "serde", - "serde_json", - "serde_with", - "thiserror 2.0.17", - "time", - "url", + "base64", + "bytes", + "serde", + "serde_json", + "serde_with", + "thiserror 2.0.17", + "time", + "url", ] [[package]] @@ -4193,9 +4193,9 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" dependencies = [ - "ff 0.12.1", - "rand_core 0.6.4", - "subtle", + "ff 0.12.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4204,9 +4204,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ - "ff 0.13.1", - "rand_core 0.6.4", - "subtle", + "ff 0.13.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4215,17 +4215,17 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.4.0", - "indexmap 2.13.0", - "slab", - "tokio", - "tokio-util", - "tracing", + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.4.0", + "indexmap 2.13.0", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -4234,10 +4234,10 @@ version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" dependencies = [ - "cfg-if", - "crunchy", - "num-traits", - "zerocopy", + "cfg-if", + "crunchy", + "num-traits", + "zerocopy", ] [[package]] @@ -4246,7 +4246,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" dependencies = [ - "byteorder", + "byteorder", ] [[package]] @@ -4261,8 +4261,8 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash", - "allocator-api2", + "ahash", + "allocator-api2", ] [[package]] @@ -4271,9 +4271,9 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.1.5", + "allocator-api2", + "equivalent", + "foldhash 0.1.5", ] [[package]] @@ -4282,12 +4282,12 @@ version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.2.0", - "rayon", - "serde", - "serde_core", + "allocator-api2", + "equivalent", + "foldhash 0.2.0", + "rayon", + "serde", + "serde_core", ] [[package]] @@ -4296,9 +4296,9 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74d9ba66d1739c68e0219b2b2238b5c4145f491ebf181b9c6ab561a19352ae86" dependencies = [ - "hax-lib-macros", - "num-bigint", - "num-traits", + "hax-lib-macros", + "num-bigint", + "num-traits", ] [[package]] @@ -4307,11 +4307,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24ba777a231a58d1bce1d68313fa6b6afcc7966adef23d60f45b8a2b9b688bf1" dependencies = [ - "hax-lib-macros-types", - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "hax-lib-macros-types", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -4320,11 +4320,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "867e19177d7425140b417cd27c2e05320e727ee682e98368f88b7194e80ad515" dependencies = [ - "proc-macro2", - "quote", - "serde", - "serde_json", - "uuid", + "proc-macro2", + "quote", + "serde", + "serde_json", + "uuid", ] [[package]] @@ -4333,8 +4333,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" dependencies = [ - "hash32", - "stable_deref_trait", + "hash32", + "stable_deref_trait", ] [[package]] @@ -4349,17 +4349,17 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a56c94661ddfb51aa9cdfbf102cfcc340aa69267f95ebccc4af08d7c530d393" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "heed-traits", - "heed-types", - "libc", - "lmdb-master-sys", - "once_cell", - "page_size", - "serde", - "synchronoise", - "url", + "bitflags 2.10.0", + "byteorder", + "heed-traits", + "heed-types", + "libc", + "lmdb-master-sys", + "once_cell", + "page_size", + "serde", + "synchronoise", + "url", ] [[package]] @@ -4374,11 +4374,11 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c255bdf46e07fb840d120a36dcc81f385140d7191c76a7391672675c01a55d" dependencies = [ - "bincode", - "byteorder", - "heed-traits", - "serde", - "serde_json", + "bincode", + "byteorder", + "heed-traits", + "serde", + "serde_json", ] [[package]] @@ -4405,8 +4405,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f7685beb53fc20efc2605f32f5d51e9ba18b8ef237961d1760169d2290d3bee" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -4421,7 +4421,7 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ - "hmac 0.12.1", + "hmac 0.12.1", ] [[package]] @@ -4430,7 +4430,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -4439,7 +4439,7 @@ version = "0.13.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1c597ac7d6cc8143e30e83ef70915e7f883b18d8bec2e2b2bce47f5bbb06d57" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -4448,7 +4448,7 @@ version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -4457,9 +4457,9 @@ version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ - "bytes", - "fnv", - "itoa", + "bytes", + "fnv", + "itoa", ] [[package]] @@ -4468,8 +4468,8 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ - "bytes", - "itoa", + "bytes", + "itoa", ] [[package]] @@ -4478,9 +4478,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ - "bytes", - "http 0.2.12", - "pin-project-lite", + "bytes", + "http 0.2.12", + "pin-project-lite", ] [[package]] @@ -4489,8 +4489,8 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ - "bytes", - "http 1.4.0", + "bytes", + "http 1.4.0", ] [[package]] @@ -4499,11 +4499,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "pin-project-lite", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "pin-project-lite", ] [[package]] @@ -4530,8 +4530,8 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0" dependencies = [ - "typenum", - "zeroize", + "typenum", + "zeroize", ] [[package]] @@ -4540,21 +4540,21 @@ version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "pin-utils", - "smallvec", - "tokio", - "want", + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", ] [[package]] @@ -4563,17 +4563,17 @@ version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "http 1.4.0", - "hyper", - "hyper-util", - "log", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", + "http 1.4.0", + "hyper", + "hyper-util", + "log", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", ] [[package]] @@ -4582,11 +4582,11 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper", - "hyper-util", - "pin-project-lite", - "tokio", - "tower-service", + "hyper", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", ] [[package]] @@ -4595,24 +4595,24 @@ version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ - "base64", - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "system-configuration", - "tokio", - "tower-service", - "tracing", - "windows-registry", + "base64", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", ] [[package]] @@ -4621,13 +4621,13 @@ version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core 0.62.2", + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", ] [[package]] @@ -4636,7 +4636,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "cc", + "cc", ] [[package]] @@ -4645,11 +4645,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", ] [[package]] @@ -4658,11 +4658,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", ] [[package]] @@ -4671,12 +4671,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", ] [[package]] @@ -4691,12 +4691,12 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "zerotrie", - "zerovec", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", ] [[package]] @@ -4711,13 +4711,13 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" dependencies = [ - "displaydoc", - "icu_locale_core", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", ] [[package]] @@ -4732,9 +4732,9 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", + "idna_adapter", + "smallvec", + "utf8_iter", ] [[package]] @@ -4743,8 +4743,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "icu_normalizer", - "icu_properties", + "icu_normalizer", + "icu_properties", ] [[package]] @@ -4753,9 +4753,9 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", + "autocfg", + "hashbrown 0.12.3", + "serde", ] [[package]] @@ -4764,10 +4764,10 @@ version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ - "equivalent", - "hashbrown 0.16.1", - "serde", - "serde_core", + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", ] [[package]] @@ -4776,16 +4776,16 @@ version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" dependencies = [ - "ahash", - "indexmap 2.13.0", - "is-terminal", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.26.0", - "rgb", - "str_stack", + "ahash", + "indexmap 2.13.0", + "is-terminal", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.26.0", + "rgb", + "str_stack", ] [[package]] @@ -4794,20 +4794,20 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d35223c50fdd26419a4ccea2c73be68bd2b29a3d7d6123ffe101c17f4c20a52a" dependencies = [ - "ahash", - "clap", - "crossbeam-channel", - "crossbeam-utils", - "dashmap", - "env_logger", - "indexmap 2.13.0", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.38.4", - "rgb", - "str_stack", + "ahash", + "clap", + "crossbeam-channel", + "crossbeam-utils", + "dashmap", + "env_logger", + "indexmap 2.13.0", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.38.4", + "rgb", + "str_stack", ] [[package]] @@ -4816,9 +4816,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" dependencies = [ - "bitflags 2.10.0", - "inotify-sys", - "libc", + "bitflags 2.10.0", + "inotify-sys", + "libc", ] [[package]] @@ -4827,7 +4827,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" dependencies = [ - "libc", + "libc", ] [[package]] @@ -4836,8 +4836,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "block-padding", - "generic-array 0.14.7", + "block-padding", + "generic-array 0.14.7", ] [[package]] @@ -4846,7 +4846,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ - "hybrid-array", + "hybrid-array", ] [[package]] @@ -4861,29 +4861,29 @@ version = "0.6.16+upstream-0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe44f2bbd99fcb302e246e2d6bcf51aeda346d02a365f80296a07a8c711b6da6" dependencies = [ - "argon2 0.5.3", - "bcrypt-pbkdf", - "digest 0.11.0-rc.5", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "hex", - "hmac 0.12.1", - "num-bigint-dig", - "p256 0.13.2", - "p384", - "p521", - "rand_core 0.6.4", - "rsa", - "sec1 0.7.3", - "sha1 0.10.6", - "sha1 0.11.0-rc.3", - "sha2 0.10.9", - "signature 2.2.0", - "signature 3.0.0-rc.6", - "ssh-cipher 0.2.0", - "ssh-encoding 0.2.0", - "subtle", - "zeroize", + "argon2 0.5.3", + "bcrypt-pbkdf", + "digest 0.11.0-rc.5", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "hex", + "hmac 0.12.1", + "num-bigint-dig", + "p256 0.13.2", + "p384", + "p521", + "rand_core 0.6.4", + "rsa", + "sec1 0.7.3", + "sha1 0.10.6", + "sha1 0.11.0-rc.3", + "sha2 0.10.9", + "signature 2.2.0", + "signature 3.0.0-rc.6", + "ssh-cipher 0.2.0", + "ssh-encoding 0.2.0", + "subtle", + "zeroize", ] [[package]] @@ -4898,7 +4898,7 @@ version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763" dependencies = [ - "serde", + "serde", ] [[package]] @@ -4907,8 +4907,8 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -4917,9 +4917,9 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.61.2", + "hermit-abi", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -4940,7 +4940,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ - "either", + "either", ] [[package]] @@ -4949,7 +4949,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ - "either", + "either", ] [[package]] @@ -4964,15 +4964,15 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74ff642505c7ce8d31c0d43ec0e235c6fd4585d9b8172d8f9dd04d36590200b5" dependencies = [ - "anyhow", - "libc", - "mappings", - "once_cell", - "pprof_util", - "tempfile", - "tikv-jemalloc-ctl", - "tokio", - "tracing", + "anyhow", + "libc", + "mappings", + "once_cell", + "pprof_util", + "tempfile", + "tikv-jemalloc-ctl", + "tokio", + "tracing", ] [[package]] @@ -4981,8 +4981,8 @@ version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ - "getrandom 0.3.4", - "libc", + "getrandom 0.3.4", + "libc", ] [[package]] @@ -4991,8 +4991,8 @@ version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" dependencies = [ - "once_cell", - "wasm-bindgen", + "once_cell", + "wasm-bindgen", ] [[package]] @@ -5001,15 +5001,15 @@ version = "10.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e" dependencies = [ - "aws-lc-rs", - "base64", - "getrandom 0.2.17", - "js-sys", - "pem", - "serde", - "serde_json", - "signature 2.2.0", - "simple_asn1", + "aws-lc-rs", + "base64", + "getrandom 0.2.17", + "js-sys", + "pem", + "serde", + "serde_json", + "signature 2.2.0", + "simple_asn1", ] [[package]] @@ -5018,8 +5018,8 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" dependencies = [ - "kqueue-sys", - "libc", + "kqueue-sys", + "libc", ] [[package]] @@ -5028,8 +5028,8 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" dependencies = [ - "bitflags 1.3.2", - "libc", + "bitflags 1.3.2", + "libc", ] [[package]] @@ -5038,9 +5038,9 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5c13b6857ade4c8ee05c3c3dc97d2ab5415d691213825b90d3211c425c1f907" dependencies = [ - "lazy-regex-proc_macros", - "once_cell", - "regex", + "lazy-regex-proc_macros", + "once_cell", + "regex", ] [[package]] @@ -5049,10 +5049,10 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a95c68db5d41694cea563c86a4ba4dc02141c16ef64814108cb23def4d5438" dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.114", + "proc-macro2", + "quote", + "regex", + "syn 2.0.114", ] [[package]] @@ -5061,7 +5061,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin 0.9.8", ] [[package]] @@ -5070,11 +5070,11 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" dependencies = [ - "lexical-parse-float", - "lexical-parse-integer", - "lexical-util", - "lexical-write-float", - "lexical-write-integer", + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", ] [[package]] @@ -5083,8 +5083,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" dependencies = [ - "lexical-parse-integer", - "lexical-util", + "lexical-parse-integer", + "lexical-util", ] [[package]] @@ -5093,7 +5093,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5108,8 +5108,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" dependencies = [ - "lexical-util", - "lexical-write-integer", + "lexical-util", + "lexical-write-integer", ] [[package]] @@ -5118,7 +5118,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5139,8 +5139,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc9ee7ef66569dd7516454fe26de4e401c0c62073929803486b96744594b9632" dependencies = [ - "core-models", - "hax-lib", + "core-models", + "hax-lib", ] [[package]] @@ -5149,14 +5149,14 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bb6a88086bf11bd2ec90926c749c4a427f2e59841437dbdede8cde8a96334ab" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-secrets", - "libcrux-sha3", - "libcrux-traits", - "rand 0.9.2", - "tls_codec", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-secrets", + "libcrux-sha3", + "libcrux-traits", + "rand 0.9.2", + "tls_codec", ] [[package]] @@ -5165,7 +5165,7 @@ version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db82d058aa76ea315a3b2092f69dfbd67ddb0e462038a206e1dcd73f058c0778" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5174,7 +5174,7 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e4dbbf6bc9f2bc0f20dc3bea3e5c99adff3bdccf6d2a40488963da69e2ec307" dependencies = [ - "hax-lib", + "hax-lib", ] [[package]] @@ -5183,10 +5183,10 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2400bec764d1c75b8a496d5747cffe32f1fb864a12577f0aca2f55a92021c962" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-traits", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-traits", ] [[package]] @@ -5195,8 +5195,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9adfd58e79d860f6b9e40e35127bfae9e5bd3ade33201d1347459011a2add034" dependencies = [ - "libcrux-secrets", - "rand 0.9.2", + "libcrux-secrets", + "rand 0.9.2", ] [[package]] @@ -5205,8 +5205,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ - "cfg-if", - "windows-link 0.2.1", + "cfg-if", + "windows-link 0.2.1", ] [[package]] @@ -5221,8 +5221,8 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5231,9 +5231,9 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" dependencies = [ - "bitflags 2.10.0", - "libc", - "redox_syscall 0.7.0", + "bitflags 2.10.0", + "libc", + "redox_syscall 0.7.0", ] [[package]] @@ -5242,16 +5242,16 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19c97a761fc86953c5b885422b22c891dbf5bcb9dcc99d0110d6ce4c052759f0" dependencies = [ - "hmac 0.12.1", - "libc", - "log", - "nix 0.29.0", - "nom 8.0.0", - "once_cell", - "serde", - "sha2 0.10.9", - "thiserror 2.0.17", - "uuid", + "hmac 0.12.1", + "libc", + "log", + "nix 0.29.0", + "nom 8.0.0", + "once_cell", + "serde", + "sha2 0.10.9", + "thiserror 2.0.17", + "uuid", ] [[package]] @@ -5260,33 +5260,33 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8270fae0f77279620962f533153fa727a9cf9485dbb79d47eed3086d42b17264" dependencies = [ - "async-trait", - "bitflags 2.10.0", - "bytes", - "chrono", - "dashmap", - "derive_more", - "futures-util", - "getrandom 0.3.4", - "lazy_static", - "libc", - "md-5 0.10.6", - "moka", - "nix 0.29.0", - "prometheus", - "proxy-protocol", - "rustls", - "rustls-pemfile", - "slog", - "slog-stdlog", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-util", - "tracing", - "tracing-attributes", - "uuid", - "x509-parser 0.17.0", + "async-trait", + "bitflags 2.10.0", + "bytes", + "chrono", + "dashmap", + "derive_more", + "futures-util", + "getrandom 0.3.4", + "lazy_static", + "libc", + "md-5 0.10.6", + "moka", + "nix 0.29.0", + "prometheus", + "proxy-protocol", + "rustls", + "rustls-pemfile", + "slog", + "slog-stdlog", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-util", + "tracing", + "tracing-attributes", + "uuid", + "x509-parser 0.17.0", ] [[package]] @@ -5313,9 +5313,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "864808e0b19fb6dd3b70ba94ee671b82fce17554cf80aeb0a155c65bb08027df" dependencies = [ - "cc", - "doxygen-rs", - "libc", + "cc", + "doxygen-rs", + "libc", ] [[package]] @@ -5324,10 +5324,10 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a60bf300a990b2d1ebdde4228e873e8e4da40d834adbf5265f3da1457ede652" dependencies = [ - "libc", - "neli", - "thiserror 2.0.17", - "windows-sys 0.61.2", + "libc", + "neli", + "thiserror 2.0.17", + "windows-sys 0.61.2", ] [[package]] @@ -5336,7 +5336,7 @@ version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "scopeguard", + "scopeguard", ] [[package]] @@ -5345,8 +5345,8 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" dependencies = [ - "serde_core", - "value-bag", + "serde_core", + "value-bag", ] [[package]] @@ -5355,7 +5355,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.15.5", ] [[package]] @@ -5370,7 +5370,7 @@ version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ - "lz4-sys", + "lz4-sys", ] [[package]] @@ -5379,8 +5379,8 @@ version = "1.11.1+lz4-1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5389,7 +5389,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab6473172471198271ff72e9379150e9dfd70d8e533e0752a27e515b48dd375e" dependencies = [ - "twox-hash", + "twox-hash", ] [[package]] @@ -5398,8 +5398,8 @@ version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fa48f5024824ecd3e8282cc948bd46fbd095aed5a98939de0594601a59b4e2b" dependencies = [ - "crc", - "sha2 0.10.9", + "crc", + "sha2 0.10.9", ] [[package]] @@ -5408,9 +5408,9 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" dependencies = [ - "cc", - "libc", - "pkg-config", + "cc", + "libc", + "pkg-config", ] [[package]] @@ -5419,11 +5419,11 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db4d277bb50d4508057e7bddd7fcd19ef4a4cc38051b6a5a36868d75ae2cbeb9" dependencies = [ - "anyhow", - "libc", - "once_cell", - "pprof_util", - "tracing", + "anyhow", + "libc", + "once_cell", + "pprof_util", + "tracing", ] [[package]] @@ -5432,7 +5432,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" dependencies = [ - "regex-automata", + "regex-automata", ] [[package]] @@ -5453,8 +5453,8 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ - "cfg-if", - "digest 0.10.7", + "cfg-if", + "digest 0.10.7", ] [[package]] @@ -5463,8 +5463,8 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64dd2c9099caf8e29b629305199dddb1c6d981562b62c089afea54b0b4b5c333" dependencies = [ - "cfg-if", - "digest 0.11.0-rc.5", + "cfg-if", + "digest 0.11.0-rc.5", ] [[package]] @@ -5491,7 +5491,7 @@ version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5500,7 +5500,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ - "autocfg", + "autocfg", ] [[package]] @@ -5509,8 +5509,8 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" dependencies = [ - "ahash", - "portable-atomic", + "ahash", + "portable-atomic", ] [[package]] @@ -5519,7 +5519,7 @@ version = "0.1.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" dependencies = [ - "libmimalloc-sys", + "libmimalloc-sys", ] [[package]] @@ -5534,8 +5534,8 @@ version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ - "mime", - "unicase", + "mime", + "unicase", ] [[package]] @@ -5550,8 +5550,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ - "adler2", - "simd-adler32", + "adler2", + "simd-adler32", ] [[package]] @@ -5560,10 +5560,10 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ - "libc", - "log", - "wasi", - "windows-sys 0.61.2", + "libc", + "log", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -5572,18 +5572,18 @@ version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3dec6bd31b08944e08b58fd99373893a6c17054d6f3ea5006cc894f4f4eee2a" dependencies = [ - "async-lock", - "crossbeam-channel", - "crossbeam-epoch", - "crossbeam-utils", - "equivalent", - "event-listener", - "futures-util", - "parking_lot", - "portable-atomic", - "smallvec", - "tagptr", - "uuid", + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "event-listener", + "futures-util", + "parking_lot", + "portable-atomic", + "smallvec", + "tagptr", + "uuid", ] [[package]] @@ -5598,14 +5598,14 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e23bebbf3e157c402c4d5ee113233e5e0610cc27453b2f07eefce649c7365dcc" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "derive_builder 0.20.2", - "getset", - "libc", - "log", - "neli-proc-macros", - "parking_lot", + "bitflags 2.10.0", + "byteorder", + "derive_builder 0.20.2", + "getset", + "libc", + "log", + "neli-proc-macros", + "parking_lot", ] [[package]] @@ -5614,11 +5614,11 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609" dependencies = [ - "either", - "proc-macro2", - "quote", - "serde", - "syn 2.0.114", + "either", + "proc-macro2", + "quote", + "serde", + "syn 2.0.114", ] [[package]] @@ -5627,8 +5627,8 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29a01b9f018d6b7b277fef6c79fdbd9bf17bb2d1e298238055cafab49baa5ee" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -5637,9 +5637,9 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc", + "bitflags 1.3.2", + "cfg-if", + "libc", ] [[package]] @@ -5648,11 +5648,11 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", - "memoffset", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", ] [[package]] @@ -5661,10 +5661,10 @@ version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", ] [[package]] @@ -5673,8 +5673,8 @@ version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "memchr", - "minimal-lexical", + "memchr", + "minimal-lexical", ] [[package]] @@ -5683,7 +5683,7 @@ version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5692,16 +5692,16 @@ version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" dependencies = [ - "bitflags 2.10.0", - "fsevent-sys", - "inotify", - "kqueue", - "libc", - "log", - "mio", - "notify-types", - "walkdir", - "windows-sys 0.60.2", + "bitflags 2.10.0", + "fsevent-sys", + "inotify", + "kqueue", + "libc", + "log", + "mio", + "notify-types", + "walkdir", + "windows-sys 0.60.2", ] [[package]] @@ -5710,10 +5710,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8" dependencies = [ - "log", - "notify", - "notify-types", - "tempfile", + "log", + "notify", + "notify-types", + "tempfile", ] [[package]] @@ -5728,7 +5728,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" dependencies = [ - "winapi", + "winapi", ] [[package]] @@ -5737,7 +5737,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -5746,12 +5746,12 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ - "num-bigint", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", ] [[package]] @@ -5760,9 +5760,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "num-integer", - "num-traits", - "rand 0.8.5", + "num-integer", + "num-traits", + "rand 0.8.5", ] [[package]] @@ -5771,14 +5771,14 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" dependencies = [ - "lazy_static", - "libm", - "num-integer", - "num-iter", - "num-traits", - "rand 0.8.5", - "serde", - "smallvec", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.5", + "serde", + "smallvec", ] [[package]] @@ -5787,7 +5787,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5802,8 +5802,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec", - "itoa", + "arrayvec", + "itoa", ] [[package]] @@ -5812,7 +5812,7 @@ version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5821,9 +5821,9 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg", - "num-integer", - "num-traits", + "autocfg", + "num-integer", + "num-traits", ] [[package]] @@ -5832,9 +5832,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "num-bigint", - "num-integer", - "num-traits", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -5843,8 +5843,8 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg", - "libm", + "autocfg", + "libm", ] [[package]] @@ -5853,8 +5853,8 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi", - "libc", + "hermit-abi", + "libc", ] [[package]] @@ -5863,7 +5863,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5878,12 +5878,12 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d5c6c0ef9702176a570f06ad94f3198bc29c524c8b498f1b9346e1b1bdcbb3a" dependencies = [ - "bitflags 2.10.0", - "libloading", - "nvml-wrapper-sys", - "static_assertions", - "thiserror 1.0.69", - "wrapcenum-derive", + "bitflags 2.10.0", + "libloading", + "nvml-wrapper-sys", + "static_assertions", + "thiserror 1.0.69", + "wrapcenum-derive", ] [[package]] @@ -5892,7 +5892,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd23dbe2eb8d8335d2bce0299e0a07d6a63c089243d626ca75b770a962ff49e6" dependencies = [ - "libloading", + "libloading", ] [[package]] @@ -5901,7 +5901,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -5910,8 +5910,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15" dependencies = [ - "libc", - "objc2-core-foundation", + "libc", + "objc2-core-foundation", ] [[package]] @@ -5920,7 +5920,7 @@ version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5929,7 +5929,7 @@ version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5938,22 +5938,22 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740" dependencies = [ - "async-trait", - "bytes", - "chrono", - "futures", - "http 1.4.0", - "humantime", - "itertools 0.14.0", - "parking_lot", - "percent-encoding", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "walkdir", - "wasm-bindgen-futures", - "web-time", + "async-trait", + "bytes", + "chrono", + "futures", + "http 1.4.0", + "humantime", + "itertools 0.14.0", + "parking_lot", + "percent-encoding", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "walkdir", + "wasm-bindgen-futures", + "web-time", ] [[package]] @@ -5962,7 +5962,7 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs", + "asn1-rs", ] [[package]] @@ -6001,12 +6001,12 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0" dependencies = [ - "futures-core", - "futures-sink", - "js-sys", - "pin-project-lite", - "thiserror 2.0.17", - "tracing", + "futures-core", + "futures-sink", + "js-sys", + "pin-project-lite", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -6015,12 +6015,12 @@ version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2" dependencies = [ - "opentelemetry", - "tracing", - "tracing-core", - "tracing-log", - "tracing-opentelemetry", - "tracing-subscriber", + "opentelemetry", + "tracing", + "tracing-core", + "tracing-log", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] @@ -6029,11 +6029,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d" dependencies = [ - "async-trait", - "bytes", - "http 1.4.0", - "opentelemetry", - "reqwest", + "async-trait", + "bytes", + "http 1.4.0", + "opentelemetry", + "reqwest", ] [[package]] @@ -6042,16 +6042,16 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf" dependencies = [ - "flate2", - "http 1.4.0", - "opentelemetry", - "opentelemetry-http", - "opentelemetry-proto", - "opentelemetry_sdk", - "prost 0.14.3", - "reqwest", - "thiserror 2.0.17", - "tracing", + "flate2", + "http 1.4.0", + "opentelemetry", + "opentelemetry-http", + "opentelemetry-proto", + "opentelemetry_sdk", + "prost 0.14.3", + "reqwest", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -6060,11 +6060,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f" dependencies = [ - "opentelemetry", - "opentelemetry_sdk", - "prost 0.14.3", - "tonic", - "tonic-prost", + "opentelemetry", + "opentelemetry_sdk", + "prost 0.14.3", + "tonic", + "tonic-prost", ] [[package]] @@ -6079,9 +6079,9 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc8887887e169414f637b18751487cce4e095be787d23fad13c454e2fb1b3811" dependencies = [ - "chrono", - "opentelemetry", - "opentelemetry_sdk", + "chrono", + "opentelemetry", + "opentelemetry_sdk", ] [[package]] @@ -6090,15 +6090,15 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd" dependencies = [ - "futures-channel", - "futures-executor", - "futures-util", - "opentelemetry", - "percent-encoding", - "rand 0.9.2", - "thiserror 2.0.17", - "tokio", - "tokio-stream", + "futures-channel", + "futures-executor", + "futures-util", + "opentelemetry", + "percent-encoding", + "rand 0.9.2", + "thiserror 2.0.17", + "tokio", + "tokio-stream", ] [[package]] @@ -6113,7 +6113,7 @@ version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -6128,9 +6128,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ - "ecdsa 0.14.8", - "elliptic-curve 0.12.3", - "sha2 0.10.9", + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.9", ] [[package]] @@ -6139,10 +6139,10 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6151,10 +6151,10 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6163,12 +6163,12 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" dependencies = [ - "base16ct 0.2.0", - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "rand_core 0.6.4", - "sha2 0.10.9", + "base16ct 0.2.0", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "rand_core 0.6.4", + "sha2 0.10.9", ] [[package]] @@ -6177,8 +6177,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -6187,17 +6187,17 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595" dependencies = [ - "byteorder", - "bytes", - "delegate", - "futures", - "log", - "rand 0.8.5", - "sha2 0.10.9", - "thiserror 1.0.69", - "tokio", - "windows 0.62.2", - "windows-strings 0.5.1", + "byteorder", + "bytes", + "delegate", + "futures", + "log", + "rand 0.8.5", + "sha2 0.10.9", + "thiserror 1.0.69", + "tokio", + "windows 0.62.2", + "windows-strings 0.5.1", ] [[package]] @@ -6212,8 +6212,8 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ - "lock_api", - "parking_lot_core", + "lock_api", + "parking_lot_core", ] [[package]] @@ -6222,11 +6222,11 @@ version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.5.18", - "smallvec", - "windows-link 0.2.1", + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link 0.2.1", ] [[package]] @@ -6235,35 +6235,35 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-ipc", - "arrow-schema", - "arrow-select", - "base64", - "brotli 8.0.2", - "bytes", - "chrono", - "flate2", - "futures", - "half", - "hashbrown 0.16.1", - "lz4_flex", - "num-bigint", - "num-integer", - "num-traits", - "object_store", - "paste", - "seq-macro", - "simdutf8", - "snap", - "thrift", - "tokio", - "twox-hash", - "zstd", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "base64", + "brotli 8.0.2", + "bytes", + "chrono", + "flate2", + "futures", + "half", + "hashbrown 0.16.1", + "lz4_flex", + "num-bigint", + "num-integer", + "num-traits", + "object_store", + "paste", + "seq-macro", + "simdutf8", + "snap", + "thrift", + "tokio", + "twox-hash", + "zstd", ] [[package]] @@ -6272,9 +6272,9 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", + "base64ct", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -6283,8 +6283,8 @@ version = "0.6.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f77af9403a6489b7b51f552693bd48d8e81a710c92d3d77648b203558578762d" dependencies = [ - "getrandom 0.4.0-rc.0", - "phc", + "getrandom 0.4.0-rc.0", + "phc", ] [[package]] @@ -6311,7 +6311,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" dependencies = [ - "path-dedot", + "path-dedot", ] [[package]] @@ -6326,7 +6326,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" dependencies = [ - "once_cell", + "once_cell", ] [[package]] @@ -6335,8 +6335,8 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ - "digest 0.10.7", - "hmac 0.12.1", + "digest 0.10.7", + "hmac 0.12.1", ] [[package]] @@ -6345,8 +6345,8 @@ version = "0.13.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fb9b101849c3ddab38905781f5aa7ae14ea06e87befaf0e7b003e5d3186250d" dependencies = [ - "digest 0.11.0-rc.5", - "hmac 0.13.0-rc.3", + "digest 0.11.0-rc.5", + "hmac 0.13.0-rc.3", ] [[package]] @@ -6355,8 +6355,8 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", - "serde_core", + "base64", + "serde_core", ] [[package]] @@ -6365,7 +6365,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6374,7 +6374,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6389,10 +6389,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" dependencies = [ - "fixedbitset", - "hashbrown 0.15.5", - "indexmap 2.13.0", - "serde", + "fixedbitset", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "serde", ] [[package]] @@ -6401,9 +6401,9 @@ version = "0.6.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71d390c5fe8d102c2c18ff39f1e72b9ad5996de282c2d831b0312f56910f5508" dependencies = [ - "base64ct", - "getrandom 0.4.0-rc.0", - "subtle", + "base64ct", + "getrandom 0.4.0-rc.0", + "subtle", ] [[package]] @@ -6412,8 +6412,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "phf_macros", - "phf_shared 0.11.3", + "phf_macros", + "phf_shared 0.11.3", ] [[package]] @@ -6422,7 +6422,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ - "phf_shared 0.12.1", + "phf_shared 0.12.1", ] [[package]] @@ -6431,8 +6431,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.3", - "rand 0.8.5", + "phf_shared 0.11.3", + "rand 0.8.5", ] [[package]] @@ -6441,11 +6441,11 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator", - "phf_shared 0.11.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "phf_generator", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6454,7 +6454,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6463,7 +6463,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6472,7 +6472,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ - "pin-project-internal", + "pin-project-internal", ] [[package]] @@ -6481,9 +6481,9 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6504,8 +6504,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6514,13 +6514,13 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6" dependencies = [ - "aes 0.8.4", - "cbc", - "der 0.7.10", - "pbkdf2 0.12.2", - "scrypt", - "sha2 0.10.9", - "spki 0.7.3", + "aes 0.8.4", + "cbc", + "der 0.7.10", + "pbkdf2 0.12.2", + "scrypt", + "sha2 0.10.9", + "spki 0.7.3", ] [[package]] @@ -6529,8 +6529,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" dependencies = [ - "der 0.6.1", - "spki 0.6.0", + "der 0.6.1", + "spki 0.6.0", ] [[package]] @@ -6539,10 +6539,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der 0.7.10", - "pkcs5", - "rand_core 0.6.4", - "spki 0.7.3", + "der 0.7.10", + "pkcs5", + "rand_core 0.6.4", + "spki 0.7.3", ] [[package]] @@ -6551,8 +6551,8 @@ version = "0.11.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77089aec8290d0b7bb01b671b091095cf1937670725af4fd73d47249f03b12c0" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6567,11 +6567,11 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -6586,7 +6586,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" dependencies = [ - "plotters-backend", + "plotters-backend", ] [[package]] @@ -6601,9 +6601,9 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" dependencies = [ - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6612,9 +6612,9 @@ version = "0.9.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c0749ae91cfe6e68c77c4d48802d9720ee06aed3f7100a38975fb0962d50bc" dependencies = [ - "cpufeatures", - "universal-hash 0.6.0-rc.4", - "zeroize", + "cpufeatures", + "universal-hash 0.6.0-rc.4", + "zeroize", ] [[package]] @@ -6623,10 +6623,10 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ - "cfg-if", - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6635,9 +6635,9 @@ version = "0.7.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ad60831c19edda4b20878a676595c357e93a9b4e6dca2ba98d75b01066b317b" dependencies = [ - "cfg-if", - "cpufeatures", - "universal-hash 0.6.0-rc.4", + "cfg-if", + "cpufeatures", + "universal-hash 0.6.0-rc.4", ] [[package]] @@ -6652,7 +6652,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" dependencies = [ - "zerovec", + "zerovec", ] [[package]] @@ -6673,22 +6673,22 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187" dependencies = [ - "aligned-vec", - "backtrace", - "cfg-if", - "findshlibs", - "inferno 0.11.21", - "libc", - "log", - "nix 0.26.4", - "once_cell", - "protobuf", - "protobuf-codegen", - "smallvec", - "spin 0.10.0", - "symbolic-demangle", - "tempfile", - "thiserror 2.0.17", + "aligned-vec", + "backtrace", + "cfg-if", + "findshlibs", + "inferno 0.11.21", + "libc", + "log", + "nix 0.26.4", + "once_cell", + "protobuf", + "protobuf-codegen", + "smallvec", + "spin 0.10.0", + "symbolic-demangle", + "tempfile", + "thiserror 2.0.17", ] [[package]] @@ -6697,13 +6697,13 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4429d44e5e2c8a69399fc0070379201eed018e3df61e04eb7432811df073c224" dependencies = [ - "anyhow", - "backtrace", - "flate2", - "inferno 0.12.4", - "num", - "paste", - "prost 0.13.5", + "anyhow", + "backtrace", + "flate2", + "inferno 0.12.4", + "num", + "paste", + "prost 0.13.5", ] [[package]] @@ -6712,7 +6712,7 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy", + "zerocopy", ] [[package]] @@ -6721,8 +6721,8 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ - "diff", - "yansi", + "diff", + "yansi", ] [[package]] @@ -6731,8 +6731,8 @@ version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ - "proc-macro2", - "syn 2.0.114", + "proc-macro2", + "syn 2.0.114", ] [[package]] @@ -6741,7 +6741,7 @@ version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ - "elliptic-curve 0.13.8", + "elliptic-curve 0.13.8", ] [[package]] @@ -6750,7 +6750,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "toml_edit 0.23.10+spec-1.0.0", + "toml_edit 0.23.10+spec-1.0.0", ] [[package]] @@ -6759,8 +6759,8 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" dependencies = [ - "proc-macro2", - "quote", + "proc-macro2", + "quote", ] [[package]] @@ -6769,10 +6769,10 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" dependencies = [ - "proc-macro-error-attr2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6781,7 +6781,7 @@ version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -6790,12 +6790,12 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" dependencies = [ - "cfg-if", - "fnv", - "lazy_static", - "memchr", - "parking_lot", - "thiserror 2.0.17", + "cfg-if", + "fnv", + "lazy_static", + "memchr", + "parking_lot", + "thiserror 2.0.17", ] [[package]] @@ -6804,8 +6804,8 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ - "bytes", - "prost-derive 0.13.5", + "bytes", + "prost-derive 0.13.5", ] [[package]] @@ -6814,8 +6814,8 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" dependencies = [ - "bytes", - "prost-derive 0.14.3", + "bytes", + "prost-derive 0.14.3", ] [[package]] @@ -6824,19 +6824,19 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" dependencies = [ - "heck", - "itertools 0.14.0", - "log", - "multimap", - "petgraph", - "prettyplease", - "prost 0.14.3", - "prost-types", - "pulldown-cmark", - "pulldown-cmark-to-cmark", - "regex", - "syn 2.0.114", - "tempfile", + "heck", + "itertools 0.14.0", + "log", + "multimap", + "petgraph", + "prettyplease", + "prost 0.14.3", + "prost-types", + "pulldown-cmark", + "pulldown-cmark-to-cmark", + "regex", + "syn 2.0.114", + "tempfile", ] [[package]] @@ -6845,11 +6845,11 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6858,11 +6858,11 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6871,7 +6871,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" dependencies = [ - "prost 0.14.3", + "prost 0.14.3", ] [[package]] @@ -6880,9 +6880,9 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" dependencies = [ - "once_cell", - "protobuf-support", - "thiserror 1.0.69", + "once_cell", + "protobuf-support", + "thiserror 1.0.69", ] [[package]] @@ -6891,13 +6891,13 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace" dependencies = [ - "anyhow", - "once_cell", - "protobuf", - "protobuf-parse", - "regex", - "tempfile", - "thiserror 1.0.69", + "anyhow", + "once_cell", + "protobuf", + "protobuf-parse", + "regex", + "tempfile", + "thiserror 1.0.69", ] [[package]] @@ -6906,14 +6906,14 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973" dependencies = [ - "anyhow", - "indexmap 2.13.0", - "log", - "protobuf", - "protobuf-support", - "tempfile", - "thiserror 1.0.69", - "which", + "anyhow", + "indexmap 2.13.0", + "log", + "protobuf", + "protobuf-support", + "tempfile", + "thiserror 1.0.69", + "which", ] [[package]] @@ -6922,7 +6922,7 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" dependencies = [ - "thiserror 1.0.69", + "thiserror 1.0.69", ] [[package]] @@ -6931,8 +6931,8 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e50c72c21c738f5c5f350cc33640aee30bf7cd20f9d9da20ed41bce2671d532" dependencies = [ - "bytes", - "snafu 0.6.10", + "bytes", + "snafu 0.6.10", ] [[package]] @@ -6941,8 +6941,8 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" dependencies = [ - "ar_archive_writer", - "cc", + "ar_archive_writer", + "cc", ] [[package]] @@ -6951,9 +6951,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0" dependencies = [ - "bitflags 2.10.0", - "memchr", - "unicase", + "bitflags 2.10.0", + "memchr", + "unicase", ] [[package]] @@ -6962,7 +6962,7 @@ version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90" dependencies = [ - "pulldown-cmark", + "pulldown-cmark", ] [[package]] @@ -6971,7 +6971,7 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6980,8 +6980,8 @@ version = "0.37.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -6990,7 +6990,7 @@ version = "0.38.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6999,9 +6999,9 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2e3bf4aa9d243beeb01a7b3bc30b77cfe2c44e24ec02d751a7104a53c2c49a1" dependencies = [ - "memchr", - "serde", - "tokio", + "memchr", + "serde", + "tokio", ] [[package]] @@ -7010,18 +7010,18 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror 2.0.17", - "tokio", - "tracing", - "web-time", + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror 2.0.17", + "tokio", + "tracing", + "web-time", ] [[package]] @@ -7030,19 +7030,19 @@ version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" dependencies = [ - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.2", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.17", - "tinyvec", - "tracing", - "web-time", + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.2", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.17", + "tinyvec", + "tracing", + "web-time", ] [[package]] @@ -7051,12 +7051,12 @@ version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.60.2", + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", ] [[package]] @@ -7065,7 +7065,7 @@ version = "1.0.43" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" dependencies = [ - "proc-macro2", + "proc-macro2", ] [[package]] @@ -7080,9 +7080,9 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", ] [[package]] @@ -7091,8 +7091,8 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_chacha 0.9.0", + "rand_core 0.9.3", ] [[package]] @@ -7101,10 +7101,10 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bccc05ac8fad6ee391f3cc6725171817eed960345e2fb42ad229d486c1ca2d98" dependencies = [ - "chacha20 0.10.0-rc.6", - "getrandom 0.4.0-rc.0", - "rand_core 0.10.0-rc-3", - "serde", + "chacha20 0.10.0-rc.6", + "getrandom 0.4.0-rc.0", + "rand_core 0.10.0-rc-3", + "serde", ] [[package]] @@ -7113,8 +7113,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", + "ppv-lite86", + "rand_core 0.6.4", ] [[package]] @@ -7123,8 +7123,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ - "ppv-lite86", - "rand_core 0.9.3", + "ppv-lite86", + "rand_core 0.9.3", ] [[package]] @@ -7133,7 +7133,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.17", + "getrandom 0.2.17", ] [[package]] @@ -7142,7 +7142,7 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" dependencies = [ - "getrandom 0.3.4", + "getrandom 0.3.4", ] [[package]] @@ -7157,8 +7157,8 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ - "either", - "rayon-core", + "either", + "rayon-core", ] [[package]] @@ -7167,8 +7167,8 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ - "crossbeam-deque", - "crossbeam-utils", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] @@ -7177,12 +7177,12 @@ version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ec0a99f2de91c3cddc84b37e7db80e4d96b743e05607f647eb236fc0455907f" dependencies = [ - "pem", - "ring", - "rustls-pki-types", - "time", - "x509-parser 0.18.0", - "yasna", + "pem", + "ring", + "rustls-pki-types", + "time", + "x509-parser 0.18.0", + "yasna", ] [[package]] @@ -7197,8 +7197,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" dependencies = [ - "recursive-proc-macro-impl", - "stacker", + "recursive-proc-macro-impl", + "stacker", ] [[package]] @@ -7207,8 +7207,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" dependencies = [ - "quote", - "syn 2.0.114", + "quote", + "syn 2.0.114", ] [[package]] @@ -7217,7 +7217,7 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7226,7 +7226,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7235,9 +7235,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.17", - "libredox", - "thiserror 2.0.17", + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.17", ] [[package]] @@ -7246,10 +7246,10 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cffef0520d30fbd4151fb20e262947ae47fb0ab276a744a19b6398438105a072" dependencies = [ - "cpufeatures", - "fixedbitset", - "once_cell", - "readme-rustdocifier", + "cpufeatures", + "fixedbitset", + "once_cell", + "readme-rustdocifier", ] [[package]] @@ -7258,7 +7258,7 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ - "ref-cast-impl", + "ref-cast-impl", ] [[package]] @@ -7267,9 +7267,9 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -7278,10 +7278,10 @@ version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", ] [[package]] @@ -7290,9 +7290,9 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] @@ -7319,45 +7319,45 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots", + "base64", + "bytes", + "encoding_rs", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", ] [[package]] @@ -7366,9 +7366,9 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" dependencies = [ - "crypto-bigint 0.4.9", - "hmac 0.12.1", - "zeroize", + "crypto-bigint 0.4.9", + "hmac 0.12.1", + "zeroize", ] [[package]] @@ -7377,8 +7377,8 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "hmac 0.12.1", - "subtle", + "hmac 0.12.1", + "subtle", ] [[package]] @@ -7387,7 +7387,7 @@ version = "0.8.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" dependencies = [ - "bytemuck", + "bytemuck", ] [[package]] @@ -7396,12 +7396,12 @@ version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.17", - "libc", - "untrusted 0.9.0", - "windows-sys 0.52.0", + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", ] [[package]] @@ -7410,20 +7410,20 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528d42f8176e6e5e71ea69182b17d1d0a19a6b3b894b564678b74cd7cab13cfa" dependencies = [ - "async-trait", - "base64", - "chrono", - "futures", - "pastey 0.2.1", - "pin-project-lite", - "rmcp-macros", - "schemars 1.2.0", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-util", - "tracing", + "async-trait", + "base64", + "chrono", + "futures", + "pastey 0.2.1", + "pin-project-lite", + "rmcp-macros", + "schemars 1.2.0", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -7432,11 +7432,11 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3f81daaa494eb8e985c9462f7d6ce1ab05e5299f48aafd76cdd3d8b060e6f59" dependencies = [ - "darling 0.23.0", - "proc-macro2", - "quote", - "serde_json", - "syn 2.0.114", + "darling 0.23.0", + "proc-macro2", + "quote", + "serde_json", + "syn 2.0.114", ] [[package]] @@ -7445,7 +7445,7 @@ version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -7454,8 +7454,8 @@ version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155" dependencies = [ - "rmp", - "serde", + "rmp", + "serde", ] [[package]] @@ -7464,17 +7464,17 @@ version = "0.10.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d27d813937fdf8e9ad15e3e422a55da4021d29639000139ca19d99f3949060da" dependencies = [ - "const-oid 0.10.2", - "crypto-bigint 0.7.0-rc.15", - "crypto-primes", - "digest 0.11.0-rc.5", - "pkcs1", - "pkcs8 0.11.0-rc.8", - "rand_core 0.10.0-rc-3", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "spki 0.8.0-rc.4", - "zeroize", + "const-oid 0.10.2", + "crypto-bigint 0.7.0-rc.15", + "crypto-primes", + "digest 0.11.0-rc.5", + "pkcs1", + "pkcs8 0.11.0-rc.8", + "rand_core 0.10.0-rc-3", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "spki 0.8.0-rc.4", + "zeroize", ] [[package]] @@ -7483,9 +7483,9 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49" dependencies = [ - "futures-timer", - "futures-util", - "rstest_macros", + "futures-timer", + "futures-util", + "rstest_macros", ] [[package]] @@ -7494,16 +7494,16 @@ version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0" dependencies = [ - "cfg-if", - "glob", - "proc-macro-crate", - "proc-macro2", - "quote", - "regex", - "relative-path", - "rustc_version", - "syn 2.0.114", - "unicode-ident", + "cfg-if", + "glob", + "proc-macro-crate", + "proc-macro2", + "quote", + "regex", + "relative-path", + "rustc_version", + "syn 2.0.114", + "unicode-ident", ] [[package]] @@ -7512,19 +7512,19 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0feff8d882bff0b2fddaf99355a10336d43dd3ed44204f85ece28cf9626ab519" dependencies = [ - "bytes", - "fixedbitset", - "flume", - "futures-util", - "log", - "rustls-native-certs", - "rustls-pemfile", - "rustls-webpki 0.102.8", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", + "bytes", + "fixedbitset", + "flume", + "futures-util", + "log", + "rustls-native-certs", + "rustls-pemfile", + "rustls-webpki 0.102.8", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", ] [[package]] @@ -7533,59 +7533,59 @@ version = "0.56.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdbb7dcdd62c17ac911307ff693f55b3ec6712004d2d66ffdb8c0fa00269fd66" dependencies = [ - "aes 0.8.4", - "aws-lc-rs", - "bitflags 2.10.0", - "block-padding", - "byteorder", - "bytes", - "cbc", - "ctr 0.9.2", - "curve25519-dalek 4.1.3", - "data-encoding", - "delegate", - "der 0.7.10", - "digest 0.10.7", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "elliptic-curve 0.13.8", - "enum_dispatch", - "futures", - "generic-array 1.3.5", - "getrandom 0.2.17", - "hex-literal", - "hmac 0.12.1", - "home", - "inout 0.1.4", - "internal-russh-forked-ssh-key", - "libcrux-ml-kem", - "log", - "md5 0.7.0", - "num-bigint", - "p256 0.13.2", - "p384", - "p521", - "pageant", - "pbkdf2 0.12.2", - "pkcs1", - "pkcs5", - "pkcs8 0.10.2", - "rand 0.8.5", - "rand_core 0.6.4", - "rsa", - "russh-cryptovec", - "russh-util", - "sec1 0.7.3", - "sha1 0.10.6", - "sha2 0.10.9", - "signature 2.2.0", - "spki 0.7.3", - "ssh-encoding 0.2.0", - "subtle", - "thiserror 1.0.69", - "tokio", - "typenum", - "zeroize", + "aes 0.8.4", + "aws-lc-rs", + "bitflags 2.10.0", + "block-padding", + "byteorder", + "bytes", + "cbc", + "ctr 0.9.2", + "curve25519-dalek 4.1.3", + "data-encoding", + "delegate", + "der 0.7.10", + "digest 0.10.7", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "elliptic-curve 0.13.8", + "enum_dispatch", + "futures", + "generic-array 1.3.5", + "getrandom 0.2.17", + "hex-literal", + "hmac 0.12.1", + "home", + "inout 0.1.4", + "internal-russh-forked-ssh-key", + "libcrux-ml-kem", + "log", + "md5 0.7.0", + "num-bigint", + "p256 0.13.2", + "p384", + "p521", + "pageant", + "pbkdf2 0.12.2", + "pkcs1", + "pkcs5", + "pkcs8 0.10.2", + "rand 0.8.5", + "rand_core 0.6.4", + "rsa", + "russh-cryptovec", + "russh-util", + "sec1 0.7.3", + "sha1 0.10.6", + "sha2 0.10.9", + "signature 2.2.0", + "spki 0.7.3", + "ssh-encoding 0.2.0", + "subtle", + "thiserror 1.0.69", + "tokio", + "typenum", + "zeroize", ] [[package]] @@ -7594,11 +7594,11 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf" dependencies = [ - "libc", - "log", - "nix 0.29.0", - "ssh-encoding 0.2.0", - "winapi", + "libc", + "log", + "nix 0.29.0", + "ssh-encoding 0.2.0", + "winapi", ] [[package]] @@ -7607,15 +7607,15 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bb94393cafad0530145b8f626d8687f1ee1dedb93d7ba7740d6ae81868b13b5" dependencies = [ - "bitflags 2.10.0", - "bytes", - "chrono", - "flurry", - "log", - "serde", - "thiserror 2.0.17", - "tokio", - "tokio-util", + "bitflags 2.10.0", + "bytes", + "chrono", + "flurry", + "log", + "serde", + "thiserror 2.0.17", + "tokio", + "tokio-util", ] [[package]] @@ -7624,10 +7624,10 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6" dependencies = [ - "chrono", - "tokio", - "wasm-bindgen", - "wasm-bindgen-futures", + "chrono", + "tokio", + "wasm-bindgen", + "wasm-bindgen-futures", ] [[package]] @@ -7636,9 +7636,9 @@ version = "8.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca" dependencies = [ - "rust-embed-impl", - "rust-embed-utils", - "walkdir", + "rust-embed-impl", + "rust-embed-utils", + "walkdir", ] [[package]] @@ -7647,12 +7647,12 @@ version = "8.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2" dependencies = [ - "proc-macro2", - "quote", - "rust-embed-utils", - "shellexpand", - "syn 2.0.114", - "walkdir", + "proc-macro2", + "quote", + "rust-embed-utils", + "shellexpand", + "syn 2.0.114", + "walkdir", ] [[package]] @@ -7661,8 +7661,8 @@ version = "8.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475" dependencies = [ - "sha2 0.10.9", - "walkdir", + "sha2 0.10.9", + "walkdir", ] [[package]] @@ -7683,712 +7683,712 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver", + "semver", ] [[package]] name = "rustfs" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-trait", - "atoi", - "atomic_enum", - "axum", - "axum-server", - "base64", - "base64-simd", - "bytes", - "chrono", - "clap", - "const-str", - "datafusion", - "flatbuffers", - "futures", - "futures-util", - "hex-simd", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "jemalloc_pprof", - "libc", - "libsystemd", - "libunftp", - "matchit 0.9.1", - "md5 0.8.0", - "metrics", - "mimalloc", - "mime_guess", - "moka", - "pin-project-lite", - "pprof", - "reqwest", - "rmp-serde", - "russh", - "russh-sftp", - "rust-embed", - "rustfs-ahm", - "rustfs-appauth", - "rustfs-audit", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-iam", - "rustfs-kms", - "rustfs-lock", - "rustfs-madmin", - "rustfs-notify", - "rustfs-obs", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-s3select-api", - "rustfs-s3select-query", - "rustfs-targets", - "rustfs-utils", - "rustfs-zip", - "rustls", - "rustls-pemfile", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "serial_test", - "shadow-rs", - "socket2", - "ssh-key", - "subtle", - "sysinfo", - "thiserror 2.0.17", - "tikv-jemalloc-ctl", - "tikv-jemallocator", - "time", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", - "tonic", - "tower", - "tower-http", - "tracing", - "url", - "urlencoding", - "uuid", - "zip", + "astral-tokio-tar", + "async-trait", + "atoi", + "atomic_enum", + "axum", + "axum-server", + "base64", + "base64-simd", + "bytes", + "chrono", + "clap", + "const-str", + "datafusion", + "flatbuffers", + "futures", + "futures-util", + "hex-simd", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "jemalloc_pprof", + "libc", + "libsystemd", + "libunftp", + "matchit 0.9.1", + "md5 0.8.0", + "metrics", + "mimalloc", + "mime_guess", + "moka", + "pin-project-lite", + "pprof", + "reqwest", + "rmp-serde", + "russh", + "russh-sftp", + "rust-embed", + "rustfs-ahm", + "rustfs-appauth", + "rustfs-audit", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-iam", + "rustfs-kms", + "rustfs-lock", + "rustfs-madmin", + "rustfs-notify", + "rustfs-obs", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-s3select-api", + "rustfs-s3select-query", + "rustfs-targets", + "rustfs-utils", + "rustfs-zip", + "rustls", + "rustls-pemfile", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "serial_test", + "shadow-rs", + "socket2", + "ssh-key", + "subtle", + "sysinfo", + "thiserror 2.0.17", + "tikv-jemalloc-ctl", + "tikv-jemallocator", + "time", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", + "tonic", + "tower", + "tower-http", + "tracing", + "url", + "urlencoding", + "uuid", + "zip", ] [[package]] name = "rustfs-ahm" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "chrono", - "futures", - "heed", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-common", - "rustfs-config", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-madmin", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "serial_test", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", - "tracing-subscriber", - "uuid", - "walkdir", + "anyhow", + "async-trait", + "chrono", + "futures", + "heed", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-common", + "rustfs-config", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-madmin", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "serial_test", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", + "tracing-subscriber", + "uuid", + "walkdir", ] [[package]] name = "rustfs-appauth" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "rsa", - "serde", - "serde_json", + "base64-simd", + "rand 0.10.0-rc.6", + "rsa", + "serde", + "serde_json", ] [[package]] name = "rustfs-audit" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "const-str", - "futures", - "hashbrown 0.16.1", - "metrics", - "rumqttc", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", + "async-trait", + "chrono", + "const-str", + "futures", + "hashbrown 0.16.1", + "metrics", + "rumqttc", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", ] [[package]] name = "rustfs-checksums" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "crc-fast", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pretty_assertions", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", + "base64-simd", + "bytes", + "crc-fast", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pretty_assertions", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", ] [[package]] name = "rustfs-common" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "path-clean", - "rmp-serde", - "rustfs-filemeta", - "rustfs-madmin", - "s3s", - "serde", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "chrono", + "path-clean", + "rmp-serde", + "rustfs-filemeta", + "rustfs-madmin", + "s3s", + "serde", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-config" version = "0.0.5" dependencies = [ - "const-str", + "const-str", ] [[package]] name = "rustfs-credentials" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "serde", - "serde_json", - "time", + "base64-simd", + "rand 0.10.0-rc.6", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-crypto" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "argon2 0.6.0-rc.5", - "cfg-if", - "chacha20poly1305", - "jsonwebtoken", - "pbkdf2 0.13.0-rc.6", - "rand 0.10.0-rc.6", - "serde_json", - "sha2 0.11.0-rc.3", - "test-case", - "thiserror 2.0.17", - "time", + "aes-gcm 0.11.0-rc.2", + "argon2 0.6.0-rc.5", + "cfg-if", + "chacha20poly1305", + "jsonwebtoken", + "pbkdf2 0.13.0-rc.6", + "rand 0.10.0-rc.6", + "serde_json", + "sha2 0.11.0-rc.3", + "test-case", + "thiserror 2.0.17", + "time", ] [[package]] name = "rustfs-ecstore" version = "0.0.5" dependencies = [ - "async-channel", - "async-recursion", - "async-trait", - "aws-config", - "aws-credential-types", - "aws-sdk-s3", - "aws-smithy-types", - "base64", - "base64-simd", - "byteorder", - "bytes", - "bytesize", - "chrono", - "criterion", - "dunce", - "enumset", - "faster-hex", - "flatbuffers", - "futures", - "glob", - "google-cloud-auth", - "google-cloud-storage", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "lazy_static", - "md-5 0.11.0-rc.3", - "moka", - "num_cpus", - "parking_lot", - "path-absolutize", - "pin-project-lite", - "quick-xml 0.39.0", - "rand 0.10.0-rc.6", - "reed-solomon-simd", - "regex", - "reqwest", - "rmp", - "rmp-serde", - "rustfs-checksums", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-signer", - "rustfs-utils", - "rustfs-workers", - "rustls", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "shadow-rs", - "smallvec", - "temp-env", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tonic", - "tower", - "tracing", - "tracing-subscriber", - "url", - "urlencoding", - "uuid", - "xxhash-rust", + "async-channel", + "async-recursion", + "async-trait", + "aws-config", + "aws-credential-types", + "aws-sdk-s3", + "aws-smithy-types", + "base64", + "base64-simd", + "byteorder", + "bytes", + "bytesize", + "chrono", + "criterion", + "dunce", + "enumset", + "faster-hex", + "flatbuffers", + "futures", + "glob", + "google-cloud-auth", + "google-cloud-storage", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "lazy_static", + "md-5 0.11.0-rc.3", + "moka", + "num_cpus", + "parking_lot", + "path-absolutize", + "pin-project-lite", + "quick-xml 0.39.0", + "rand 0.10.0-rc.6", + "reed-solomon-simd", + "regex", + "reqwest", + "rmp", + "rmp-serde", + "rustfs-checksums", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-signer", + "rustfs-utils", + "rustfs-workers", + "rustls", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "shadow-rs", + "smallvec", + "temp-env", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tonic", + "tower", + "tracing", + "tracing-subscriber", + "url", + "urlencoding", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-filemeta" version = "0.0.5" dependencies = [ - "byteorder", - "bytes", - "crc-fast", - "criterion", - "regex", - "rmp", - "rmp-serde", - "rustfs-utils", - "s3s", - "serde", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", - "uuid", - "xxhash-rust", + "byteorder", + "bytes", + "crc-fast", + "criterion", + "regex", + "rmp", + "rmp-serde", + "rustfs-utils", + "s3s", + "serde", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-iam" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "base64-simd", - "futures", - "jsonwebtoken", - "pollster", - "rand 0.10.0-rc.6", - "rustfs-credentials", - "rustfs-crypto", - "rustfs-ecstore", - "rustfs-madmin", - "rustfs-policy", - "rustfs-utils", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", + "arc-swap", + "async-trait", + "base64-simd", + "futures", + "jsonwebtoken", + "pollster", + "rand 0.10.0-rc.6", + "rustfs-credentials", + "rustfs-crypto", + "rustfs-ecstore", + "rustfs-madmin", + "rustfs-policy", + "rustfs-utils", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-kms" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "async-trait", - "base64", - "chacha20poly1305", - "chrono", - "md5 0.8.0", - "moka", - "rand 0.10.0-rc.6", - "reqwest", - "serde", - "serde_json", - "sha2 0.11.0-rc.3", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "uuid", - "vaultrs", - "zeroize", + "aes-gcm 0.11.0-rc.2", + "async-trait", + "base64", + "chacha20poly1305", + "chrono", + "md5 0.8.0", + "moka", + "rand 0.10.0-rc.6", + "reqwest", + "serde", + "serde_json", + "sha2 0.11.0-rc.3", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "uuid", + "vaultrs", + "zeroize", ] [[package]] name = "rustfs-lock" version = "0.0.5" dependencies = [ - "async-trait", - "crossbeam-queue", - "futures", - "parking_lot", - "serde", - "serde_json", - "smallvec", - "smartstring", - "thiserror 2.0.17", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "crossbeam-queue", + "futures", + "parking_lot", + "serde", + "serde_json", + "smallvec", + "smartstring", + "thiserror 2.0.17", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-madmin" version = "0.0.5" dependencies = [ - "chrono", - "humantime", - "hyper", - "serde", - "serde_json", - "time", + "chrono", + "humantime", + "hyper", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-mcp" version = "0.0.5" dependencies = [ - "anyhow", - "aws-sdk-s3", - "clap", - "mime_guess", - "rmcp", - "schemars 1.2.0", - "serde", - "serde_json", - "tokio", - "tracing", - "tracing-subscriber", + "anyhow", + "aws-sdk-s3", + "clap", + "mime_guess", + "rmcp", + "schemars 1.2.0", + "serde", + "serde_json", + "tokio", + "tracing", + "tracing-subscriber", ] [[package]] name = "rustfs-notify" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "axum", - "chrono", - "form_urlencoded", - "futures", - "hashbrown 0.16.1", - "quick-xml 0.39.0", - "rayon", - "rumqttc", - "rustc-hash", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "rustfs-utils", - "serde", - "serde_json", - "starshard", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-subscriber", - "url", - "wildmatch", + "arc-swap", + "async-trait", + "axum", + "chrono", + "form_urlencoded", + "futures", + "hashbrown 0.16.1", + "quick-xml 0.39.0", + "rayon", + "rumqttc", + "rustc-hash", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "rustfs-utils", + "serde", + "serde_json", + "starshard", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "wildmatch", ] [[package]] name = "rustfs-obs" version = "0.0.5" dependencies = [ - "flexi_logger", - "metrics", - "nu-ansi-term", - "nvml-wrapper", - "opentelemetry", - "opentelemetry-appender-tracing", - "opentelemetry-otlp", - "opentelemetry-semantic-conventions", - "opentelemetry-stdout", - "opentelemetry_sdk", - "rustfs-config", - "rustfs-utils", - "serde", - "smallvec", - "sysinfo", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-appender", - "tracing-error", - "tracing-opentelemetry", - "tracing-subscriber", + "flexi_logger", + "metrics", + "nu-ansi-term", + "nvml-wrapper", + "opentelemetry", + "opentelemetry-appender-tracing", + "opentelemetry-otlp", + "opentelemetry-semantic-conventions", + "opentelemetry-stdout", + "opentelemetry_sdk", + "rustfs-config", + "rustfs-utils", + "serde", + "smallvec", + "sysinfo", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-appender", + "tracing-error", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] name = "rustfs-policy" version = "0.0.5" dependencies = [ - "async-trait", - "base64-simd", - "chrono", - "futures", - "ipnetwork", - "jsonwebtoken", - "moka", - "pollster", - "regex", - "reqwest", - "rustfs-config", - "rustfs-credentials", - "rustfs-crypto", - "serde", - "serde_json", - "strum", - "temp-env", - "test-case", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", + "async-trait", + "base64-simd", + "chrono", + "futures", + "ipnetwork", + "jsonwebtoken", + "moka", + "pollster", + "regex", + "reqwest", + "rustfs-config", + "rustfs-credentials", + "rustfs-crypto", + "serde", + "serde_json", + "strum", + "temp-env", + "test-case", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", ] [[package]] name = "rustfs-protos" version = "0.0.5" dependencies = [ - "flatbuffers", - "prost 0.14.3", - "rustfs-common", - "tonic", - "tonic-prost", - "tonic-prost-build", - "tracing", + "flatbuffers", + "prost 0.14.3", + "rustfs-common", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tracing", ] [[package]] name = "rustfs-rio" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "base64", - "bytes", - "crc-fast", - "faster-hex", - "futures", - "hex-simd", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pin-project-lite", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-config", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "thiserror 2.0.17", - "tokio", - "tokio-test", - "tokio-util", - "tracing", + "aes-gcm 0.11.0-rc.2", + "base64", + "bytes", + "crc-fast", + "faster-hex", + "futures", + "hex-simd", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pin-project-lite", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-config", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "thiserror 2.0.17", + "tokio", + "tokio-test", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-s3select-api" version = "0.0.5" dependencies = [ - "async-trait", - "bytes", - "chrono", - "datafusion", - "futures", - "futures-core", - "http 1.4.0", - "object_store", - "parking_lot", - "pin-project-lite", - "rustfs-common", - "rustfs-ecstore", - "s3s", - "snafu 0.8.9", - "tokio", - "tokio-util", - "tracing", - "transform-stream", - "url", + "async-trait", + "bytes", + "chrono", + "datafusion", + "futures", + "futures-core", + "http 1.4.0", + "object_store", + "parking_lot", + "pin-project-lite", + "rustfs-common", + "rustfs-ecstore", + "s3s", + "snafu 0.8.9", + "tokio", + "tokio-util", + "tracing", + "transform-stream", + "url", ] [[package]] name = "rustfs-s3select-query" version = "0.0.5" dependencies = [ - "async-recursion", - "async-trait", - "datafusion", - "derive_builder 0.20.2", - "futures", - "parking_lot", - "rustfs-s3select-api", - "s3s", - "snafu 0.8.9", - "tokio", - "tracing", + "async-recursion", + "async-trait", + "datafusion", + "derive_builder 0.20.2", + "futures", + "parking_lot", + "rustfs-s3select-api", + "s3s", + "snafu 0.8.9", + "tokio", + "tracing", ] [[package]] name = "rustfs-signer" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "http 1.4.0", - "hyper", - "rustfs-utils", - "s3s", - "serde_urlencoded", - "time", - "tracing", + "base64-simd", + "bytes", + "http 1.4.0", + "hyper", + "rustfs-utils", + "s3s", + "serde_urlencoded", + "time", + "tracing", ] [[package]] name = "rustfs-targets" version = "0.0.5" dependencies = [ - "async-trait", - "reqwest", - "rumqttc", - "rustfs-config", - "rustfs-utils", - "serde", - "serde_json", - "snap", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "urlencoding", - "uuid", + "async-trait", + "reqwest", + "rumqttc", + "rustfs-config", + "rustfs-utils", + "serde", + "serde_json", + "snap", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "urlencoding", + "uuid", ] [[package]] name = "rustfs-utils" version = "0.0.5" dependencies = [ - "base64-simd", - "blake3", - "brotli 8.0.2", - "bytes", - "convert_case", - "crc-fast", - "flate2", - "futures", - "hashbrown 0.16.1", - "hex-simd", - "highway", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "libc", - "local-ip-address", - "lz4", - "md-5 0.11.0-rc.3", - "netif", - "nix 0.30.1", - "rand 0.10.0-rc.6", - "regex", - "rustfs-config", - "rustls", - "rustls-pemfile", - "rustls-pki-types", - "s3s", - "serde", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "siphasher", - "snap", - "sysinfo", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "transform-stream", - "url", - "windows 0.62.2", - "zstd", + "base64-simd", + "blake3", + "brotli 8.0.2", + "bytes", + "convert_case", + "crc-fast", + "flate2", + "futures", + "hashbrown 0.16.1", + "hex-simd", + "highway", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "libc", + "local-ip-address", + "lz4", + "md-5 0.11.0-rc.3", + "netif", + "nix 0.30.1", + "rand 0.10.0-rc.6", + "regex", + "rustfs-config", + "rustls", + "rustls-pemfile", + "rustls-pki-types", + "s3s", + "serde", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "siphasher", + "snap", + "sysinfo", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "transform-stream", + "url", + "windows 0.62.2", + "zstd", ] [[package]] name = "rustfs-workers" version = "0.0.5" dependencies = [ - "tokio", - "tracing", + "tokio", + "tracing", ] [[package]] name = "rustfs-zip" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-compression", - "tokio", - "tokio-stream", + "astral-tokio-tar", + "async-compression", + "tokio", + "tokio-stream", ] [[package]] @@ -8397,7 +8397,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom 7.1.3", + "nom 7.1.3", ] [[package]] @@ -8406,18 +8406,18 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "759a090a17ce545d1adcffcc48207d5136c8984d8153bd8247b1ad4a71e49f5f" dependencies = [ - "anyhow", - "async-trait", - "bytes", - "http 1.4.0", - "reqwest", - "rustify_derive", - "serde", - "serde_json", - "serde_urlencoded", - "thiserror 1.0.69", - "tracing", - "url", + "anyhow", + "async-trait", + "bytes", + "http 1.4.0", + "reqwest", + "rustify_derive", + "serde", + "serde_json", + "serde_urlencoded", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -8426,12 +8426,12 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f07d43b2dbdbd99aaed648192098f0f413b762f0f352667153934ef3955f1793" dependencies = [ - "proc-macro2", - "quote", - "regex", - "serde_urlencoded", - "syn 1.0.109", - "synstructure 0.12.6", + "proc-macro2", + "quote", + "regex", + "serde_urlencoded", + "syn 1.0.109", + "synstructure 0.12.6", ] [[package]] @@ -8440,11 +8440,11 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] @@ -8453,11 +8453,11 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.11.0", - "windows-sys 0.61.2", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.2", ] [[package]] @@ -8466,14 +8466,14 @@ version = "0.23.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" dependencies = [ - "aws-lc-rs", - "log", - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki 0.103.8", - "subtle", - "zeroize", + "aws-lc-rs", + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki 0.103.8", + "subtle", + "zeroize", ] [[package]] @@ -8482,10 +8482,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", - "security-framework", + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", ] [[package]] @@ -8494,7 +8494,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -8503,8 +8503,8 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" dependencies = [ - "web-time", - "zeroize", + "web-time", + "zeroize", ] [[package]] @@ -8513,9 +8513,9 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8524,10 +8524,10 @@ version = "0.103.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" dependencies = [ - "aws-lc-rs", - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "aws-lc-rs", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8547,48 +8547,48 @@ name = "s3s" version = "0.13.0-alpha" source = "git+https://github.com/s3s-project/s3s.git?branch=main#18c168ae21bf1176555f8f529686ecdc2ebd6db7" dependencies = [ - "arrayvec", - "async-trait", - "atoi", - "base64-simd", - "bytes", - "bytestring", - "cfg-if", - "chrono", - "const-str", - "crc-fast", - "futures", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "httparse", - "hyper", - "itoa", - "md-5 0.11.0-rc.3", - "memchr", - "mime", - "nom 8.0.0", - "numeric_cast", - "pin-project-lite", - "quick-xml 0.37.5", - "serde", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "smallvec", - "std-next", - "subtle", - "sync_wrapper", - "thiserror 2.0.17", - "time", - "tokio", - "tower", - "tracing", - "transform-stream", - "urlencoding", - "zeroize", + "arrayvec", + "async-trait", + "atoi", + "base64-simd", + "bytes", + "bytestring", + "cfg-if", + "chrono", + "const-str", + "crc-fast", + "futures", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "httparse", + "hyper", + "itoa", + "md-5 0.11.0-rc.3", + "memchr", + "mime", + "nom 8.0.0", + "numeric_cast", + "pin-project-lite", + "quick-xml 0.37.5", + "serde", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "smallvec", + "std-next", + "subtle", + "sync_wrapper", + "thiserror 2.0.17", + "time", + "tokio", + "tower", + "tracing", + "transform-stream", + "urlencoding", + "zeroize", ] [[package]] @@ -8597,7 +8597,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -8606,7 +8606,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" dependencies = [ - "winapi-util", + "winapi-util", ] [[package]] @@ -8615,7 +8615,7 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc" dependencies = [ - "sdd", + "sdd", ] [[package]] @@ -8624,7 +8624,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -8633,10 +8633,10 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ - "dyn-clone", - "ref-cast", - "serde", - "serde_json", + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] @@ -8645,12 +8645,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" dependencies = [ - "chrono", - "dyn-clone", - "ref-cast", - "schemars_derive", - "serde", - "serde_json", + "chrono", + "dyn-clone", + "ref-cast", + "schemars_derive", + "serde", + "serde_json", ] [[package]] @@ -8659,10 +8659,10 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4908ad288c5035a8eb12cfdf0d49270def0a268ee162b75eeee0f85d155a7c45" dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.114", + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.114", ] [[package]] @@ -8677,9 +8677,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" dependencies = [ - "pbkdf2 0.12.2", - "salsa20", - "sha2 0.10.9", + "pbkdf2 0.12.2", + "salsa20", + "sha2 0.10.9", ] [[package]] @@ -8694,12 +8694,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" dependencies = [ - "base16ct 0.1.1", - "der 0.6.1", - "generic-array 0.14.7", - "pkcs8 0.9.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "der 0.6.1", + "generic-array 0.14.7", + "pkcs8 0.9.0", + "subtle", + "zeroize", ] [[package]] @@ -8708,12 +8708,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ - "base16ct 0.2.0", - "der 0.7.10", - "generic-array 0.14.7", - "pkcs8 0.10.2", - "subtle", - "zeroize", + "base16ct 0.2.0", + "der 0.7.10", + "generic-array 0.14.7", + "pkcs8 0.10.2", + "subtle", + "zeroize", ] [[package]] @@ -8722,8 +8722,8 @@ version = "0.8.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2568531a8ace88b848310caa98fb2115b151ef924d54aa523e659c21b9d32d71" dependencies = [ - "base16ct 1.0.0", - "hybrid-array", + "base16ct 1.0.0", + "hybrid-array", ] [[package]] @@ -8732,11 +8732,11 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.10.1", - "core-foundation-sys", - "libc", - "security-framework-sys", + "bitflags 2.10.0", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", ] [[package]] @@ -8745,8 +8745,8 @@ version = "2.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -8761,8 +8761,8 @@ version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -8777,8 +8777,8 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ - "serde_core", - "serde_derive", + "serde_core", + "serde_derive", ] [[package]] @@ -8787,7 +8787,7 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ - "serde_derive", + "serde_derive", ] [[package]] @@ -8796,9 +8796,9 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8807,9 +8807,9 @@ version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8818,7 +8818,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e497af288b3b95d067a23a4f749f2861121ffcb2f6d8379310dcda040c345ed" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -8827,11 +8827,11 @@ version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ - "itoa", - "memchr", - "serde", - "serde_core", - "zmij", + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", ] [[package]] @@ -8840,9 +8840,9 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" dependencies = [ - "itoa", - "serde", - "serde_core", + "itoa", + "serde", + "serde_core", ] [[package]] @@ -8851,7 +8851,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -8860,10 +8860,10 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", + "form_urlencoded", + "itoa", + "ryu", + "serde", ] [[package]] @@ -8872,17 +8872,17 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" dependencies = [ - "base64", - "chrono", - "hex", - "indexmap 1.9.3", - "indexmap 2.13.0", - "schemars 0.9.0", - "schemars 1.2.0", - "serde_core", - "serde_json", - "serde_with_macros", - "time", + "base64", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.0", + "serde_core", + "serde_json", + "serde_with_macros", + "time", ] [[package]] @@ -8891,10 +8891,10 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8903,8 +8903,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06" dependencies = [ - "base16ct 1.0.0", - "serde", + "base16ct 1.0.0", + "serde", ] [[package]] @@ -8913,13 +8913,13 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555" dependencies = [ - "futures-executor", - "futures-util", - "log", - "once_cell", - "parking_lot", - "scc", - "serial_test_derive", + "futures-executor", + "futures-util", + "log", + "once_cell", + "parking_lot", + "scc", + "serial_test_derive", ] [[package]] @@ -8928,9 +8928,9 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8939,9 +8939,9 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8950,9 +8950,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa1ae819b9870cadc959a052363de870944a1646932d274a4e270f64bf79e5ef" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8961,9 +8961,9 @@ version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8972,9 +8972,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8983,12 +8983,12 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff351910f271e7065781b6b4f0f43cb515d474d812f31176a0246d9058e47d5d" dependencies = [ - "cargo_metadata", - "const_format", - "is_debug", - "serde_json", - "time", - "tzdb", + "cargo_metadata", + "const_format", + "is_debug", + "serde_json", + "time", + "tzdb", ] [[package]] @@ -8997,7 +8997,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ - "lazy_static", + "lazy_static", ] [[package]] @@ -9006,7 +9006,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb" dependencies = [ - "dirs", + "dirs", ] [[package]] @@ -9021,8 +9021,8 @@ version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ - "errno", - "libc", + "errno", + "libc", ] [[package]] @@ -9031,8 +9031,8 @@ version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -9041,8 +9041,8 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -9051,8 +9051,8 @@ version = "3.0.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a96996ccff7dfa16f052bd995b4cecc72af22c35138738dc029f0ead6608d" dependencies = [ - "digest 0.11.0-rc.5", - "rand_core 0.10.0-rc-3", + "digest 0.11.0-rc.5", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -9073,10 +9073,10 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ - "num-bigint", - "num-traits", - "thiserror 2.0.17", - "time", + "num-bigint", + "num-traits", + "thiserror 2.0.17", + "time", ] [[package]] @@ -9097,10 +9097,10 @@ version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b3b8565691b22d2bdfc066426ed48f837fc0c5f2c8cad8d9718f7f99d6995c1" dependencies = [ - "anyhow", - "erased-serde 0.3.31", - "rustversion", - "serde_core", + "anyhow", + "erased-serde 0.3.31", + "rustversion", + "serde_core", ] [[package]] @@ -9109,9 +9109,9 @@ version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" dependencies = [ - "arc-swap", - "lazy_static", - "slog", + "arc-swap", + "lazy_static", + "slog", ] [[package]] @@ -9120,9 +9120,9 @@ version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" dependencies = [ - "log", - "slog", - "slog-scope", + "log", + "slog", + "slog-scope", ] [[package]] @@ -9131,7 +9131,7 @@ version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" dependencies = [ - "serde", + "serde", ] [[package]] @@ -9140,9 +9140,9 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" dependencies = [ - "autocfg", - "static_assertions", - "version_check", + "autocfg", + "static_assertions", + "version_check", ] [[package]] @@ -9151,8 +9151,8 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7" dependencies = [ - "doc-comment", - "snafu-derive 0.6.10", + "doc-comment", + "snafu-derive 0.6.10", ] [[package]] @@ -9161,8 +9161,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2" dependencies = [ - "backtrace", - "snafu-derive 0.8.9", + "backtrace", + "snafu-derive 0.8.9", ] [[package]] @@ -9171,9 +9171,9 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -9182,10 +9182,10 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9200,8 +9200,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" dependencies = [ - "libc", - "windows-sys 0.60.2", + "libc", + "windows-sys 0.60.2", ] [[package]] @@ -9210,7 +9210,7 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9219,7 +9219,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9228,8 +9228,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" dependencies = [ - "base64ct", - "der 0.6.1", + "base64ct", + "der 0.6.1", ] [[package]] @@ -9238,8 +9238,8 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ - "base64ct", - "der 0.7.10", + "base64ct", + "der 0.7.10", ] [[package]] @@ -9248,8 +9248,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80" dependencies = [ - "base64ct", - "der 0.8.0-rc.10", + "base64ct", + "der 0.8.0-rc.10", ] [[package]] @@ -9258,9 +9258,9 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f" dependencies = [ - "log", - "recursive", - "sqlparser_derive", + "log", + "recursive", + "sqlparser_derive", ] [[package]] @@ -9269,9 +9269,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9280,15 +9280,15 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f" dependencies = [ - "aes 0.8.4", - "aes-gcm 0.10.3", - "cbc", - "chacha20 0.9.1", - "cipher 0.4.4", - "ctr 0.9.2", - "poly1305 0.8.0", - "ssh-encoding 0.2.0", - "subtle", + "aes 0.8.4", + "aes-gcm 0.10.3", + "cbc", + "chacha20 0.9.1", + "cipher 0.4.4", + "ctr 0.9.2", + "poly1305 0.8.0", + "ssh-encoding 0.2.0", + "subtle", ] [[package]] @@ -9297,14 +9297,14 @@ version = "0.3.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "361de425e489d5fe3f1ecfd91531c8fe91ededbbc567e24b77a560d503309bf9" dependencies = [ - "aes 0.9.0-rc.2", - "aes-gcm 0.11.0-rc.2", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "des", - "poly1305 0.9.0-rc.3", - "ssh-encoding 0.3.0-rc.3", - "zeroize", + "aes 0.9.0-rc.2", + "aes-gcm 0.11.0-rc.2", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "des", + "poly1305 0.9.0-rc.3", + "ssh-encoding 0.3.0-rc.3", + "zeroize", ] [[package]] @@ -9313,10 +9313,10 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15" dependencies = [ - "base64ct", - "bytes", - "pem-rfc7468 0.7.0", - "sha2 0.10.9", + "base64ct", + "bytes", + "pem-rfc7468 0.7.0", + "sha2 0.10.9", ] [[package]] @@ -9325,12 +9325,12 @@ version = "0.3.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ad6a09263583e83e934fcd436b7e3bb9d69602e2feef3787adb615c1fe3a343" dependencies = [ - "base64ct", - "crypto-bigint 0.7.0-rc.15", - "digest 0.11.0-rc.5", - "pem-rfc7468 1.0.0", - "subtle", - "zeroize", + "base64ct", + "crypto-bigint 0.7.0-rc.15", + "digest 0.11.0-rc.5", + "pem-rfc7468 1.0.0", + "subtle", + "zeroize", ] [[package]] @@ -9339,16 +9339,16 @@ version = "0.7.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faefb89d4a5304e31238913d1f7f164e22494276ed58cd84d5058ba7b04911f" dependencies = [ - "ed25519-dalek 3.0.0-pre.2", - "rand_core 0.10.0-rc-3", - "rsa", - "sec1 0.8.0-rc.11", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "ssh-cipher 0.3.0-rc.4", - "ssh-encoding 0.3.0-rc.3", - "subtle", - "zeroize", + "ed25519-dalek 3.0.0-pre.2", + "rand_core 0.10.0-rc-3", + "rsa", + "sec1 0.8.0-rc.11", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "ssh-cipher 0.3.0-rc.4", + "ssh-encoding 0.3.0-rc.3", + "subtle", + "zeroize", ] [[package]] @@ -9363,11 +9363,11 @@ version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" dependencies = [ - "cc", - "cfg-if", - "libc", - "psm", - "windows-sys 0.59.0", + "cc", + "cfg-if", + "libc", + "psm", + "windows-sys 0.59.0", ] [[package]] @@ -9376,11 +9376,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a88b6e011736aa3523f5962c02ba2d6c4cff35d97a0a9a3999afa6111d704a76" dependencies = [ - "hashbrown 0.16.1", - "rayon", - "rustc-hash", - "serde", - "tokio", + "hashbrown 0.16.1", + "rayon", + "rustc-hash", + "serde", + "tokio", ] [[package]] @@ -9395,8 +9395,8 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04082e93ed1a06debd9148c928234b46d2cf260bc65f44e1d1d3fa594c5beebc" dependencies = [ - "simdutf8", - "thiserror 2.0.17", + "simdutf8", + "thiserror 2.0.17", ] [[package]] @@ -9423,7 +9423,7 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ - "strum_macros", + "strum_macros", ] [[package]] @@ -9432,10 +9432,10 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9450,17 +9450,17 @@ version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69a15b325bbe0a1f85de3dbf988a3a14e9cd321537dffcbf6641381dd6d7586f" dependencies = [ - "async-trait", - "chrono", - "futures-lite", - "lazy-regex", - "log", - "pin-project", - "rustls", - "rustls-pki-types", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", + "async-trait", + "chrono", + "futures-lite", + "lazy-regex", + "log", + "pin-project", + "rustls", + "rustls-pki-types", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", ] [[package]] @@ -9475,8 +9475,8 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4b854348b15b6c441bdd27ce9053569b016a0723eab2d015b1fd8e6abe4f708" dependencies = [ - "sval", - "sval_ref", + "sval", + "sval_ref", ] [[package]] @@ -9485,7 +9485,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0bd9e8b74410ddad37c6962587c5f9801a2caadba9e11f3f916ee3f31ae4a1f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9494,9 +9494,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe17b8deb33a9441280b4266c2d257e166bafbaea6e66b4b34ca139c91766d9" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9505,9 +9505,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "854addb048a5bafb1f496c98e0ab5b9b581c3843f03ca07c034ae110d3b7c623" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9516,9 +9516,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96cf068f482108ff44ae8013477cb047a1665d5f1a635ad7cf79582c1845dce9" dependencies = [ - "sval", - "sval_buffer", - "sval_ref", + "sval", + "sval_buffer", + "sval_ref", ] [[package]] @@ -9527,7 +9527,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed02126365ffe5ab8faa0abd9be54fbe68d03d607cd623725b0a71541f8aaa6f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9536,9 +9536,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a263383c6aa2076c4ef6011d3bae1b356edf6ea2613e3d8e8ebaa7b57dd707d5" dependencies = [ - "serde_core", - "sval", - "sval_nested", + "serde_core", + "sval", + "sval_nested", ] [[package]] @@ -9547,10 +9547,10 @@ version = "12.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60" dependencies = [ - "debugid", - "memmap2", - "stable_deref_trait", - "uuid", + "debugid", + "memmap2", + "stable_deref_trait", + "uuid", ] [[package]] @@ -9559,9 +9559,9 @@ version = "12.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec" dependencies = [ - "cpp_demangle", - "rustc-demangle", - "symbolic-common", + "cpp_demangle", + "rustc-demangle", + "symbolic-common", ] [[package]] @@ -9570,9 +9570,9 @@ version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9581,9 +9581,9 @@ version = "2.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9592,7 +9592,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -9601,7 +9601,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2" dependencies = [ - "crossbeam-queue", + "crossbeam-queue", ] [[package]] @@ -9610,10 +9610,10 @@ version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", + "proc-macro2", + "quote", + "syn 1.0.109", + "unicode-xid", ] [[package]] @@ -9622,9 +9622,9 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9633,13 +9633,13 @@ version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f" dependencies = [ - "libc", - "memchr", - "ntapi", - "objc2-core-foundation", - "objc2-io-kit", - "rayon", - "windows 0.61.3", + "libc", + "memchr", + "ntapi", + "objc2-core-foundation", + "objc2-io-kit", + "rayon", + "windows 0.61.3", ] [[package]] @@ -9648,9 +9648,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.9.4", - "system-configuration-sys", + "bitflags 2.10.0", + "core-foundation 0.9.4", + "system-configuration-sys", ] [[package]] @@ -9659,8 +9659,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -9675,7 +9675,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96374855068f47402c3121c6eed88d29cb1de8f3ab27090e273e420bdabcf050" dependencies = [ - "parking_lot", + "parking_lot", ] [[package]] @@ -9684,11 +9684,11 @@ version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ - "fastrand", - "getrandom 0.3.4", - "once_cell", - "rustix 1.1.3", - "windows-sys 0.61.2", + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix 1.1.3", + "windows-sys 0.61.2", ] [[package]] @@ -9697,7 +9697,7 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" dependencies = [ - "test-case-macros", + "test-case-macros", ] [[package]] @@ -9706,10 +9706,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 2.0.114", + "cfg-if", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9718,10 +9718,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "test-case-core", + "proc-macro2", + "quote", + "syn 2.0.114", + "test-case-core", ] [[package]] @@ -9730,7 +9730,7 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.69", + "thiserror-impl 1.0.69", ] [[package]] @@ -9739,7 +9739,7 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.17", ] [[package]] @@ -9748,9 +9748,9 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9759,9 +9759,9 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9770,7 +9770,7 @@ version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -9779,9 +9779,9 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" dependencies = [ - "byteorder", - "integer-encoding", - "ordered-float", + "byteorder", + "integer-encoding", + "ordered-float", ] [[package]] @@ -9790,9 +9790,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ - "libc", - "paste", - "tikv-jemalloc-sys", + "libc", + "paste", + "tikv-jemalloc-sys", ] [[package]] @@ -9801,8 +9801,8 @@ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -9811,8 +9811,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" dependencies = [ - "libc", - "tikv-jemalloc-sys", + "libc", + "tikv-jemalloc-sys", ] [[package]] @@ -9821,15 +9821,15 @@ version = "0.3.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" dependencies = [ - "deranged", - "itoa", - "libc", - "num-conv", - "num_threads", - "powerfmt", - "serde", - "time-core", - "time-macros", + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde", + "time-core", + "time-macros", ] [[package]] @@ -9844,8 +9844,8 @@ version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" dependencies = [ - "num-conv", - "time-core", + "num-conv", + "time-core", ] [[package]] @@ -9854,7 +9854,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ - "crunchy", + "crunchy", ] [[package]] @@ -9863,8 +9863,8 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" dependencies = [ - "displaydoc", - "zerovec", + "displaydoc", + "zerovec", ] [[package]] @@ -9873,8 +9873,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" dependencies = [ - "serde", - "serde_json", + "serde", + "serde_json", ] [[package]] @@ -9883,7 +9883,7 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" dependencies = [ - "tinyvec_macros", + "tinyvec_macros", ] [[package]] @@ -9898,8 +9898,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" dependencies = [ - "tls_codec_derive", - "zeroize", + "tls_codec_derive", + "zeroize", ] [[package]] @@ -9908,9 +9908,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9919,15 +9919,15 @@ version = "1.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" dependencies = [ - "bytes", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys 0.61.2", + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", ] [[package]] @@ -9936,9 +9936,9 @@ version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9947,8 +9947,8 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "rustls", - "tokio", + "rustls", + "tokio", ] [[package]] @@ -9957,9 +9957,9 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", + "futures-core", + "pin-project-lite", + "tokio", ] [[package]] @@ -9968,9 +9968,9 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545" dependencies = [ - "futures-core", - "tokio", - "tokio-stream", + "futures-core", + "tokio", + "tokio-stream", ] [[package]] @@ -9979,12 +9979,12 @@ version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", - "pin-project-lite", - "tokio", + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite", + "tokio", ] [[package]] @@ -9993,10 +9993,10 @@ version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ - "serde", - "serde_spanned", - "toml_datetime 0.6.11", - "toml_edit 0.22.27", + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "toml_edit 0.22.27", ] [[package]] @@ -10005,7 +10005,7 @@ version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -10014,7 +10014,7 @@ version = "0.7.5+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -10023,12 +10023,12 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.13.0", - "serde", - "serde_spanned", - "toml_datetime 0.6.11", - "toml_write", - "winnow", + "indexmap 2.13.0", + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "toml_write", + "winnow", ] [[package]] @@ -10037,10 +10037,10 @@ version = "0.23.10+spec-1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ - "indexmap 2.13.0", - "toml_datetime 0.7.5+spec-1.1.0", - "toml_parser", - "winnow", + "indexmap 2.13.0", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "winnow", ] [[package]] @@ -10049,7 +10049,7 @@ version = "1.0.6+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" dependencies = [ - "winnow", + "winnow", ] [[package]] @@ -10064,30 +10064,30 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" dependencies = [ - "async-trait", - "axum", - "base64", - "bytes", - "flate2", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "rustls-native-certs", - "socket2", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", + "async-trait", + "axum", + "base64", + "bytes", + "flate2", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "rustls-native-certs", + "socket2", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10096,10 +10096,10 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3" dependencies = [ - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.114", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10108,9 +10108,9 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" dependencies = [ - "bytes", - "prost 0.14.3", - "tonic", + "bytes", + "prost 0.14.3", + "tonic", ] [[package]] @@ -10119,14 +10119,14 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2" dependencies = [ - "prettyplease", - "proc-macro2", - "prost-build", - "prost-types", - "quote", - "syn 2.0.114", - "tempfile", - "tonic-build", + "prettyplease", + "proc-macro2", + "prost-build", + "prost-types", + "quote", + "syn 2.0.114", + "tempfile", + "tonic-build", ] [[package]] @@ -10135,17 +10135,17 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" dependencies = [ - "futures-core", - "futures-util", - "indexmap 2.13.0", - "pin-project-lite", - "slab", - "sync_wrapper", - "tokio", - "tokio-util", - "tower-layer", - "tower-service", - "tracing", + "futures-core", + "futures-util", + "indexmap 2.13.0", + "pin-project-lite", + "slab", + "sync_wrapper", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10154,23 +10154,23 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ - "async-compression", - "bitflags 2.10.0", - "bytes", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "iri-string", - "pin-project-lite", - "tokio", - "tokio-util", - "tower", - "tower-layer", - "tower-service", - "tracing", - "uuid", + "async-compression", + "bitflags 2.10.0", + "bytes", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "iri-string", + "pin-project-lite", + "tokio", + "tokio-util", + "tower", + "tower-layer", + "tower-service", + "tracing", + "uuid", ] [[package]] @@ -10191,10 +10191,10 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", ] [[package]] @@ -10203,10 +10203,10 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" dependencies = [ - "crossbeam-channel", - "thiserror 2.0.17", - "time", - "tracing-subscriber", + "crossbeam-channel", + "thiserror 2.0.17", + "time", + "tracing-subscriber", ] [[package]] @@ -10215,9 +10215,9 @@ version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10226,8 +10226,8 @@ version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ - "once_cell", - "valuable", + "once_cell", + "valuable", ] [[package]] @@ -10236,8 +10236,8 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" dependencies = [ - "tracing", - "tracing-subscriber", + "tracing", + "tracing-subscriber", ] [[package]] @@ -10246,9 +10246,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ - "log", - "once_cell", - "tracing-core", + "log", + "once_cell", + "tracing-core", ] [[package]] @@ -10257,14 +10257,14 @@ version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc" dependencies = [ - "js-sys", - "opentelemetry", - "smallvec", - "tracing", - "tracing-core", - "tracing-log", - "tracing-subscriber", - "web-time", + "js-sys", + "opentelemetry", + "smallvec", + "tracing", + "tracing-core", + "tracing-log", + "tracing-subscriber", + "web-time", ] [[package]] @@ -10273,8 +10273,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" dependencies = [ - "serde", - "tracing-core", + "serde", + "tracing-core", ] [[package]] @@ -10283,20 +10283,20 @@ version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex-automata", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "time", - "tracing", - "tracing-core", - "tracing-log", - "tracing-serde", + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "time", + "tracing", + "tracing-core", + "tracing-log", + "tracing-serde", ] [[package]] @@ -10305,7 +10305,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1a814d25437963577f6221d33a2aaa60bfb44acc3330cdc7c334644e9832022" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -10344,9 +10344,9 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56d4e985b6dda743ae7fd4140c28105316ffd75bc58258ee6cc12934e3eb7a0c" dependencies = [ - "iana-time-zone", - "tz-rs", - "tzdb_data", + "iana-time-zone", + "tz-rs", + "tzdb_data", ] [[package]] @@ -10355,7 +10355,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42302a846dea7ab786f42dc5f519387069045acff793e1178d9368414168fe95" dependencies = [ - "tz-rs", + "tz-rs", ] [[package]] @@ -10394,8 +10394,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common 0.1.7", - "subtle", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -10404,8 +10404,8 @@ version = "0.6.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0386f227888b17b65d3e38219a7d41185035471300855c285667811907bb1677" dependencies = [ - "crypto-common 0.2.0-rc.9", - "subtle", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -10426,10 +10426,10 @@ version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", + "form_urlencoded", + "idna", + "percent-encoding", + "serde", ] [[package]] @@ -10456,12 +10456,12 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" dependencies = [ - "getrandom 0.3.4", - "js-sys", - "rand 0.9.2", - "serde_core", - "uuid-macro-internal", - "wasm-bindgen", + "getrandom 0.3.4", + "js-sys", + "rand 0.9.2", + "serde_core", + "uuid-macro-internal", + "wasm-bindgen", ] [[package]] @@ -10470,9 +10470,9 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10487,8 +10487,8 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" dependencies = [ - "value-bag-serde1", - "value-bag-sval2", + "value-bag-serde1", + "value-bag-sval2", ] [[package]] @@ -10497,9 +10497,9 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16530907bfe2999a1773ca5900a65101e092c70f642f25cc23ca0c43573262c5" dependencies = [ - "erased-serde 0.4.9", - "serde_core", - "serde_fmt", + "erased-serde 0.4.9", + "serde_core", + "serde_fmt", ] [[package]] @@ -10508,13 +10508,13 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d00ae130edd690eaa877e4f40605d534790d1cf1d651e7685bd6a144521b251f" dependencies = [ - "sval", - "sval_buffer", - "sval_dynamic", - "sval_fmt", - "sval_json", - "sval_ref", - "sval_serde", + "sval", + "sval_buffer", + "sval_dynamic", + "sval_fmt", + "sval_json", + "sval_ref", + "sval_serde", ] [[package]] @@ -10523,18 +10523,18 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f81eb4d9221ca29bad43d4b6871b6d2e7656e1af2cfca624a87e5d17880d831d" dependencies = [ - "async-trait", - "bytes", - "derive_builder 0.12.0", - "http 1.4.0", - "reqwest", - "rustify", - "rustify_derive", - "serde", - "serde_json", - "thiserror 1.0.69", - "tracing", - "url", + "async-trait", + "bytes", + "derive_builder 0.12.0", + "http 1.4.0", + "reqwest", + "rustify", + "rustify_derive", + "serde", + "serde_json", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -10555,8 +10555,8 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ - "same-file", - "winapi-util", + "same-file", + "winapi-util", ] [[package]] @@ -10565,7 +10565,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "try-lock", + "try-lock", ] [[package]] @@ -10580,7 +10580,7 @@ version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" dependencies = [ - "wit-bindgen", + "wit-bindgen", ] [[package]] @@ -10589,11 +10589,11 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", - "wasm-bindgen-shared", + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", ] [[package]] @@ -10602,11 +10602,11 @@ version = "0.4.56" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", + "cfg-if", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -10615,8 +10615,8 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" dependencies = [ - "quote", - "wasm-bindgen-macro-support", + "quote", + "wasm-bindgen-macro-support", ] [[package]] @@ -10625,11 +10625,11 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" dependencies = [ - "bumpalo", - "proc-macro2", - "quote", - "syn 2.0.114", - "wasm-bindgen-shared", + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.114", + "wasm-bindgen-shared", ] [[package]] @@ -10638,7 +10638,7 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -10647,11 +10647,11 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", ] [[package]] @@ -10660,8 +10660,8 @@ version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10670,8 +10670,8 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10680,7 +10680,7 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -10689,10 +10689,10 @@ version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.44", + "either", + "home", + "once_cell", + "rustix 0.38.44", ] [[package]] @@ -10701,7 +10701,7 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68" dependencies = [ - "serde", + "serde", ] [[package]] @@ -10710,8 +10710,8 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", ] [[package]] @@ -10726,7 +10726,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -10741,11 +10741,11 @@ version = "0.61.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" dependencies = [ - "windows-collections 0.2.0", - "windows-core 0.61.2", - "windows-future 0.2.1", - "windows-link 0.1.3", - "windows-numerics 0.2.0", + "windows-collections 0.2.0", + "windows-core 0.61.2", + "windows-future 0.2.1", + "windows-link 0.1.3", + "windows-numerics 0.2.0", ] [[package]] @@ -10754,10 +10754,10 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ - "windows-collections 0.3.2", - "windows-core 0.62.2", - "windows-future 0.3.2", - "windows-numerics 0.3.1", + "windows-collections 0.3.2", + "windows-core 0.62.2", + "windows-future 0.3.2", + "windows-numerics 0.3.1", ] [[package]] @@ -10766,7 +10766,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.61.2", ] [[package]] @@ -10775,7 +10775,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-core 0.62.2", + "windows-core 0.62.2", ] [[package]] @@ -10784,11 +10784,11 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.1.3", - "windows-result 0.3.4", - "windows-strings 0.4.2", + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", ] [[package]] @@ -10797,11 +10797,11 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10810,9 +10810,9 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", - "windows-threading 0.1.0", + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading 0.1.0", ] [[package]] @@ -10821,9 +10821,9 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", - "windows-threading 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", + "windows-threading 0.2.1", ] [[package]] @@ -10832,9 +10832,9 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10843,9 +10843,9 @@ version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10866,8 +10866,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", + "windows-core 0.61.2", + "windows-link 0.1.3", ] [[package]] @@ -10876,8 +10876,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", ] [[package]] @@ -10886,9 +10886,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10897,7 +10897,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10906,7 +10906,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10915,7 +10915,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10924,7 +10924,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10933,7 +10933,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10942,7 +10942,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10951,7 +10951,7 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.5", + "windows-targets 0.53.5", ] [[package]] @@ -10960,7 +10960,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10969,14 +10969,14 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -10985,15 +10985,15 @@ version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.2.1", - "windows_aarch64_gnullvm 0.53.1", - "windows_aarch64_msvc 0.53.1", - "windows_i686_gnu 0.53.1", - "windows_i686_gnullvm 0.53.1", - "windows_i686_msvc 0.53.1", - "windows_x86_64_gnu 0.53.1", - "windows_x86_64_gnullvm 0.53.1", - "windows_x86_64_msvc 0.53.1", + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] @@ -11002,7 +11002,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -11011,7 +11011,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -11116,7 +11116,7 @@ version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -11131,10 +11131,10 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a76ff259533532054cfbaefb115c613203c73707017459206380f03b3b3f266e" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11149,15 +11149,15 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11166,16 +11166,16 @@ version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "ring", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "ring", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11184,8 +11184,8 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ - "libc", - "rustix 1.1.3", + "libc", + "rustix 1.1.3", ] [[package]] @@ -11206,7 +11206,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" dependencies = [ - "lzma-sys", + "lzma-sys", ] [[package]] @@ -11221,7 +11221,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ - "time", + "time", ] [[package]] @@ -11230,9 +11230,9 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" dependencies = [ - "stable_deref_trait", - "yoke-derive", - "zerofrom", + "stable_deref_trait", + "yoke-derive", + "zerofrom", ] [[package]] @@ -11241,10 +11241,10 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11253,7 +11253,7 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" dependencies = [ - "zerocopy-derive", + "zerocopy-derive", ] [[package]] @@ -11262,9 +11262,9 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11273,7 +11273,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ - "zerofrom-derive", + "zerofrom-derive", ] [[package]] @@ -11282,10 +11282,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11294,7 +11294,7 @@ version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ - "zeroize_derive", + "zeroize_derive", ] [[package]] @@ -11303,9 +11303,9 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11314,9 +11314,9 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" dependencies = [ - "displaydoc", - "yoke", - "zerofrom", + "displaydoc", + "yoke", + "zerofrom", ] [[package]] @@ -11325,9 +11325,9 @@ version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", + "yoke", + "zerofrom", + "zerovec-derive", ] [[package]] @@ -11336,9 +11336,9 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11347,26 +11347,26 @@ version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" dependencies = [ - "aes 0.8.4", - "arbitrary", - "bzip2 0.6.1", - "constant_time_eq 0.3.1", - "crc32fast", - "deflate64", - "flate2", - "generic-array 0.14.7", - "getrandom 0.3.4", - "hmac 0.12.1", - "indexmap 2.13.0", - "lzma-rust2", - "memchr", - "pbkdf2 0.12.2", - "ppmd-rust", - "sha1 0.10.6", - "time", - "zeroize", - "zopfli", - "zstd", + "aes 0.8.4", + "arbitrary", + "bzip2 0.6.1", + "constant_time_eq 0.3.1", + "crc32fast", + "deflate64", + "flate2", + "generic-array 0.14.7", + "getrandom 0.3.4", + "hmac 0.12.1", + "indexmap 2.13.0", + "lzma-rust2", + "memchr", + "pbkdf2 0.12.2", + "ppmd-rust", + "sha1 0.10.6", + "time", + "zeroize", + "zopfli", + "zstd", ] [[package]] @@ -11387,10 +11387,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" dependencies = [ - "bumpalo", - "crc32fast", - "log", - "simd-adler32", + "bumpalo", + "crc32fast", + "log", + "simd-adler32", ] [[package]] @@ -11399,7 +11399,7 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "zstd-safe", + "zstd-safe", ] [[package]] @@ -11408,7 +11408,7 @@ version = "7.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" dependencies = [ - "zstd-sys", + "zstd-sys", ] [[package]] @@ -11417,6 +11417,6 @@ version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ - "cc", - "pkg-config", + "cc", + "pkg-config", ] diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index 35146ff3..59df88de 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -39,7 +39,7 @@ use datafusion::arrow::{ }; use futures::StreamExt; use http::{HeaderMap, StatusCode}; -use metrics::counter; +use metrics::{counter, histogram}; use rustfs_ecstore::bucket::quota::checker::QuotaChecker; use rustfs_ecstore::{ bucket::{ @@ -782,6 +782,25 @@ impl FS { let _ = helper.complete(&result); result } + + /// Auxiliary functions: parse version ID + /// + /// # Arguments + /// * `version_id` - An optional string representing the version ID to be parsed. + /// + /// # Returns + /// * `S3Result>` - A result containing an optional UUID if parsing is successful, or an S3 error if parsing fails. + fn parse_version_id(&self, version_id: Option) -> S3Result> { + if let Some(vid) = version_id { + let uuid = Uuid::parse_str(&vid).map_err(|e| { + error!("Invalid version ID: {}", e); + s3_error!(InvalidArgument, "Invalid version ID") + })?; + Ok(Some(uuid)) + } else { + Ok(None) + } + } } /// Helper function to get store and validate bucket exists @@ -4670,6 +4689,7 @@ impl S3 for FS { #[instrument(level = "debug", skip(self, req))] async fn put_object_tagging(&self, req: S3Request) -> S3Result> { + let start_time = std::time::Instant::now(); let mut helper = OperationHelper::new(&req, EventName::ObjectCreatedPutTagging, "s3:PutObjectTagging"); let PutObjectTaggingInput { bucket, @@ -4683,6 +4703,8 @@ impl S3 for FS { // Reference: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html // Reference: https://docs.aws.amazon.com/zh_cn/AmazonS3/latest/API/API_PutObjectTagging.html // https://github.com/minio/mint/blob/master/run/core/aws-sdk-go-v2/main.go#L1647 + error!("Tag set exceeds maximum of 10 tags: {}", tagging.tag_set.len()); + return Err(s3_error!(InvalidTag, "Cannot have more than 10 tags per object")); } let Some(store) = new_object_layer_fn() else { @@ -4691,71 +4713,118 @@ impl S3 for FS { let mut tag_keys = std::collections::HashSet::with_capacity(tagging.tag_set.len()); for tag in &tagging.tag_set { - let key = tag - .key - .as_ref() - .filter(|k| !k.is_empty()) - .ok_or_else(|| s3_error!(InvalidTag, "Tag key cannot be empty"))?; + let key = tag.key.as_ref().filter(|k| !k.is_empty()).ok_or_else(|| { + error!("Empty tag key"); + s3_error!(InvalidTag, "Tag key cannot be empty") + })?; if key.len() > 128 { + error!("Tag key too long: {} bytes", key.len()); return Err(s3_error!(InvalidTag, "Tag key is too long, maximum allowed length is 128 characters")); } - let value = tag - .value - .as_ref() - .ok_or_else(|| s3_error!(InvalidTag, "Tag value cannot be null"))?; + let value = tag.value.as_ref().ok_or_else(|| { + error!("Null tag value"); + s3_error!(InvalidTag, "Tag value cannot be null") + })?; if value.is_empty() { + error!("Empty tag value"); return Err(s3_error!(InvalidTag, "Tag value cannot be empty")); } if value.len() > 256 { + error!("Tag value too long: {} bytes", value.len()); return Err(s3_error!(InvalidTag, "Tag value is too long, maximum allowed length is 256 characters")); } if !tag_keys.insert(key) { + error!("Duplicate tag key: {}", key); return Err(s3_error!(InvalidTag, "Cannot provide multiple Tags with the same key")); } } let tags = encode_tags(tagging.tag_set); + debug!("Encoded tags: {}", tags); - // TODO: getOpts - // TODO: Replicate + // TODO: getOpts, Replicate + // Support versioned objects + let version_id = req.input.version_id.clone(); + let opts = ObjectOptions { + version_id: self.parse_version_id(version_id)?.map(Into::into), + ..Default::default() + }; - store - .put_object_tags(&bucket, &object, &tags, &ObjectOptions::default()) - .await - .map_err(ApiError::from)?; + store.put_object_tags(&bucket, &object, &tags, &opts).await.map_err(|e| { + error!("Failed to put object tags: {}", e); + counter!("rustfs.put_object_tagging.failure").increment(1); + ApiError::from(e) + })?; - let version_id = req.input.version_id.clone().unwrap_or_default(); - helper = helper.version_id(version_id); + // Invalidate cache for the tagged object + let manager = get_concurrency_manager(); + let version_id = req.input.version_id.clone(); + let cache_key = ConcurrencyManager::make_cache_key(&bucket, &object, version_id.clone().as_deref()); + tokio::spawn(async move { + manager + .invalidate_cache_versioned(&bucket, &object, version_id.as_deref()) + .await; + debug!("Cache invalidated for tagged object: {}", cache_key); + }); - let result = Ok(S3Response::new(PutObjectTaggingOutput { version_id: None })); + // Add metrics + counter!("rustfs.put_object_tagging.success").increment(1); + + let version_id_resp = req.input.version_id.clone().unwrap_or_default(); + helper = helper.version_id(version_id_resp); + + let result = Ok(S3Response::new(PutObjectTaggingOutput { + version_id: req.input.version_id.clone(), + })); let _ = helper.complete(&result); + let duration = start_time.elapsed(); + histogram!("rustfs.object_tagging.operation.duration.seconds", "operation" => "put").record(duration.as_secs_f64()); result } #[instrument(level = "debug", skip(self))] async fn get_object_tagging(&self, req: S3Request) -> S3Result> { + let start_time = std::time::Instant::now(); let GetObjectTaggingInput { bucket, key: object, .. } = req.input; + info!("Starting get_object_tagging for bucket: {}, object: {}", bucket, object); + let Some(store) = new_object_layer_fn() else { + error!("Store not initialized"); return Err(S3Error::with_message(S3ErrorCode::InternalError, "Not init".to_string())); }; - // TODO: version - let tags = store - .get_object_tags(&bucket, &object, &ObjectOptions::default()) - .await - .map_err(ApiError::from)?; + // Support versioned objects + let version_id = req.input.version_id.clone(); + let opts = ObjectOptions { + version_id: self.parse_version_id(version_id)?.map(Into::into), + ..Default::default() + }; + + let tags = store.get_object_tags(&bucket, &object, &opts).await.map_err(|e| { + if is_err_object_not_found(&e) { + error!("Object not found: {}", e); + return s3_error!(NoSuchKey); + } + error!("Failed to get object tags: {}", e); + ApiError::from(e).into() + })?; let tag_set = decode_tags(tags.as_str()); + debug!("Decoded tag set: {:?}", tag_set); + // Add metrics + counter!("rustfs.get_object_tagging.success").increment(1); + let duration = start_time.elapsed(); + histogram!("rustfs.object_tagging.operation.duration.seconds", "operation" => "put").record(duration.as_secs_f64()); Ok(S3Response::new(GetObjectTaggingOutput { tag_set, - version_id: None, + version_id: req.input.version_id.clone(), })) } @@ -4764,25 +4833,56 @@ impl S3 for FS { &self, req: S3Request, ) -> S3Result> { + let start_time = std::time::Instant::now(); let mut helper = OperationHelper::new(&req, EventName::ObjectCreatedDeleteTagging, "s3:DeleteObjectTagging"); - let DeleteObjectTaggingInput { bucket, key: object, .. } = req.input.clone(); + let DeleteObjectTaggingInput { + bucket, + key: object, + version_id, + .. + } = req.input.clone(); let Some(store) = new_object_layer_fn() else { + error!("Store not initialized"); return Err(S3Error::with_message(S3ErrorCode::InternalError, "Not init".to_string())); }; - // TODO: Replicate - // TODO: version - store - .delete_object_tags(&bucket, &object, &ObjectOptions::default()) - .await - .map_err(ApiError::from)?; + // Support versioned objects + let version_id_for_parse = version_id.clone(); + let opts = ObjectOptions { + version_id: self.parse_version_id(version_id_for_parse)?.map(Into::into), + ..Default::default() + }; - let version_id = req.input.version_id.clone().unwrap_or_else(|| Uuid::new_v4().to_string()); - helper = helper.version_id(version_id); + // TODO: Replicate (keep the original TODO, if further replication logic is needed) + store.delete_object_tags(&bucket, &object, &opts).await.map_err(|e| { + error!("Failed to delete object tags: {}", e); + ApiError::from(e) + })?; - let result = Ok(S3Response::new(DeleteObjectTaggingOutput { version_id: None })); + // Invalidate cache for the deleted tagged object + let manager = get_concurrency_manager(); + let version_id_clone = version_id.clone(); + tokio::spawn(async move { + manager + .invalidate_cache_versioned(&bucket, &object, version_id_clone.as_deref()) + .await; + debug!( + "Cache invalidated for deleted tagged object: bucket={}, object={}, version_id={:?}", + bucket, object, version_id_clone + ); + }); + + // Add metrics + counter!("rustfs.delete_object_tagging.success").increment(1); + + let version_id_resp = version_id.clone().unwrap_or_default(); + helper = helper.version_id(version_id_resp); + + let result = Ok(S3Response::new(DeleteObjectTaggingOutput { version_id })); let _ = helper.complete(&result); + let duration = start_time.elapsed(); + histogram!("rustfs.object_tagging.operation.duration.seconds", "operation" => "delete").record(duration.as_secs_f64()); result } From 650fae71fb512b6bff11c596d801f154c0879bfc Mon Sep 17 00:00:00 2001 From: houseme Date: Tue, 13 Jan 2026 10:15:41 +0800 Subject: [PATCH 06/22] Remove the `rustfs/console/config.json` route (#1487) --- rustfs/src/admin/console.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfs/src/admin/console.rs b/rustfs/src/admin/console.rs index 6e5c9cc1..07046d40 100644 --- a/rustfs/src/admin/console.rs +++ b/rustfs/src/admin/console.rs @@ -269,6 +269,7 @@ async fn version_handler() -> impl IntoResponse { /// - 200 OK with JSON body containing the console configuration if initialized. /// - 500 Internal Server Error if configuration is not initialized. #[instrument(fields(uri))] +#[allow(dead_code)] async fn config_handler(uri: Uri, headers: HeaderMap) -> impl IntoResponse { // Get the scheme from the headers or use the URI scheme let scheme = headers @@ -482,7 +483,6 @@ fn setup_console_middleware_stack( let mut app = Router::new() .route(FAVICON_PATH, get(static_handler)) .route(&format!("{CONSOLE_PREFIX}/license"), get(license_handler)) - .route(&format!("{CONSOLE_PREFIX}/config.json"), get(config_handler)) .route(&format!("{CONSOLE_PREFIX}/version"), get(version_handler)) .route(&format!("{CONSOLE_PREFIX}{HEALTH_PREFIX}"), get(health_check).head(health_check)) .nest(CONSOLE_PREFIX, Router::new().fallback_service(get(static_handler))) From f795299d53c26789e8edb740ed8058f5093a8f2e Mon Sep 17 00:00:00 2001 From: houseme Date: Tue, 13 Jan 2026 15:02:54 +0800 Subject: [PATCH 07/22] Optimization and collation of dependencies introduction processing (#1493) --- crates/ecstore/src/bitrot.rs | 3 +- .../ecstore/src/bucket/bucket_target_sys.rs | 17 +++--- .../lifecycle/bucket_lifecycle_audit.rs | 2 +- .../ecstore/src/bucket/lifecycle/lifecycle.rs | 3 +- .../bucket/lifecycle/tier_last_day_stats.rs | 4 +- .../src/bucket/lifecycle/tier_sweeper.rs | 7 +-- crates/ecstore/src/bucket/metadata.rs | 8 +-- crates/ecstore/src/bucket/metadata_sys.rs | 10 ++- .../src/bucket/object_lock/objectlock.rs | 5 +- .../src/bucket/object_lock/objectlock_sys.rs | 11 ++-- .../ecstore/src/bucket/replication/config.rs | 2 +- .../bucket/replication/replication_pool.rs | 26 +++++--- .../replication/replication_resyncer.rs | 16 ++++- .../bucket/replication/replication_state.rs | 14 +++++ crates/ecstore/src/bucket/replication/rule.rs | 3 +- crates/ecstore/src/bucket/tagging/mod.rs | 3 +- crates/ecstore/src/bucket/target/arn.rs | 2 +- crates/ecstore/src/bucket/utils.rs | 5 +- crates/ecstore/src/bucket/versioning/mod.rs | 3 +- crates/ecstore/src/cache_value/mod.rs | 3 +- crates/ecstore/src/compress.rs | 3 +- crates/ecstore/src/data_usage.rs | 50 +++++++-------- .../ecstore/src/data_usage/local_snapshot.rs | 24 ++++++-- crates/ecstore/src/disk/endpoint.rs | 2 +- crates/ecstore/src/disk/error.rs | 1 - crates/ecstore/src/disk/error_conv.rs | 2 +- crates/ecstore/src/disk/error_reduce.rs | 2 +- crates/ecstore/src/disk/format.rs | 4 +- crates/ecstore/src/disk/fs.rs | 1 - crates/ecstore/src/disk/os.rs | 10 ++- crates/ecstore/src/endpoints.rs | 7 +-- crates/ecstore/src/erasure_coding/decode.rs | 12 ++-- crates/ecstore/src/erasure_coding/encode.rs | 4 +- crates/ecstore/src/erasure_coding/heal.rs | 6 +- crates/ecstore/src/erasure_coding/mod.rs | 3 +- crates/ecstore/src/error.rs | 6 +- crates/ecstore/src/event/targetlist.rs | 3 +- crates/ecstore/src/event_notification.rs | 7 +-- crates/ecstore/src/metrics_realtime.rs | 7 +-- crates/ecstore/src/rpc/client.rs | 6 +- crates/ecstore/src/rpc/peer_rest_client.rs | 2 +- crates/ecstore/src/rpc/remote_disk.rs | 61 +++++++++---------- crates/ecstore/src/rpc/remote_locker.rs | 7 ++- crates/ecstore/src/sets.rs | 9 +-- crates/ecstore/src/store_init.rs | 1 - rustfs/src/server/http.rs | 4 +- 46 files changed, 196 insertions(+), 195 deletions(-) diff --git a/crates/ecstore/src/bitrot.rs b/crates/ecstore/src/bitrot.rs index 8443b1ca..c02467a7 100644 --- a/crates/ecstore/src/bitrot.rs +++ b/crates/ecstore/src/bitrot.rs @@ -12,8 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use crate::disk::error::DiskError; -use crate::disk::{self, DiskAPI as _, DiskStore}; +use crate::disk::{self, DiskAPI as _, DiskStore, error::DiskError}; use crate::erasure_coding::{BitrotReader, BitrotWriterWrapper, CustomWriter}; use rustfs_utils::HashAlgorithm; use std::io::Cursor; diff --git a/crates/ecstore/src/bucket/bucket_target_sys.rs b/crates/ecstore/src/bucket/bucket_target_sys.rs index 5c83e4e3..595e3255 100644 --- a/crates/ecstore/src/bucket/bucket_target_sys.rs +++ b/crates/ecstore/src/bucket/bucket_target_sys.rs @@ -13,6 +13,14 @@ // limitations under the License. use crate::bucket::metadata::BucketMetadata; +use crate::bucket::metadata_sys::get_bucket_targets_config; +use crate::bucket::metadata_sys::get_replication_config; +use crate::bucket::replication::ObjectOpts; +use crate::bucket::replication::ReplicationConfigurationExt; +use crate::bucket::target::ARN; +use crate::bucket::target::BucketTargetType; +use crate::bucket::target::{self, BucketTarget, BucketTargets, Credentials}; +use crate::bucket::versioning_sys::BucketVersioningSys; use aws_credential_types::Credentials as SdkCredentials; use aws_sdk_s3::config::Region as SdkRegion; use aws_sdk_s3::error::SdkError; @@ -52,15 +60,6 @@ use tracing::warn; use url::Url; use uuid::Uuid; -use crate::bucket::metadata_sys::get_bucket_targets_config; -use crate::bucket::metadata_sys::get_replication_config; -use crate::bucket::replication::ObjectOpts; -use crate::bucket::replication::ReplicationConfigurationExt; -use crate::bucket::target::ARN; -use crate::bucket::target::BucketTargetType; -use crate::bucket::target::{self, BucketTarget, BucketTargets, Credentials}; -use crate::bucket::versioning_sys::BucketVersioningSys; - const DEFAULT_HEALTH_CHECK_DURATION: Duration = Duration::from_secs(5); const DEFAULT_HEALTH_CHECK_RELOAD_DURATION: Duration = Duration::from_secs(30 * 60); diff --git a/crates/ecstore/src/bucket/lifecycle/bucket_lifecycle_audit.rs b/crates/ecstore/src/bucket/lifecycle/bucket_lifecycle_audit.rs index 18945a08..d3420fc1 100644 --- a/crates/ecstore/src/bucket/lifecycle/bucket_lifecycle_audit.rs +++ b/crates/ecstore/src/bucket/lifecycle/bucket_lifecycle_audit.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::lifecycle; +use crate::bucket::lifecycle::lifecycle; #[derive(Debug, Clone, Default)] pub enum LcEventSrc { diff --git a/crates/ecstore/src/bucket/lifecycle/lifecycle.rs b/crates/ecstore/src/bucket/lifecycle/lifecycle.rs index a46620de..c1ffd8b2 100644 --- a/crates/ecstore/src/bucket/lifecycle/lifecycle.rs +++ b/crates/ecstore/src/bucket/lifecycle/lifecycle.rs @@ -18,6 +18,7 @@ #![allow(unused_must_use)] #![allow(clippy::all)] +use crate::bucket::lifecycle::rule::TransitionOps; use s3s::dto::{ BucketLifecycleConfiguration, ExpirationStatus, LifecycleExpiration, LifecycleRule, NoncurrentVersionTransition, ObjectLockConfiguration, ObjectLockEnabled, RestoreRequest, Transition, @@ -30,8 +31,6 @@ use time::macros::{datetime, offset}; use time::{self, Duration, OffsetDateTime}; use tracing::info; -use crate::bucket::lifecycle::rule::TransitionOps; - pub const TRANSITION_COMPLETE: &str = "complete"; pub const TRANSITION_PENDING: &str = "pending"; diff --git a/crates/ecstore/src/bucket/lifecycle/tier_last_day_stats.rs b/crates/ecstore/src/bucket/lifecycle/tier_last_day_stats.rs index 557d6189..e987f47b 100644 --- a/crates/ecstore/src/bucket/lifecycle/tier_last_day_stats.rs +++ b/crates/ecstore/src/bucket/lifecycle/tier_last_day_stats.rs @@ -18,15 +18,13 @@ #![allow(unused_must_use)] #![allow(clippy::all)] +use rustfs_common::data_usage::TierStats; use sha2::Sha256; - use std::collections::HashMap; use std::ops::Sub; use time::OffsetDateTime; use tracing::{error, warn}; -use rustfs_common::data_usage::TierStats; - pub type DailyAllTierStats = HashMap; #[derive(Clone)] diff --git a/crates/ecstore/src/bucket/lifecycle/tier_sweeper.rs b/crates/ecstore/src/bucket/lifecycle/tier_sweeper.rs index 26f94031..cf73f043 100644 --- a/crates/ecstore/src/bucket/lifecycle/tier_sweeper.rs +++ b/crates/ecstore/src/bucket/lifecycle/tier_sweeper.rs @@ -18,15 +18,14 @@ #![allow(unused_must_use)] #![allow(clippy::all)] +use crate::bucket::lifecycle::bucket_lifecycle_ops::{ExpiryOp, GLOBAL_ExpiryState, TransitionedObject}; +use crate::bucket::lifecycle::lifecycle::{self, ObjectOpts}; +use crate::global::GLOBAL_TierConfigMgr; use sha2::{Digest, Sha256}; use std::any::Any; use std::io::Write; use xxhash_rust::xxh64; -use super::bucket_lifecycle_ops::{ExpiryOp, GLOBAL_ExpiryState, TransitionedObject}; -use super::lifecycle::{self, ObjectOpts}; -use crate::global::GLOBAL_TierConfigMgr; - static XXHASH_SEED: u64 = 0; #[derive(Default)] diff --git a/crates/ecstore/src/bucket/metadata.rs b/crates/ecstore/src/bucket/metadata.rs index 5c75571e..d4a9ddac 100644 --- a/crates/ecstore/src/bucket/metadata.rs +++ b/crates/ecstore/src/bucket/metadata.rs @@ -12,14 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::{quota::BucketQuota, target::BucketTargets}; - use super::object_lock::ObjectLockApi; use super::versioning::VersioningApi; +use super::{quota::BucketQuota, target::BucketTargets}; use crate::bucket::utils::deserialize; use crate::config::com::{read_config, save_config}; +use crate::disk::BUCKET_META_PREFIX; use crate::error::{Error, Result}; use crate::new_object_layer_fn; +use crate::store::ECStore; use byteorder::{BigEndian, ByteOrder, LittleEndian}; use rmp_serde::Serializer as rmpSerializer; use rustfs_policy::policy::BucketPolicy; @@ -34,9 +35,6 @@ use std::sync::Arc; use time::OffsetDateTime; use tracing::error; -use crate::disk::BUCKET_META_PREFIX; -use crate::store::ECStore; - pub const BUCKET_METADATA_FILE: &str = ".metadata.bin"; pub const BUCKET_METADATA_FORMAT: u16 = 1; pub const BUCKET_METADATA_VERSION: u16 = 1; diff --git a/crates/ecstore/src/bucket/metadata_sys.rs b/crates/ecstore/src/bucket/metadata_sys.rs index 395a8b76..dad17b97 100644 --- a/crates/ecstore/src/bucket/metadata_sys.rs +++ b/crates/ecstore/src/bucket/metadata_sys.rs @@ -12,6 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. +use super::metadata::{BucketMetadata, load_bucket_metadata}; +use super::quota::BucketQuota; +use super::target::BucketTargets; use crate::StorageAPI as _; use crate::bucket::bucket_target_sys::BucketTargetSys; use crate::bucket::metadata::{BUCKET_LIFECYCLE_CONFIG, load_bucket_metadata_parse}; @@ -20,6 +23,7 @@ use crate::error::{Error, Result, is_err_bucket_not_found}; use crate::global::{GLOBAL_Endpoints, is_dist_erasure, is_erasure, new_object_layer_fn}; use crate::store::ECStore; use futures::future::join_all; +use lazy_static::lazy_static; use rustfs_common::heal_channel::HealOpts; use rustfs_policy::policy::BucketPolicy; use s3s::dto::ReplicationConfiguration; @@ -36,12 +40,6 @@ use tokio::sync::RwLock; use tokio::time::sleep; use tracing::error; -use super::metadata::{BucketMetadata, load_bucket_metadata}; -use super::quota::BucketQuota; -use super::target::BucketTargets; - -use lazy_static::lazy_static; - lazy_static! { pub static ref GLOBAL_BucketMetadataSys: OnceLock>> = OnceLock::new(); } diff --git a/crates/ecstore/src/bucket/object_lock/objectlock.rs b/crates/ecstore/src/bucket/object_lock/objectlock.rs index 4309739b..6452506f 100644 --- a/crates/ecstore/src/bucket/object_lock/objectlock.rs +++ b/crates/ecstore/src/bucket/object_lock/objectlock.rs @@ -12,11 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::collections::HashMap; -use time::{OffsetDateTime, format_description}; - use s3s::dto::{Date, ObjectLockLegalHold, ObjectLockLegalHoldStatus, ObjectLockRetention, ObjectLockRetentionMode}; use s3s::header::{X_AMZ_OBJECT_LOCK_LEGAL_HOLD, X_AMZ_OBJECT_LOCK_MODE, X_AMZ_OBJECT_LOCK_RETAIN_UNTIL_DATE}; +use std::collections::HashMap; +use time::{OffsetDateTime, format_description}; const _ERR_MALFORMED_BUCKET_OBJECT_CONFIG: &str = "invalid bucket object lock config"; const _ERR_INVALID_RETENTION_DATE: &str = "date must be provided in ISO 8601 format"; diff --git a/crates/ecstore/src/bucket/object_lock/objectlock_sys.rs b/crates/ecstore/src/bucket/object_lock/objectlock_sys.rs index fb71339a..92e2e84d 100644 --- a/crates/ecstore/src/bucket/object_lock/objectlock_sys.rs +++ b/crates/ecstore/src/bucket/object_lock/objectlock_sys.rs @@ -12,16 +12,13 @@ // See the License for the specific language governing permissions and // limitations under the License. +use crate::bucket::metadata_sys::get_object_lock_config; +use crate::bucket::object_lock::objectlock; +use crate::store_api::ObjectInfo; +use s3s::dto::{DefaultRetention, ObjectLockLegalHoldStatus, ObjectLockRetentionMode}; use std::sync::Arc; use time::OffsetDateTime; -use s3s::dto::{DefaultRetention, ObjectLockLegalHoldStatus, ObjectLockRetentionMode}; - -use crate::bucket::metadata_sys::get_object_lock_config; -use crate::store_api::ObjectInfo; - -use super::objectlock; - pub struct BucketObjectLockSys {} impl BucketObjectLockSys { diff --git a/crates/ecstore/src/bucket/replication/config.rs b/crates/ecstore/src/bucket/replication/config.rs index 422b76be..ed137698 100644 --- a/crates/ecstore/src/bucket/replication/config.rs +++ b/crates/ecstore/src/bucket/replication/config.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::ReplicationRuleExt as _; +use crate::bucket::replication::ReplicationRuleExt as _; use crate::bucket::tagging::decode_tags_to_map; use rustfs_filemeta::ReplicationType; use s3s::dto::DeleteMarkerReplicationStatus; diff --git a/crates/ecstore/src/bucket/replication/replication_pool.rs b/crates/ecstore/src/bucket/replication/replication_pool.rs index 181096e6..04e5a5bd 100644 --- a/crates/ecstore/src/bucket/replication/replication_pool.rs +++ b/crates/ecstore/src/bucket/replication/replication_pool.rs @@ -1,22 +1,30 @@ +// Copyright 2024 RustFS Team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + use crate::StorageAPI; use crate::bucket::replication::ResyncOpts; use crate::bucket::replication::ResyncStatusType; use crate::bucket::replication::replicate_delete; use crate::bucket::replication::replicate_object; -use crate::disk::BUCKET_META_PREFIX; -use std::any::Any; -use std::sync::Arc; -use std::sync::atomic::AtomicI32; -use std::sync::atomic::Ordering; - use crate::bucket::replication::replication_resyncer::{ BucketReplicationResyncStatus, DeletedObjectReplicationInfo, ReplicationResyncer, }; use crate::bucket::replication::replication_state::ReplicationStats; use crate::config::com::read_config; +use crate::disk::BUCKET_META_PREFIX; use crate::error::Error as EcstoreError; use crate::store_api::ObjectInfo; - use lazy_static::lazy_static; use rustfs_filemeta::MrfReplicateEntry; use rustfs_filemeta::ReplicateDecision; @@ -29,6 +37,10 @@ use rustfs_filemeta::ResyncDecision; use rustfs_filemeta::replication_statuses_map; use rustfs_filemeta::version_purge_statuses_map; use rustfs_utils::http::RESERVED_METADATA_PREFIX_LOWER; +use std::any::Any; +use std::sync::Arc; +use std::sync::atomic::AtomicI32; +use std::sync::atomic::Ordering; use time::OffsetDateTime; use time::format_description::well_known::Rfc3339; use tokio::sync::Mutex; diff --git a/crates/ecstore/src/bucket/replication/replication_resyncer.rs b/crates/ecstore/src/bucket/replication/replication_resyncer.rs index 39f1cf56..117ec77c 100644 --- a/crates/ecstore/src/bucket/replication/replication_resyncer.rs +++ b/crates/ecstore/src/bucket/replication/replication_resyncer.rs @@ -1,3 +1,17 @@ +// Copyright 2024 RustFS Team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + use crate::bucket::bucket_target_sys::{ AdvancedPutOptions, BucketTargetSys, PutObjectOptions, PutObjectPartOptions, RemoveObjectOptions, TargetClient, }; @@ -16,7 +30,6 @@ use crate::event_notification::{EventArgs, send_event}; use crate::global::GLOBAL_LocalNodeName; use crate::store_api::{DeletedObject, ObjectInfo, ObjectOptions, ObjectToDelete, WalkOptions}; use crate::{StorageAPI, new_object_layer_fn}; - use aws_sdk_s3::error::SdkError; use aws_sdk_s3::operation::head_object::HeadObjectOutput; use aws_sdk_s3::primitives::ByteStream; @@ -24,7 +37,6 @@ use aws_sdk_s3::types::{CompletedPart, ObjectLockLegalHoldStatus}; use byteorder::ByteOrder; use futures::future::join_all; use http::HeaderMap; - use regex::Regex; use rustfs_filemeta::{ MrfReplicateEntry, REPLICATE_EXISTING, REPLICATE_EXISTING_DELETE, REPLICATION_RESET, ReplicateDecision, ReplicateObjectInfo, diff --git a/crates/ecstore/src/bucket/replication/replication_state.rs b/crates/ecstore/src/bucket/replication/replication_state.rs index 1b887141..28971c7b 100644 --- a/crates/ecstore/src/bucket/replication/replication_state.rs +++ b/crates/ecstore/src/bucket/replication/replication_state.rs @@ -1,3 +1,17 @@ +// Copyright 2024 RustFS Team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + use crate::error::Error; use rustfs_filemeta::{ReplicatedTargetInfo, ReplicationStatusType, ReplicationType}; use serde::{Deserialize, Serialize}; diff --git a/crates/ecstore/src/bucket/replication/rule.rs b/crates/ecstore/src/bucket/replication/rule.rs index 136c5480..b8df680e 100644 --- a/crates/ecstore/src/bucket/replication/rule.rs +++ b/crates/ecstore/src/bucket/replication/rule.rs @@ -12,11 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +use crate::bucket::replication::ObjectOpts; use s3s::dto::ReplicaModificationsStatus; use s3s::dto::ReplicationRule; -use super::ObjectOpts; - pub trait ReplicationRuleExt { fn prefix(&self) -> &str; fn metadata_replicate(&self, obj: &ObjectOpts) -> bool; diff --git a/crates/ecstore/src/bucket/tagging/mod.rs b/crates/ecstore/src/bucket/tagging/mod.rs index 62e428a4..9c5f16be 100644 --- a/crates/ecstore/src/bucket/tagging/mod.rs +++ b/crates/ecstore/src/bucket/tagging/mod.rs @@ -12,9 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::collections::HashMap; - use s3s::dto::Tag; +use std::collections::HashMap; use url::form_urlencoded; pub fn decode_tags(tags: &str) -> Vec { diff --git a/crates/ecstore/src/bucket/target/arn.rs b/crates/ecstore/src/bucket/target/arn.rs index a9104077..543b75d0 100644 --- a/crates/ecstore/src/bucket/target/arn.rs +++ b/crates/ecstore/src/bucket/target/arn.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::BucketTargetType; +use crate::bucket::target::BucketTargetType; use std::fmt::Display; use std::str::FromStr; diff --git a/crates/ecstore/src/bucket/utils.rs b/crates/ecstore/src/bucket/utils.rs index 8eb60ccb..ee7012a3 100644 --- a/crates/ecstore/src/bucket/utils.rs +++ b/crates/ecstore/src/bucket/utils.rs @@ -14,16 +14,15 @@ use crate::disk::RUSTFS_META_BUCKET; use crate::error::{Error, Result, StorageError}; +use regex::Regex; use rustfs_utils::path::SLASH_SEPARATOR_STR; use s3s::xml; +use tracing::instrument; pub fn is_meta_bucketname(name: &str) -> bool { name.starts_with(RUSTFS_META_BUCKET) } -use regex::Regex; -use tracing::instrument; - lazy_static::lazy_static! { static ref VALID_BUCKET_NAME: Regex = Regex::new(r"^[A-Za-z0-9][A-Za-z0-9\.\-\_\:]{1,61}[A-Za-z0-9]$").unwrap(); static ref VALID_BUCKET_NAME_STRICT: Regex = Regex::new(r"^[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]$").unwrap(); diff --git a/crates/ecstore/src/bucket/versioning/mod.rs b/crates/ecstore/src/bucket/versioning/mod.rs index 2750ee77..05f5b22e 100644 --- a/crates/ecstore/src/bucket/versioning/mod.rs +++ b/crates/ecstore/src/bucket/versioning/mod.rs @@ -12,9 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -use s3s::dto::{BucketVersioningStatus, VersioningConfiguration}; - use rustfs_utils::string::match_simple; +use s3s::dto::{BucketVersioningStatus, VersioningConfiguration}; pub trait VersioningApi { fn enabled(&self) -> bool; diff --git a/crates/ecstore/src/cache_value/mod.rs b/crates/ecstore/src/cache_value/mod.rs index 9dfbb3b8..b268fc04 100644 --- a/crates/ecstore/src/cache_value/mod.rs +++ b/crates/ecstore/src/cache_value/mod.rs @@ -12,9 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::sync::Arc; - use lazy_static::lazy_static; +use std::sync::Arc; use tokio_util::sync::CancellationToken; pub mod metacache_set; diff --git a/crates/ecstore/src/compress.rs b/crates/ecstore/src/compress.rs index aaa43154..29e0baa6 100644 --- a/crates/ecstore/src/compress.rs +++ b/crates/ecstore/src/compress.rs @@ -12,8 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use rustfs_utils::string::has_pattern; -use rustfs_utils::string::has_string_suffix_in_slice; +use rustfs_utils::string::{has_pattern, has_string_suffix_in_slice}; use std::env; use tracing::error; diff --git a/crates/ecstore/src/data_usage.rs b/crates/ecstore/src/data_usage.rs index bd434855..e38188a2 100644 --- a/crates/ecstore/src/data_usage.rs +++ b/crates/ecstore/src/data_usage.rs @@ -12,33 +12,29 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::{ - collections::{HashMap, hash_map::Entry}, - sync::Arc, - time::{Duration, SystemTime}, -}; -use tokio::sync::RwLock; -use tracing::debug; - pub mod local_snapshot; + +use crate::{ + bucket::metadata_sys::get_replication_config, config::com::read_config, disk::DiskAPI, error::Error, store::ECStore, + store_api::StorageAPI, +}; pub use local_snapshot::{ DATA_USAGE_DIR, DATA_USAGE_STATE_DIR, LOCAL_USAGE_SNAPSHOT_VERSION, LocalUsageSnapshot, LocalUsageSnapshotMeta, data_usage_dir, data_usage_state_dir, ensure_data_usage_layout, read_snapshot as read_local_snapshot, snapshot_file_name, snapshot_object_path, snapshot_path, write_snapshot as write_local_snapshot, }; - -use crate::{ - bucket::metadata_sys::get_replication_config, config::com::read_config, disk::DiskAPI, store::ECStore, store_api::StorageAPI, -}; use rustfs_common::data_usage::{ BucketTargetUsageInfo, BucketUsageInfo, DataUsageCache, DataUsageEntry, DataUsageInfo, DiskUsageStatus, SizeSummary, }; use rustfs_utils::path::SLASH_SEPARATOR_STR; -use std::sync::OnceLock; +use std::{ + collections::{HashMap, hash_map::Entry}, + sync::{Arc, OnceLock}, + time::{Duration, SystemTime}, +}; use tokio::fs; -use tracing::{error, info, warn}; - -use crate::error::Error; +use tokio::sync::RwLock; +use tracing::{debug, error, info, warn}; // Data usage storage constants pub const DATA_USAGE_ROOT: &str = SLASH_SEPARATOR_STR; @@ -112,8 +108,8 @@ pub async fn load_data_usage_from_backend(store: Arc) -> Result data, Err(e) => { error!("Failed to read data usage info from backend: {}", e); - if e == crate::error::Error::ConfigNotFound { - warn!("Data usage config not found, building basic statistics"); + if e == Error::ConfigNotFound { + info!("Data usage config not found, building basic statistics"); return build_basic_data_usage_info(store).await; } return Err(Error::other(e)); @@ -146,7 +142,7 @@ pub async fn load_data_usage_from_backend(store: Arc) -> Result) -> Result<(Vec) -> Result<(Vec, bucket_name: &str) -> Res continuation = result.next_continuation_token.clone(); if continuation.is_none() { - warn!( + info!( "Bucket {} listing marked truncated but no continuation token returned; stopping early", bucket_name ); @@ -567,7 +563,7 @@ pub fn cache_to_data_usage_info(cache: &DataUsageCache, path: &str, buckets: &[c None => continue, }; let flat = cache.flatten(&e); - let mut bui = rustfs_common::data_usage::BucketUsageInfo { + let mut bui = BucketUsageInfo { size: flat.size as u64, versions_count: flat.versions as u64, objects_count: flat.objects as u64, @@ -645,7 +641,7 @@ pub async fn load_data_usage_cache(store: &crate::set_disk::SetDisks, name: &str break; } Err(err) => match err { - crate::error::Error::FileNotFound | crate::error::Error::VolumeNotFound => { + Error::FileNotFound | Error::VolumeNotFound => { match store .get_object_reader( RUSTFS_META_BUCKET, @@ -666,7 +662,7 @@ pub async fn load_data_usage_cache(store: &crate::set_disk::SetDisks, name: &str break; } Err(_) => match err { - crate::error::Error::FileNotFound | crate::error::Error::VolumeNotFound => { + Error::FileNotFound | Error::VolumeNotFound => { break; } _ => {} @@ -695,9 +691,9 @@ pub async fn save_data_usage_cache(cache: &DataUsageCache, name: &str) -> crate: use std::path::Path; let Some(store) = new_object_layer_fn() else { - return Err(crate::error::Error::other("errServerNotInitialized")); + return Err(Error::other("errServerNotInitialized")); }; - let buf = cache.marshal_msg().map_err(crate::error::Error::other)?; + let buf = cache.marshal_msg().map_err(Error::other)?; let buf_clone = buf.clone(); let store_clone = store.clone(); diff --git a/crates/ecstore/src/data_usage/local_snapshot.rs b/crates/ecstore/src/data_usage/local_snapshot.rs index fa232f73..0ed2b6e1 100644 --- a/crates/ecstore/src/data_usage/local_snapshot.rs +++ b/crates/ecstore/src/data_usage/local_snapshot.rs @@ -1,13 +1,25 @@ -use std::collections::HashMap; -use std::path::{Path, PathBuf}; -use std::time::SystemTime; - -use serde::{Deserialize, Serialize}; -use tokio::fs; +// Copyright 2024 RustFS Team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. use crate::data_usage::BucketUsageInfo; use crate::disk::RUSTFS_META_BUCKET; use crate::error::{Error, Result}; +use serde::{Deserialize, Serialize}; +use std::collections::HashMap; +use std::path::{Path, PathBuf}; +use std::time::SystemTime; +use tokio::fs; /// Directory used to store per-disk usage snapshots under the metadata bucket. pub const DATA_USAGE_DIR: &str = "datausage"; diff --git a/crates/ecstore/src/disk/endpoint.rs b/crates/ecstore/src/disk/endpoint.rs index 952cda94..5339d964 100644 --- a/crates/ecstore/src/disk/endpoint.rs +++ b/crates/ecstore/src/disk/endpoint.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::error::{Error, Result}; +use crate::disk::error::{Error, Result}; use path_absolutize::Absolutize; use rustfs_utils::{is_local_host, is_socket_addr}; use std::{fmt::Display, path::Path}; diff --git a/crates/ecstore/src/disk/error.rs b/crates/ecstore/src/disk/error.rs index ebe9df4f..669b286b 100644 --- a/crates/ecstore/src/disk/error.rs +++ b/crates/ecstore/src/disk/error.rs @@ -12,7 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -// use crate::quorum::CheckErrorFn; use std::hash::{Hash, Hasher}; use std::io::{self}; use std::path::PathBuf; diff --git a/crates/ecstore/src/disk/error_conv.rs b/crates/ecstore/src/disk/error_conv.rs index ed8487a9..0ee28878 100644 --- a/crates/ecstore/src/disk/error_conv.rs +++ b/crates/ecstore/src/disk/error_conv.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::error::DiskError; +use crate::disk::error::DiskError; pub fn to_file_error(io_err: std::io::Error) -> std::io::Error { match io_err.kind() { diff --git a/crates/ecstore/src/disk/error_reduce.rs b/crates/ecstore/src/disk/error_reduce.rs index d3264334..0ad53f48 100644 --- a/crates/ecstore/src/disk/error_reduce.rs +++ b/crates/ecstore/src/disk/error_reduce.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::error::Error; +use crate::disk::error::Error; pub static OBJECT_OP_IGNORED_ERRS: &[Error] = &[ Error::DiskNotFound, diff --git a/crates/ecstore/src/disk/format.rs b/crates/ecstore/src/disk/format.rs index aca63c7d..592f6f93 100644 --- a/crates/ecstore/src/disk/format.rs +++ b/crates/ecstore/src/disk/format.rs @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::error::{Error, Result}; -use super::{DiskInfo, error::DiskError}; +use crate::disk::error::{Error, Result}; +use crate::disk::{DiskInfo, error::DiskError}; use serde::{Deserialize, Serialize}; use serde_json::Error as JsonError; use uuid::Uuid; diff --git a/crates/ecstore/src/disk/fs.rs b/crates/ecstore/src/disk/fs.rs index df22eb7d..d2299d45 100644 --- a/crates/ecstore/src/disk/fs.rs +++ b/crates/ecstore/src/disk/fs.rs @@ -17,7 +17,6 @@ use std::{ path::Path, sync::{Arc, OnceLock}, }; - use tokio::{ fs::{self, File}, io, diff --git a/crates/ecstore/src/disk/os.rs b/crates/ecstore/src/disk/os.rs index 660deec5..92677957 100644 --- a/crates/ecstore/src/disk/os.rs +++ b/crates/ecstore/src/disk/os.rs @@ -12,19 +12,17 @@ // See the License for the specific language governing permissions and // limitations under the License. +use crate::disk::error::DiskError; +use crate::disk::error::Result; +use crate::disk::error_conv::to_file_error; +use rustfs_utils::path::SLASH_SEPARATOR_STR; use std::{ io, path::{Component, Path}, }; - -use super::error::Result; -use crate::disk::error_conv::to_file_error; -use rustfs_utils::path::SLASH_SEPARATOR_STR; use tokio::fs; use tracing::warn; -use super::error::DiskError; - /// Check path length according to OS limits. pub fn check_path_length(path_name: &str) -> Result<()> { // Apple OS X path length is limited to 1016 diff --git a/crates/ecstore/src/endpoints.rs b/crates/ecstore/src/endpoints.rs index 1a334c07..ff8427d1 100644 --- a/crates/ecstore/src/endpoints.rs +++ b/crates/ecstore/src/endpoints.rs @@ -12,19 +12,18 @@ // See the License for the specific language governing permissions and // limitations under the License. -use rustfs_utils::{XHost, check_local_server_addr, get_host_ip, is_local_host}; -use tracing::{error, info, instrument, warn}; - use crate::{ disk::endpoint::{Endpoint, EndpointType}, disks_layout::DisksLayout, global::global_rustfs_port, }; -use std::io::{Error, Result}; +use rustfs_utils::{XHost, check_local_server_addr, get_host_ip, is_local_host}; use std::{ collections::{HashMap, HashSet, hash_map::Entry}, + io::{Error, Result}, net::IpAddr, }; +use tracing::{error, info, instrument, warn}; /// enum for setup type. #[derive(PartialEq, Eq, Debug, Clone)] diff --git a/crates/ecstore/src/erasure_coding/decode.rs b/crates/ecstore/src/erasure_coding/decode.rs index c2a1daac..9e0925d8 100644 --- a/crates/ecstore/src/erasure_coding/decode.rs +++ b/crates/ecstore/src/erasure_coding/decode.rs @@ -12,10 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::BitrotReader; -use super::Erasure; use crate::disk::error::Error; use crate::disk::error_reduce::reduce_errs; +use crate::erasure_coding::{BitrotReader, Erasure}; use futures::stream::{FuturesUnordered, StreamExt}; use pin_project_lite::pin_project; use std::io; @@ -312,11 +311,12 @@ impl Erasure { #[cfg(test)] mod tests { - use rustfs_utils::HashAlgorithm; - - use crate::{disk::error::DiskError, erasure_coding::BitrotWriter}; - use super::*; + use crate::{ + disk::error::DiskError, + erasure_coding::{BitrotReader, BitrotWriter}, + }; + use rustfs_utils::HashAlgorithm; use std::io::Cursor; #[tokio::test] diff --git a/crates/ecstore/src/erasure_coding/encode.rs b/crates/ecstore/src/erasure_coding/encode.rs index 1b082550..cb7bd7ed 100644 --- a/crates/ecstore/src/erasure_coding/encode.rs +++ b/crates/ecstore/src/erasure_coding/encode.rs @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::BitrotWriterWrapper; -use super::Erasure; use crate::disk::error::Error; use crate::disk::error_reduce::count_errs; use crate::disk::error_reduce::{OBJECT_OP_IGNORED_ERRS, reduce_write_quorum_errs}; +use crate::erasure_coding::BitrotWriterWrapper; +use crate::erasure_coding::Erasure; use bytes::Bytes; use futures::StreamExt; use futures::stream::FuturesUnordered; diff --git a/crates/ecstore/src/erasure_coding/heal.rs b/crates/ecstore/src/erasure_coding/heal.rs index e654a678..422ae7da 100644 --- a/crates/ecstore/src/erasure_coding/heal.rs +++ b/crates/ecstore/src/erasure_coding/heal.rs @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -use super::BitrotReader; -use super::BitrotWriterWrapper; -use super::decode::ParallelReader; use crate::disk::error::{Error, Result}; +use crate::erasure_coding::BitrotReader; +use crate::erasure_coding::BitrotWriterWrapper; +use crate::erasure_coding::decode::ParallelReader; use crate::erasure_coding::encode::MultiWriter; use bytes::Bytes; use tokio::io::AsyncRead; diff --git a/crates/ecstore/src/erasure_coding/mod.rs b/crates/ecstore/src/erasure_coding/mod.rs index 947bf4da..766562a9 100644 --- a/crates/ecstore/src/erasure_coding/mod.rs +++ b/crates/ecstore/src/erasure_coding/mod.rs @@ -12,12 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. +mod bitrot; pub mod decode; pub mod encode; pub mod erasure; pub mod heal; - -mod bitrot; pub use bitrot::*; pub use erasure::{Erasure, ReedSolomonEncoder, calc_shard_size}; diff --git a/crates/ecstore/src/error.rs b/crates/ecstore/src/error.rs index 410faa72..dc747c36 100644 --- a/crates/ecstore/src/error.rs +++ b/crates/ecstore/src/error.rs @@ -12,12 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -use s3s::{S3Error, S3ErrorCode}; - -use rustfs_utils::path::decode_dir_object; - use crate::bucket::error::BucketMetadataError; use crate::disk::error::DiskError; +use rustfs_utils::path::decode_dir_object; +use s3s::{S3Error, S3ErrorCode}; pub type Error = StorageError; pub type Result = core::result::Result; diff --git a/crates/ecstore/src/event/targetlist.rs b/crates/ecstore/src/event/targetlist.rs index f45b2cbc..29927b06 100644 --- a/crates/ecstore/src/event/targetlist.rs +++ b/crates/ecstore/src/event/targetlist.rs @@ -12,10 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. +use crate::event::targetid::TargetID; use std::sync::atomic::AtomicI64; -use super::targetid::TargetID; - #[derive(Default)] pub struct TargetList { pub current_send_calls: AtomicI64, diff --git a/crates/ecstore/src/event_notification.rs b/crates/ecstore/src/event_notification.rs index 3d909542..fdbc007d 100644 --- a/crates/ecstore/src/event_notification.rs +++ b/crates/ecstore/src/event_notification.rs @@ -14,15 +14,14 @@ // limitations under the License. #![allow(unused_variables)] -use std::collections::HashMap; -use std::sync::Arc; -use tokio::sync::RwLock; - use crate::bucket::metadata::BucketMetadata; use crate::event::name::EventName; use crate::event::targetlist::TargetList; use crate::store::ECStore; use crate::store_api::ObjectInfo; +use std::collections::HashMap; +use std::sync::Arc; +use tokio::sync::RwLock; pub struct EventNotifier { target_list: TargetList, diff --git a/crates/ecstore/src/metrics_realtime.rs b/crates/ecstore/src/metrics_realtime.rs index 3e7af4b3..8f1b159d 100644 --- a/crates/ecstore/src/metrics_realtime.rs +++ b/crates/ecstore/src/metrics_realtime.rs @@ -12,12 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use crate::{ - admin_server_info::get_local_server_property, - new_object_layer_fn, - store_api::StorageAPI, - // utils::os::get_drive_stats, -}; +use crate::{admin_server_info::get_local_server_property, new_object_layer_fn, store_api::StorageAPI}; use chrono::Utc; use rustfs_common::{GLOBAL_LOCAL_NODE_NAME, GLOBAL_RUSTFS_ADDR, heal_channel::DriveState, metrics::global_metrics}; use rustfs_madmin::metrics::{DiskIOStats, DiskMetric, RealtimeMetrics}; diff --git a/crates/ecstore/src/rpc/client.rs b/crates/ecstore/src/rpc/client.rs index fe966d86..a9830ef8 100644 --- a/crates/ecstore/src/rpc/client.rs +++ b/crates/ecstore/src/rpc/client.rs @@ -12,16 +12,14 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::error::Error; - +use crate::rpc::{TONIC_RPC_PREFIX, gen_signature_headers}; use http::Method; use rustfs_common::GLOBAL_CONN_MAP; use rustfs_protos::{create_new_channel, proto_gen::node_service::node_service_client::NodeServiceClient}; +use std::error::Error; use tonic::{service::interceptor::InterceptedService, transport::Channel}; use tracing::debug; -use crate::rpc::{TONIC_RPC_PREFIX, gen_signature_headers}; - /// 3. Subsequent calls will attempt fresh connections /// 4. If node is still down, connection will fail fast (3s timeout) pub async fn node_service_time_out_client( diff --git a/crates/ecstore/src/rpc/peer_rest_client.rs b/crates/ecstore/src/rpc/peer_rest_client.rs index fc6d5374..78d50b5e 100644 --- a/crates/ecstore/src/rpc/peer_rest_client.rs +++ b/crates/ecstore/src/rpc/peer_rest_client.rs @@ -27,7 +27,6 @@ use rustfs_madmin::{ net::NetInfo, }; use rustfs_protos::evict_failed_connection; -use rustfs_protos::proto_gen::node_service::node_service_client::NodeServiceClient; use rustfs_protos::proto_gen::node_service::{ DeleteBucketMetadataRequest, DeletePolicyRequest, DeleteServiceAccountRequest, DeleteUserRequest, GetCpusRequest, GetMemInfoRequest, GetMetricsRequest, GetNetInfoRequest, GetOsInfoRequest, GetPartitionsRequest, GetProcInfoRequest, @@ -35,6 +34,7 @@ use rustfs_protos::proto_gen::node_service::{ LoadPolicyMappingRequest, LoadPolicyRequest, LoadRebalanceMetaRequest, LoadServiceAccountRequest, LoadTransitionTierConfigRequest, LoadUserRequest, LocalStorageInfoRequest, Mss, ReloadPoolMetaRequest, ReloadSiteReplicationConfigRequest, ServerInfoRequest, SignalServiceRequest, StartProfilingRequest, StopRebalanceRequest, + node_service_client::NodeServiceClient, }; use rustfs_utils::XHost; use serde::{Deserialize, Serialize as _}; diff --git a/crates/ecstore/src/rpc/remote_disk.rs b/crates/ecstore/src/rpc/remote_disk.rs index f4f03468..5c40866c 100644 --- a/crates/ecstore/src/rpc/remote_disk.rs +++ b/crates/ecstore/src/rpc/remote_disk.rs @@ -12,15 +12,29 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::{ - path::PathBuf, - sync::{Arc, atomic::Ordering}, - time::Duration, +use crate::{ + disk::{ + CheckPartsResp, DeleteOptions, DiskAPI, DiskInfo, DiskInfoOptions, DiskLocation, DiskOption, FileInfoVersions, + FileReader, FileWriter, ReadMultipleReq, ReadMultipleResp, ReadOptions, RenameDataResp, UpdateMetadataOpts, VolumeInfo, + WalkDirOptions, + disk_store::{ + CHECK_EVERY, CHECK_TIMEOUT_DURATION, ENV_RUSTFS_DRIVE_ACTIVE_MONITORING, SKIP_IF_SUCCESS_BEFORE, + get_max_timeout_duration, + }, + endpoint::Endpoint, + { + disk_store::DiskHealthTracker, + error::{DiskError, Error, Result}, + }, + }, + rpc::build_auth_headers, + rpc::client::{TonicInterceptor, gen_tonic_signature_interceptor, node_service_time_out_client}, }; - use bytes::Bytes; use futures::lock::Mutex; use http::{HeaderMap, HeaderValue, Method, header::CONTENT_TYPE}; +use rustfs_filemeta::{FileInfo, ObjectPartInfo, RawFileInfo}; +use rustfs_protos::proto_gen::node_service::RenamePartRequest; use rustfs_protos::proto_gen::node_service::{ CheckPartsRequest, DeletePathsRequest, DeleteRequest, DeleteVersionRequest, DeleteVersionsRequest, DeleteVolumeRequest, DiskInfoRequest, ListDirRequest, ListVolumesRequest, MakeVolumeRequest, MakeVolumesRequest, ReadAllRequest, @@ -28,37 +42,18 @@ use rustfs_protos::proto_gen::node_service::{ StatVolumeRequest, UpdateMetadataRequest, VerifyFileRequest, WriteAllRequest, WriteMetadataRequest, node_service_client::NodeServiceClient, }; -use rustfs_utils::string::parse_bool_with_default; -use tokio::time; -use tokio_util::sync::CancellationToken; -use tracing::{debug, info, warn}; - -use crate::disk::{disk_store::DiskHealthTracker, error::DiskError}; -use crate::{ - disk::error::{Error, Result}, - rpc::build_auth_headers, -}; -use crate::{ - disk::{ - CheckPartsResp, DeleteOptions, DiskAPI, DiskInfo, DiskInfoOptions, DiskLocation, DiskOption, FileInfoVersions, - ReadMultipleReq, ReadMultipleResp, ReadOptions, RenameDataResp, UpdateMetadataOpts, VolumeInfo, WalkDirOptions, - disk_store::{ - CHECK_EVERY, CHECK_TIMEOUT_DURATION, ENV_RUSTFS_DRIVE_ACTIVE_MONITORING, SKIP_IF_SUCCESS_BEFORE, - get_max_timeout_duration, - }, - endpoint::Endpoint, - }, - rpc::client::gen_tonic_signature_interceptor, -}; -use crate::{ - disk::{FileReader, FileWriter}, - rpc::client::{TonicInterceptor, node_service_time_out_client}, -}; -use rustfs_filemeta::{FileInfo, ObjectPartInfo, RawFileInfo}; -use rustfs_protos::proto_gen::node_service::RenamePartRequest; use rustfs_rio::{HttpReader, HttpWriter}; +use rustfs_utils::string::parse_bool_with_default; +use std::{ + path::PathBuf, + sync::{Arc, atomic::Ordering}, + time::Duration, +}; +use tokio::time; use tokio::{io::AsyncWrite, net::TcpStream, time::timeout}; +use tokio_util::sync::CancellationToken; use tonic::{Request, service::interceptor::InterceptedService, transport::Channel}; +use tracing::{debug, info, warn}; use uuid::Uuid; #[derive(Debug)] diff --git a/crates/ecstore/src/rpc/remote_locker.rs b/crates/ecstore/src/rpc/remote_locker.rs index ea202de3..f7410a0d 100644 --- a/crates/ecstore/src/rpc/remote_locker.rs +++ b/crates/ecstore/src/rpc/remote_locker.rs @@ -14,9 +14,10 @@ use crate::rpc::client::{TonicInterceptor, gen_tonic_signature_interceptor, node_service_time_out_client}; use async_trait::async_trait; -use rustfs_lock::types::{LockId, LockMetadata, LockPriority}; -use rustfs_lock::{LockClient, LockError, LockInfo, LockResponse, LockStats, LockStatus, Result}; -use rustfs_lock::{LockRequest, LockType}; +use rustfs_lock::{ + LockClient, LockError, LockInfo, LockRequest, LockResponse, LockStats, LockStatus, LockType, Result, + types::{LockId, LockMetadata, LockPriority}, +}; use rustfs_protos::proto_gen::node_service::node_service_client::NodeServiceClient; use rustfs_protos::proto_gen::node_service::{GenerallyLockRequest, PingRequest}; use std::collections::HashMap; diff --git a/crates/ecstore/src/sets.rs b/crates/ecstore/src/sets.rs index a2d3769a..8e0c364f 100644 --- a/crates/ecstore/src/sets.rs +++ b/crates/ecstore/src/sets.rs @@ -13,8 +13,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -use std::{collections::HashMap, sync::Arc}; - use crate::disk::error_reduce::count_errs; use crate::error::{Error, Result}; use crate::store_api::{ListPartsInfo, ObjectInfoOrErr, WalkOptions}; @@ -44,17 +42,16 @@ use rustfs_common::{ heal_channel::{DriveState, HealItemType}, }; use rustfs_filemeta::FileInfo; - use rustfs_madmin::heal_commands::{HealDriveInfo, HealResultItem}; use rustfs_utils::{crc_hash, path::path_join_buf, sip_hash}; +use std::{collections::HashMap, sync::Arc}; use tokio::sync::RwLock; -use tokio_util::sync::CancellationToken; -use uuid::Uuid; - use tokio::sync::broadcast::{Receiver, Sender}; use tokio::time::Duration; +use tokio_util::sync::CancellationToken; use tracing::warn; use tracing::{error, info}; +use uuid::Uuid; #[derive(Debug, Clone)] pub struct Sets { diff --git a/crates/ecstore/src/store_init.rs b/crates/ecstore/src/store_init.rs index 437b5218..31ea864e 100644 --- a/crates/ecstore/src/store_init.rs +++ b/crates/ecstore/src/store_init.rs @@ -27,7 +27,6 @@ use crate::{ }; use futures::future::join_all; use std::collections::{HashMap, hash_map::Entry}; - use tracing::{info, warn}; use uuid::Uuid; diff --git a/rustfs/src/server/http.rs b/rustfs/src/server/http.rs index 314494fe..f9a524eb 100644 --- a/rustfs/src/server/http.rs +++ b/rustfs/src/server/http.rs @@ -559,7 +559,7 @@ fn process_connection( let remote_addr = match socket.peer_addr() { Ok(addr) => Some(RemoteAddr(addr)), Err(e) => { - tracing::warn!( + warn!( error = %e, "Failed to obtain peer address; policy evaluation may fall back to a default source IP" ); @@ -762,7 +762,7 @@ fn get_listen_backlog() -> i32 { #[cfg(any(target_os = "netbsd", target_os = "macos", target_os = "freebsd"))] let mut name = [libc::CTL_KERN, libc::KERN_IPC, libc::KIPC_SOMAXCONN]; let mut buf = [0; 1]; - let mut buf_len = std::mem::size_of_val(&buf); + let mut buf_len = size_of_val(&buf); if unsafe { libc::sysctl( From 27480f76252df251d1a12df64fd24342347dccf7 Mon Sep 17 00:00:00 2001 From: houseme Date: Wed, 14 Jan 2026 14:18:02 +0800 Subject: [PATCH 08/22] Refactor Event Admin Handlers and Parallelize Target Status Probes (#1501) --- crates/notify/src/integration.rs | 17 ++ crates/notify/src/notifier.rs | 5 + rustfs/src/admin/handlers/event.rs | 386 +++++++++++------------------ 3 files changed, 165 insertions(+), 243 deletions(-) diff --git a/crates/notify/src/integration.rs b/crates/notify/src/integration.rs index ddce7560..43da7649 100644 --- a/crates/notify/src/integration.rs +++ b/crates/notify/src/integration.rs @@ -13,6 +13,7 @@ // limitations under the License. use crate::notification_system_subscriber::NotificationSystemSubscriberView; +use crate::notifier::TargetList; use crate::{ Event, error::NotificationError, notifier::EventNotifier, registry::TargetRegistry, rules::BucketNotificationConfig, stream, }; @@ -191,6 +192,22 @@ impl NotificationSystem { self.notifier.target_list().read().await.keys() } + /// Gets the complete Target list, including both active and inactive Targets. + /// + /// # Return + /// An `Arc>` containing all Targets. + pub async fn get_all_targets(&self) -> Arc> { + self.notifier.target_list() + } + + /// Gets all Target values, including both active and inactive Targets. + /// + /// # Return + /// A Vec containing all Targets. + pub async fn get_target_values(&self) -> Vec + Send + Sync>> { + self.notifier.target_list().read().await.values() + } + /// Checks if there are active subscribers for the given bucket and event name. pub async fn has_subscriber(&self, bucket: &str, event: &EventName) -> bool { if !self.subscriber_view.has_subscriber(bucket, event) { diff --git a/crates/notify/src/notifier.rs b/crates/notify/src/notifier.rs index a5c8dd6e..859e64b9 100644 --- a/crates/notify/src/notifier.rs +++ b/crates/notify/src/notifier.rs @@ -370,6 +370,11 @@ impl TargetList { self.targets.keys().cloned().collect() } + /// Returns all targets in the list + pub fn values(&self) -> Vec + Send + Sync>> { + self.targets.values().cloned().collect() + } + /// Returns the number of targets pub fn len(&self) -> usize { self.targets.len() diff --git a/rustfs/src/admin/handlers/event.rs b/rustfs/src/admin/handlers/event.rs index a8b93227..eca0ad00 100644 --- a/rustfs/src/admin/handlers/event.rs +++ b/rustfs/src/admin/handlers/event.rs @@ -14,21 +14,24 @@ use crate::admin::router::Operation; use crate::auth::{check_key_valid, get_session_token}; +use futures::stream::{FuturesUnordered, StreamExt}; use http::{HeaderMap, StatusCode}; use matchit::Params; use rustfs_config::notify::{NOTIFY_MQTT_SUB_SYS, NOTIFY_WEBHOOK_SUB_SYS}; use rustfs_config::{ENABLE_KEY, EnableState, MAX_ADMIN_REQUEST_BODY_SIZE}; use rustfs_targets::check_mqtt_broker_available; -use s3s::header::CONTENT_LENGTH; -use s3s::{Body, S3Error, S3ErrorCode, S3Request, S3Response, S3Result, header::CONTENT_TYPE, s3_error}; +use s3s::{Body, S3Request, S3Response, S3Result, header::CONTENT_TYPE, s3_error}; use serde::{Deserialize, Serialize}; +use std::collections::{HashMap, HashSet}; use std::future::Future; use std::io::{Error, ErrorKind}; use std::net::SocketAddr; use std::path::Path; +use std::sync::Arc; use tokio::net::lookup_host; -use tokio::time::{Duration, sleep}; -use tracing::{Span, debug, error, info, warn}; +use tokio::sync::Semaphore; +use tokio::time::{Duration, sleep, timeout}; +use tracing::{Span, info, warn}; use url::Url; #[derive(Debug, Deserialize)] @@ -54,12 +57,34 @@ struct NotificationEndpointsResponse { notification_endpoints: Vec, } +// --- Helper Functions --- + +async fn check_permissions(req: &S3Request) -> S3Result<()> { + let Some(input_cred) = &req.credentials else { + return Err(s3_error!(InvalidRequest, "credentials not found")); + }; + check_key_valid(get_session_token(&req.uri, &req.headers).unwrap_or_default(), &input_cred.access_key).await?; + Ok(()) +} + +fn get_notification_system() -> S3Result> { + rustfs_notify::notification_system().ok_or_else(|| s3_error!(InternalError, "notification system not initialized")) +} + +fn build_response(status: StatusCode, body: Body, request_id: Option<&http::HeaderValue>) -> S3Response<(StatusCode, Body)> { + let mut header = HeaderMap::new(); + header.insert(CONTENT_TYPE, "application/json".parse().unwrap()); + if let Some(v) = request_id { + header.insert("x-request-id", v.clone()); + } + S3Response::with_headers((status, body), header) +} + async fn retry_with_backoff(mut operation: F, max_attempts: usize, base_delay: Duration) -> Result where F: FnMut() -> Fut, Fut: Future>, { - assert!(max_attempts > 0, "max_attempts must be greater than 0"); let mut attempts = 0; let mut delay = base_delay; let mut last_err = None; @@ -71,13 +96,6 @@ where last_err = Some(e); attempts += 1; if attempts < max_attempts { - warn!( - "Retry attempt {}/{} failed: {}. Retrying in {:?}", - attempts, - max_attempts, - last_err.as_ref().unwrap(), - delay - ); sleep(delay).await; delay = delay.saturating_mul(2); } @@ -87,130 +105,73 @@ where Err(last_err.unwrap_or_else(|| Error::other("retry_with_backoff: unknown error"))) } -async fn retry_metadata(path: &str) -> Result<(), Error> { - retry_with_backoff(|| async { tokio::fs::metadata(path).await.map(|_| ()) }, 3, Duration::from_millis(100)).await -} - async fn validate_queue_dir(queue_dir: &str) -> S3Result<()> { if !queue_dir.is_empty() { if !Path::new(queue_dir).is_absolute() { return Err(s3_error!(InvalidArgument, "queue_dir must be absolute path")); } - - if let Err(e) = retry_metadata(queue_dir).await { - return match e.kind() { - ErrorKind::NotFound => Err(s3_error!(InvalidArgument, "queue_dir does not exist")), - ErrorKind::PermissionDenied => Err(s3_error!(InvalidArgument, "queue_dir exists but permission denied")), - _ => Err(s3_error!(InvalidArgument, "failed to access queue_dir: {}", e)), - }; - } - } - - Ok(()) -} - -fn validate_cert_key_pair(cert: &Option, key: &Option) -> S3Result<()> { - if cert.is_some() != key.is_some() { - return Err(s3_error!(InvalidArgument, "client_cert and client_key must be specified as a pair")); + retry_with_backoff( + || async { tokio::fs::metadata(queue_dir).await.map(|_| ()) }, + 3, + Duration::from_millis(100), + ) + .await + .map_err(|e| match e.kind() { + ErrorKind::NotFound => s3_error!(InvalidArgument, "queue_dir does not exist"), + ErrorKind::PermissionDenied => s3_error!(InvalidArgument, "queue_dir exists but permission denied"), + _ => s3_error!(InvalidArgument, "failed to access queue_dir: {}", e), + })?; } Ok(()) } -/// Set (create or update) a notification target +// --- Operations --- + pub struct NotificationTarget {} #[async_trait::async_trait] impl Operation for NotificationTarget { async fn call(&self, req: S3Request, params: Params<'_, '_>) -> S3Result> { let span = Span::current(); let _enter = span.enter(); - // 1. Analyze query parameters let (target_type, target_name) = extract_target_params(¶ms)?; - // 2. Permission verification - let Some(input_cred) = &req.credentials else { - return Err(s3_error!(InvalidRequest, "credentials not found")); - }; - let (_cred, _owner) = - check_key_valid(get_session_token(&req.uri, &req.headers).unwrap_or_default(), &input_cred.access_key).await?; + check_permissions(&req).await?; + let ns = get_notification_system()?; - // 3. Get notification system instance - let Some(ns) = rustfs_notify::notification_system() else { - return Err(s3_error!(InternalError, "notification system not initialized")); - }; - - // 4. The parsing request body is KVS (Key-Value Store) let mut input = req.input; - let body = input.store_all_limited(MAX_ADMIN_REQUEST_BODY_SIZE).await.map_err(|e| { + let body_bytes = input.store_all_limited(MAX_ADMIN_REQUEST_BODY_SIZE).await.map_err(|e| { warn!("failed to read request body: {:?}", e); s3_error!(InvalidRequest, "failed to read request body") })?; - // 1. Get the allowed key range - let allowed_keys: std::collections::HashSet<&str> = match target_type { + let notification_body: NotificationTargetBody = serde_json::from_slice(&body_bytes) + .map_err(|e| s3_error!(InvalidArgument, "invalid json body for target config: {}", e))?; + + let allowed_keys: HashSet<&str> = match target_type { NOTIFY_WEBHOOK_SUB_SYS => rustfs_config::notify::NOTIFY_WEBHOOK_KEYS.iter().cloned().collect(), NOTIFY_MQTT_SUB_SYS => rustfs_config::notify::NOTIFY_MQTT_KEYS.iter().cloned().collect(), _ => unreachable!(), }; - let notification_body: NotificationTargetBody = serde_json::from_slice(&body) - .map_err(|e| s3_error!(InvalidArgument, "invalid json body for target config: {}", e))?; + let kv_map: HashMap<&str, &str> = notification_body + .key_values + .iter() + .map(|kv| (kv.key.as_str(), kv.value.as_str())) + .collect(); - // 2. Filter and verify keys, and splice target_name - let mut kvs_vec = Vec::new(); - let mut endpoint_val = None; - let mut queue_dir_val = None; - let mut client_cert_val = None; - let mut client_key_val = None; - let mut qos_val = None; - let mut topic_val = String::new(); - - for kv in notification_body.key_values.iter() { - if !allowed_keys.contains(kv.key.as_str()) { - return Err(s3_error!( - InvalidArgument, - "key '{}' not allowed for target type '{}'", - kv.key, - target_type - )); + // Validate keys + for key in kv_map.keys() { + if !allowed_keys.contains(key) { + return Err(s3_error!(InvalidArgument, "key '{}' not allowed for target type '{}'", key, target_type)); } - if kv.key == "endpoint" { - endpoint_val = Some(kv.value.clone()); - } - - if target_type == NOTIFY_MQTT_SUB_SYS { - if kv.key == rustfs_config::MQTT_BROKER { - endpoint_val = Some(kv.value.clone()); - } - if kv.key == rustfs_config::MQTT_TOPIC { - topic_val = kv.value.clone(); - } - } - - if kv.key == "queue_dir" { - queue_dir_val = Some(kv.value.clone()); - } - if kv.key == "client_cert" { - client_cert_val = Some(kv.value.clone()); - } - if kv.key == "client_key" { - client_key_val = Some(kv.value.clone()); - } - if kv.key == "qos" { - qos_val = Some(kv.value.clone()); - } - - kvs_vec.push(rustfs_ecstore::config::KV { - key: kv.key.clone(), - value: kv.value.clone(), - hidden_if_empty: false, - }); } + // Type-specific validation if target_type == NOTIFY_WEBHOOK_SUB_SYS { - let endpoint = endpoint_val - .clone() + let endpoint = kv_map + .get("endpoint") .ok_or_else(|| s3_error!(InvalidArgument, "endpoint is required"))?; - let url = Url::parse(&endpoint).map_err(|e| s3_error!(InvalidArgument, "invalid endpoint url: {}", e))?; + let url = Url::parse(endpoint).map_err(|e| s3_error!(InvalidArgument, "invalid endpoint url: {}", e))?; let host = url .host_str() .ok_or_else(|| s3_error!(InvalidArgument, "endpoint missing host"))?; @@ -218,207 +179,147 @@ impl Operation for NotificationTarget { .port_or_known_default() .ok_or_else(|| s3_error!(InvalidArgument, "endpoint missing port"))?; let addr = format!("{host}:{port}"); - // First, try to parse as SocketAddr (IP:port) - if addr.parse::().is_err() { - // If not an IP:port, try DNS resolution - if lookup_host(&addr).await.is_err() { - return Err(s3_error!(InvalidArgument, "invalid or unresolvable endpoint address")); - } + if addr.parse::().is_err() && lookup_host(&addr).await.is_err() { + return Err(s3_error!(InvalidArgument, "invalid or unresolvable endpoint address")); } - if let Some(queue_dir) = queue_dir_val.clone() { - validate_queue_dir(&queue_dir).await?; + if let Some(queue_dir) = kv_map.get("queue_dir") { + validate_queue_dir(queue_dir).await?; } - validate_cert_key_pair(&client_cert_val, &client_key_val)?; - } + if kv_map.contains_key("client_cert") != kv_map.contains_key("client_key") { + return Err(s3_error!(InvalidArgument, "client_cert and client_key must be specified as a pair")); + } + } else if target_type == NOTIFY_MQTT_SUB_SYS { + let endpoint = kv_map + .get(rustfs_config::MQTT_BROKER) + .ok_or_else(|| s3_error!(InvalidArgument, "broker endpoint is required"))?; + let topic = kv_map + .get(rustfs_config::MQTT_TOPIC) + .ok_or_else(|| s3_error!(InvalidArgument, "topic is required"))?; + check_mqtt_broker_available(endpoint, topic) + .await + .map_err(|e| s3_error!(InvalidArgument, "MQTT Broker unavailable: {}", e))?; - if target_type == NOTIFY_MQTT_SUB_SYS { - let endpoint = endpoint_val.ok_or_else(|| s3_error!(InvalidArgument, "broker endpoint is required"))?; - if topic_val.is_empty() { - return Err(s3_error!(InvalidArgument, "topic is required")); - } - // Check MQTT Broker availability - if let Err(e) = check_mqtt_broker_available(&endpoint, &topic_val).await { - return Err(s3_error!(InvalidArgument, "MQTT Broker unavailable: {}", e)); - } - - if let Some(queue_dir) = queue_dir_val { - validate_queue_dir(&queue_dir).await?; - if let Some(qos) = qos_val { + if let Some(queue_dir) = kv_map.get("queue_dir") { + validate_queue_dir(queue_dir).await?; + if let Some(qos) = kv_map.get("qos") { match qos.parse::() { - Ok(qos_int) if qos_int == 1 || qos_int == 2 => {} - Ok(0) => { - return Err(s3_error!(InvalidArgument, "qos should be 1 or 2 if queue_dir is set")); - } - _ => { - return Err(s3_error!(InvalidArgument, "qos must be an integer 0, 1, or 2")); - } + Ok(1) | Ok(2) => {} + Ok(0) => return Err(s3_error!(InvalidArgument, "qos should be 1 or 2 if queue_dir is set")), + _ => return Err(s3_error!(InvalidArgument, "qos must be an integer 0, 1, or 2")), } } } } - // 3. Add ENABLE_KEY + let mut kvs_vec: Vec<_> = notification_body + .key_values + .into_iter() + .map(|kv| rustfs_ecstore::config::KV { + key: kv.key, + value: kv.value, + hidden_if_empty: false, + }) + .collect(); + kvs_vec.push(rustfs_ecstore::config::KV { key: ENABLE_KEY.to_string(), value: EnableState::On.to_string(), hidden_if_empty: false, }); - let kvs = rustfs_ecstore::config::KVS(kvs_vec); - - // 5. Call notification system to set target configuration info!("Setting target config for type '{}', name '{}'", target_type, target_name); - ns.set_target_config(target_type, target_name, kvs).await.map_err(|e| { - error!("failed to set target config: {}", e); - S3Error::with_message(S3ErrorCode::InternalError, format!("failed to set target config: {e}")) - })?; + ns.set_target_config(target_type, target_name, rustfs_ecstore::config::KVS(kvs_vec)) + .await + .map_err(|e| s3_error!(InternalError, "failed to set target config: {}", e))?; - let mut header = HeaderMap::new(); - header.insert(CONTENT_TYPE, "application/json".parse().unwrap()); - header.insert(CONTENT_LENGTH, "0".parse().unwrap()); - if let Some(v) = req.headers.get("x-request-id") { - header.insert("x-request-id", v.clone()); - } - Ok(S3Response::with_headers((StatusCode::OK, Body::empty()), header)) + Ok(build_response(StatusCode::OK, Body::empty(), req.headers.get("x-request-id"))) } } -/// Get a list of notification targets for all activities pub struct ListNotificationTargets {} #[async_trait::async_trait] impl Operation for ListNotificationTargets { async fn call(&self, req: S3Request, _params: Params<'_, '_>) -> S3Result> { let span = Span::current(); let _enter = span.enter(); - debug!("ListNotificationTargets call start request params: {:?}", req.uri.query()); + check_permissions(&req).await?; + let ns = get_notification_system()?; - // 1. Permission verification - let Some(input_cred) = &req.credentials else { - return Err(s3_error!(InvalidRequest, "credentials not found")); - }; - let (_cred, _owner) = - check_key_valid(get_session_token(&req.uri, &req.headers).unwrap_or_default(), &input_cred.access_key).await?; + let targets = ns.get_target_values().await; + let target_count = targets.len(); - // 2. Get notification system instance - let Some(ns) = rustfs_notify::notification_system() else { - return Err(s3_error!(InternalError, "notification system not initialized")); - }; + let semaphore = Arc::new(Semaphore::new(10)); + let mut futures = FuturesUnordered::new(); - // 3. Get the list of activity targets - let active_targets = ns.get_active_targets().await; - - debug!("ListNotificationTargets call found {} active targets", active_targets.len()); - let mut notification_endpoints = Vec::new(); - for target_id in active_targets.iter() { - notification_endpoints.push(NotificationEndpoint { - account_id: target_id.id.clone(), - service: target_id.name.to_string(), - status: "online".to_string(), + for target in targets { + let sem = Arc::clone(&semaphore); + futures.push(async move { + let _permit = sem.acquire().await; + let status = match timeout(Duration::from_secs(3), target.is_active()).await { + Ok(Ok(true)) => "online", + _ => "offline", + }; + NotificationEndpoint { + account_id: target.id().to_string(), + service: target.name().to_string(), + status: status.to_string(), + } }); } - let response = NotificationEndpointsResponse { notification_endpoints }; - - // 4. Serialize and return the result - let data = serde_json::to_vec(&response).map_err(|e| { - error!("Failed to serialize notification targets response: {:?}", response); - S3Error::with_message(S3ErrorCode::InternalError, format!("failed to serialize targets: {e}")) - })?; - debug!("ListNotificationTargets call end, response data length: {}", data.len(),); - let mut header = HeaderMap::new(); - header.insert(CONTENT_TYPE, "application/json".parse().unwrap()); - if let Some(v) = req.headers.get("x-request-id") { - header.insert("x-request-id", v.clone()); + let mut notification_endpoints = Vec::with_capacity(target_count); + while let Some(endpoint) = futures.next().await { + notification_endpoints.push(endpoint); } - Ok(S3Response::with_headers((StatusCode::OK, Body::from(data)), header)) + + let data = serde_json::to_vec(&NotificationEndpointsResponse { notification_endpoints }) + .map_err(|e| s3_error!(InternalError, "failed to serialize targets: {}", e))?; + + Ok(build_response(StatusCode::OK, Body::from(data), req.headers.get("x-request-id"))) } } -/// Get a list of notification targets for all activities pub struct ListTargetsArns {} #[async_trait::async_trait] impl Operation for ListTargetsArns { async fn call(&self, req: S3Request, _params: Params<'_, '_>) -> S3Result> { let span = Span::current(); let _enter = span.enter(); - debug!("ListTargetsArns call start request params: {:?}", req.uri.query()); + check_permissions(&req).await?; + let ns = get_notification_system()?; - // 1. Permission verification - let Some(input_cred) = &req.credentials else { - return Err(s3_error!(InvalidRequest, "credentials not found")); - }; - let (_cred, _owner) = - check_key_valid(get_session_token(&req.uri, &req.headers).unwrap_or_default(), &input_cred.access_key).await?; - - // 2. Get notification system instance - let Some(ns) = rustfs_notify::notification_system() else { - return Err(s3_error!(InternalError, "notification system not initialized")); - }; - - // 3. Get the list of activity targets let active_targets = ns.get_active_targets().await; + let region = req + .region + .clone() + .ok_or_else(|| s3_error!(InvalidRequest, "region not found"))?; - debug!("ListTargetsArns call found {} active targets", active_targets.len()); + let data_target_arn_list: Vec<_> = active_targets.iter().map(|id| id.to_arn(®ion).to_string()).collect(); - let region = match req.region.clone() { - Some(region) => region, - None => return Err(s3_error!(InvalidRequest, "region not found")), - }; - let mut data_target_arn_list = Vec::new(); - - for target_id in active_targets.iter() { - data_target_arn_list.push(target_id.to_arn(®ion).to_string()); - } - - // 4. Serialize and return the result let data = serde_json::to_vec(&data_target_arn_list) - .map_err(|e| S3Error::with_message(S3ErrorCode::InternalError, format!("failed to serialize targets: {e}")))?; - debug!("ListTargetsArns call end, response data length: {}", data.len(),); - let mut header = HeaderMap::new(); - header.insert(CONTENT_TYPE, "application/json".parse().unwrap()); - if let Some(v) = req.headers.get("x-request-id") { - header.insert("x-request-id", v.clone()); - } - Ok(S3Response::with_headers((StatusCode::OK, Body::from(data)), header)) + .map_err(|e| s3_error!(InternalError, "failed to serialize targets: {}", e))?; + + Ok(build_response(StatusCode::OK, Body::from(data), req.headers.get("x-request-id"))) } } -/// Delete a specified notification target pub struct RemoveNotificationTarget {} #[async_trait::async_trait] impl Operation for RemoveNotificationTarget { async fn call(&self, req: S3Request, params: Params<'_, '_>) -> S3Result> { let span = Span::current(); let _enter = span.enter(); - // 1. Analyze query parameters let (target_type, target_name) = extract_target_params(¶ms)?; - // 2. Permission verification - let Some(input_cred) = &req.credentials else { - return Err(s3_error!(InvalidRequest, "credentials not found")); - }; - let (_cred, _owner) = - check_key_valid(get_session_token(&req.uri, &req.headers).unwrap_or_default(), &input_cred.access_key).await?; + check_permissions(&req).await?; + let ns = get_notification_system()?; - // 3. Get notification system instance - let Some(ns) = rustfs_notify::notification_system() else { - return Err(s3_error!(InternalError, "notification system not initialized")); - }; - - // 4. Call notification system to remove target configuration info!("Removing target config for type '{}', name '{}'", target_type, target_name); - ns.remove_target_config(target_type, target_name).await.map_err(|e| { - error!("failed to remove target config: {}", e); - S3Error::with_message(S3ErrorCode::InternalError, format!("failed to remove target config: {e}")) - })?; + ns.remove_target_config(target_type, target_name) + .await + .map_err(|e| s3_error!(InternalError, "failed to remove target config: {}", e))?; - let mut header = HeaderMap::new(); - header.insert(CONTENT_TYPE, "application/json".parse().unwrap()); - header.insert(CONTENT_LENGTH, "0".parse().unwrap()); - if let Some(v) = req.headers.get("x-request-id") { - header.insert("x-request-id", v.clone()); - } - Ok(S3Response::with_headers((StatusCode::OK, Body::empty()), header)) + Ok(build_response(StatusCode::OK, Body::empty(), req.headers.get("x-request-id"))) } } @@ -433,7 +334,6 @@ fn extract_target_params<'a>(params: &'a Params<'_, '_>) -> S3Result<(&'a str, & if target_type != NOTIFY_WEBHOOK_SUB_SYS && target_type != NOTIFY_MQTT_SUB_SYS { return Err(s3_error!(InvalidArgument, "unsupported target type: '{}'", target_type)); } - let target_name = extract_param(params, "target_name")?; Ok((target_type, target_name)) } From 68c5c0b834a2656ad93a1101c560ba8e58d2030f Mon Sep 17 00:00:00 2001 From: Jan S Date: Wed, 14 Jan 2026 09:03:32 +0100 Subject: [PATCH 09/22] Use POSIX statvfs, since statfs is not designed to be portable (#1495) --- crates/utils/src/os/mod.rs | 1 + crates/utils/src/os/unix.rs | 55 +++++------------------------- crates/utils/src/sys/user_agent.rs | 2 +- rustfs/src/server/http.rs | 38 +++++++++------------ 4 files changed, 28 insertions(+), 68 deletions(-) diff --git a/crates/utils/src/os/mod.rs b/crates/utils/src/os/mod.rs index e1984580..d88bd513 100644 --- a/crates/utils/src/os/mod.rs +++ b/crates/utils/src/os/mod.rs @@ -16,6 +16,7 @@ mod linux; #[cfg(all(unix, not(target_os = "linux")))] mod unix; + #[cfg(target_os = "windows")] mod windows; diff --git a/crates/utils/src/os/unix.rs b/crates/utils/src/os/unix.rs index dce38318..3b1c3575 100644 --- a/crates/utils/src/os/unix.rs +++ b/crates/utils/src/os/unix.rs @@ -13,56 +13,19 @@ // limitations under the License. use super::{DiskInfo, IOStats}; -use nix::sys::statfs::Statfs; -use nix::sys::{stat::stat, statfs::statfs}; +use nix::sys::{stat::stat, statvfs::statvfs}; use std::io::Error; use std::path::Path; -// FreeBSD and OpenBSD return a signed integer for blocks_available. -// Cast to an unsigned integer to use with DiskInfo. -#[cfg(any(target_os = "freebsd", target_os = "openbsd"))] -fn blocks_available(stat: &Statfs) -> u64 { - match stat.blocks_available().try_into() { - Ok(bavail) => bavail, - Err(e) => { - tracing::warn!("blocks_available returned a negative value: Using 0 as fallback. {}", e); - 0 - } - } -} - -// FreeBSD returns a signed integer for files_free. Cast to an unsigned integer -// to use with DiskInfo -#[cfg(target_os = "freebsd")] -fn files_free(stat: &Statfs) -> u64 { - match stat.files_free().try_into() { - Ok(files_free) => files_free, - Err(e) => { - tracing::warn!("files_free returned a negative value: Using 0 as fallback. {}", e); - 0 - } - } -} - -#[cfg(not(target_os = "freebsd"))] -fn files_free(stat: &Statfs) -> u64 { - stat.files_free() -} - -#[cfg(not(any(target_os = "freebsd", target_os = "openbsd")))] -fn blocks_available(stat: &Statfs) -> u64 { - stat.blocks_available() -} - /// Returns total and free bytes available in a directory, e.g. `/`. pub fn get_info(p: impl AsRef) -> std::io::Result { let path_display = p.as_ref().display(); - let stat = statfs(p.as_ref())?; + let stat = statvfs(p.as_ref())?; - let bsize = stat.block_size() as u64; - let bfree = stat.blocks_free(); - let bavail = blocks_available(&stat); - let blocks = stat.blocks(); + let bsize = stat.block_size(); + let bfree = stat.blocks_free() as u64; + let bavail = stat.blocks_available() as u64; + let blocks = stat.blocks() as u64; let reserved = match bfree.checked_sub(bavail) { Some(reserved) => reserved, @@ -96,9 +59,9 @@ pub fn get_info(p: impl AsRef) -> std::io::Result { total, free, used, - files: stat.files(), - ffree: files_free(&stat), - fstype: stat.filesystem_type_name().to_string(), + files: stat.files() as u64, + ffree: stat.files_free() as u64, + // Statvfs does not provide a way to return the filesystem as name. ..Default::default() }) } diff --git a/crates/utils/src/sys/user_agent.rs b/crates/utils/src/sys/user_agent.rs index 28486e89..60700904 100644 --- a/crates/utils/src/sys/user_agent.rs +++ b/crates/utils/src/sys/user_agent.rs @@ -15,7 +15,7 @@ use rustfs_config::VERSION; use std::env; use std::fmt; -#[cfg(not(any(target_os = "openbsd", target_os = "freebsd")))] +#[cfg(not(any(target_os = "openbsd", target_os = "freebsd", target_os = "netbsd")))] use sysinfo::System; /// Business Type Enumeration diff --git a/rustfs/src/server/http.rs b/rustfs/src/server/http.rs index f9a524eb..57a8f7a4 100644 --- a/rustfs/src/server/http.rs +++ b/rustfs/src/server/http.rs @@ -30,9 +30,6 @@ use hyper_util::{ }; use metrics::{counter, histogram}; use rustfs_common::GlobalReadiness; -#[cfg(not(target_os = "openbsd"))] -use rustfs_config::{MI_B, RUSTFS_TLS_CERT, RUSTFS_TLS_KEY}; -#[cfg(target_os = "openbsd")] use rustfs_config::{RUSTFS_TLS_CERT, RUSTFS_TLS_KEY}; use rustfs_ecstore::rpc::{TONIC_RPC_PREFIX, verify_rpc_signature}; use rustfs_protos::proto_gen::node_service::node_service_server::NodeServiceServer; @@ -379,11 +376,14 @@ pub async fn start_http_server( // Enable TCP Keepalive to detect dead clients (e.g. power loss) // Idle: 10s, Interval: 5s, Retries: 3 - let mut ka = TcpKeepalive::new().with_time(Duration::from_secs(10)); + #[cfg(target_os = "openbsd")] + let ka = TcpKeepalive::new().with_time(Duration::from_secs(10)); + #[cfg(not(target_os = "openbsd"))] - { - ka = ka.with_interval(Duration::from_secs(5)).with_retries(3); - } + let ka = TcpKeepalive::new() + .with_time(Duration::from_secs(10)) + .with_interval(Duration::from_secs(5)) + .with_retries(3); if let Err(err) = socket_ref.set_tcp_keepalive(&ka) { warn!(?err, "Failed to set TCP_KEEPALIVE"); @@ -392,12 +392,13 @@ pub async fn start_http_server( if let Err(err) = socket_ref.set_tcp_nodelay(true) { warn!(?err, "Failed to set TCP_NODELAY"); } - #[cfg(not(any(target_os = "openbsd")))] - if let Err(err) = socket_ref.set_recv_buffer_size(4 * MI_B) { + + #[cfg(not(target_os = "openbsd"))] + if let Err(err) = socket_ref.set_recv_buffer_size(4 * rustfs_config::MI_B) { warn!(?err, "Failed to set set_recv_buffer_size"); } - #[cfg(not(any(target_os = "openbsd")))] - if let Err(err) = socket_ref.set_send_buffer_size(4 * MI_B) { + #[cfg(not(target_os = "openbsd"))] + if let Err(err) = socket_ref.set_send_buffer_size(4 * rustfs_config::MI_B) { warn!(?err, "Failed to set set_send_buffer_size"); } @@ -752,14 +753,15 @@ fn get_listen_backlog() -> i32 { } // For macOS and BSD variants use the syscall way of getting the connection queue length. -#[cfg(any(target_os = "macos", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))] +// NetBSD has no somaxconn-like kernel state. +#[cfg(any(target_os = "macos", target_os = "freebsd", target_os = "openbsd"))] #[allow(unsafe_code)] fn get_listen_backlog() -> i32 { const DEFAULT_BACKLOG: i32 = 1024; #[cfg(target_os = "openbsd")] let mut name = [libc::CTL_KERN, libc::KERN_SOMAXCONN]; - #[cfg(any(target_os = "netbsd", target_os = "macos", target_os = "freebsd"))] + #[cfg(any(target_os = "macos", target_os = "freebsd"))] let mut name = [libc::CTL_KERN, libc::KERN_IPC, libc::KIPC_SOMAXCONN]; let mut buf = [0; 1]; let mut buf_len = size_of_val(&buf); @@ -781,14 +783,8 @@ fn get_listen_backlog() -> i32 { buf[0] } -// Fallback for Windows and other operating systems -#[cfg(not(any( - target_os = "linux", - target_os = "macos", - target_os = "freebsd", - target_os = "netbsd", - target_os = "openbsd" -)))] +// Fallback for Windows, NetBSD and other operating systems. +#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "freebsd", target_os = "openbsd")))] fn get_listen_backlog() -> i32 { const DEFAULT_BACKLOG: i32 = 1024; DEFAULT_BACKLOG From 15e6d4dbd0bcdee4a588c75b955fc0aded0d6fdf Mon Sep 17 00:00:00 2001 From: Jasper Weyne Date: Wed, 14 Jan 2026 10:54:37 +0100 Subject: [PATCH 10/22] feat: add support for existing gateways in helm chart (#1469) Co-authored-by: loverustfs --- helm/README.md | 2 ++ helm/rustfs/templates/gateway-api/gateway.yml | 2 +- helm/rustfs/templates/gateway-api/httproute.yml | 7 +++++++ helm/rustfs/templates/secret-tls.yaml | 2 +- helm/rustfs/values.yaml | 3 +++ 5 files changed, 14 insertions(+), 2 deletions(-) diff --git a/helm/README.md b/helm/README.md index 2d635767..1ace7039 100644 --- a/helm/README.md +++ b/helm/README.md @@ -114,6 +114,8 @@ RustFS helm chart supports **standalone and distributed mode**. For standalone m | gatewayApi.gatewayClass | string | `traefik` | Gateway class implementation. | | gatewayApi.hostname | string | Hostname to access RustFS via gateway api. | | gatewayApi.secretName | string | Secret tls to via RustFS using HTTPS. | +| gatewayApi.existingGateway.name | string | `""` | The existing gateway name, instead of creating a new one. | +| gatewayApi.existingGateway.namespace | string | `""` | The namespace of the existing gateway, if not the local namespace. | --- diff --git a/helm/rustfs/templates/gateway-api/gateway.yml b/helm/rustfs/templates/gateway-api/gateway.yml index 8b50f5ae..fde30aa1 100644 --- a/helm/rustfs/templates/gateway-api/gateway.yml +++ b/helm/rustfs/templates/gateway-api/gateway.yml @@ -1,4 +1,4 @@ -{{- if .Values.gatewayApi.enabled }} +{{- if and .Values.gatewayApi.enabled (empty .Values.gatewayApi.existingGateway.name) }} apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: diff --git a/helm/rustfs/templates/gateway-api/httproute.yml b/helm/rustfs/templates/gateway-api/httproute.yml index 9ac5d968..edd0b517 100644 --- a/helm/rustfs/templates/gateway-api/httproute.yml +++ b/helm/rustfs/templates/gateway-api/httproute.yml @@ -5,7 +5,14 @@ metadata: name: {{ include "rustfs.fullname" . }}-route spec: parentRefs: + {{- if .Values.gatewayApi.existingGateway.name }} + - name: {{ .Values.gatewayApi.existingGateway.name }} + {{- if .Values.gatewayApi.existingGateway.namespace }} + namespace: {{ .Values.gatewayApi.existingGateway.namespace }} + {{- end }} + {{- else }} - name: {{ include "rustfs.fullname" . }}-gateway + {{- end }} hostnames: - {{ .Values.gatewayApi.hostname }} rules: diff --git a/helm/rustfs/templates/secret-tls.yaml b/helm/rustfs/templates/secret-tls.yaml index fea2cf58..730f5766 100644 --- a/helm/rustfs/templates/secret-tls.yaml +++ b/helm/rustfs/templates/secret-tls.yaml @@ -1,4 +1,4 @@ -{{- if and (or .Values.gatewayApi.enabled .Values.ingress.tls.enabled) (not .Values.ingress.tls.certManager.enabled) }} +{{- if and (or .Values.gatewayApi.enabled .Values.ingress.tls.enabled) (not (or .Values.ingress.tls.certManager.enabled .Values.gatewayApi.existingGateway.name)) }} apiVersion: v1 kind: Secret metadata: diff --git a/helm/rustfs/values.yaml b/helm/rustfs/values.yaml index d8017cc0..eb772251 100644 --- a/helm/rustfs/values.yaml +++ b/helm/rustfs/values.yaml @@ -140,6 +140,9 @@ gatewayApi: gatewayClass: traefik hostname: example.rustfs.com secretName: secret-tls + existingGateway: + name: "" + namespace: "" resources: # We usually recommend not to specify default resources and to leave this as a conscious From 109ca7a1006db30546838ac3ceacdd8019f593fa Mon Sep 17 00:00:00 2001 From: houseme Date: Wed, 14 Jan 2026 18:08:02 +0800 Subject: [PATCH 11/22] perf(utils): optimize User-Agent generation and platform detection (#1504) --- crates/utils/src/sys/user_agent.rs | 190 +++++++++++++---------------- 1 file changed, 83 insertions(+), 107 deletions(-) diff --git a/crates/utils/src/sys/user_agent.rs b/crates/utils/src/sys/user_agent.rs index 60700904..28ed7dd6 100644 --- a/crates/utils/src/sys/user_agent.rs +++ b/crates/utils/src/sys/user_agent.rs @@ -13,9 +13,11 @@ // limitations under the License. use rustfs_config::VERSION; +use std::borrow::Cow; use std::env; use std::fmt; -#[cfg(not(any(target_os = "openbsd", target_os = "freebsd", target_os = "netbsd")))] +use std::sync::OnceLock; +#[cfg(not(target_os = "openbsd"))] use sysinfo::System; /// Business Type Enumeration @@ -25,7 +27,7 @@ pub enum ServiceType { Core, Event, Logger, - Custom(String), + Custom(Cow<'static, str>), } impl ServiceType { @@ -35,71 +37,65 @@ impl ServiceType { ServiceType::Core => "core", ServiceType::Event => "event", ServiceType::Logger => "logger", - ServiceType::Custom(s) => s.as_str(), + ServiceType::Custom(s) => s, } } } /// UserAgent structure to hold User-Agent information /// including OS platform, architecture, version, and service type. -/// It provides methods to generate a formatted User-Agent string. -/// # Examples -/// ``` -/// use rustfs_utils::{get_user_agent, ServiceType}; -/// -/// let ua = get_user_agent(ServiceType::Core); -/// println!("User-Agent: {}", ua); -/// ``` #[derive(Debug)] struct UserAgent { - os_platform: String, - arch: String, - version: String, + os_platform: &'static str, + arch: &'static str, + version: &'static str, service: ServiceType, } +static OS_PLATFORM: OnceLock = OnceLock::new(); + impl UserAgent { /// Create a new UserAgent instance and accept business type parameters - /// - /// # Arguments - /// * `service` - The type of service for which the User-Agent is being created. - /// # Returns - /// A new instance of `UserAgent` with the current OS platform, architecture, version, and service type. fn new(service: ServiceType) -> Self { - let os_platform = Self::get_os_platform(); - let arch = env::consts::ARCH.to_string(); - let version = VERSION.to_string(); - UserAgent { - os_platform, - arch, - version, + os_platform: Self::get_os_platform(), + arch: env::consts::ARCH, + version: VERSION, service, } } - /// Obtain operating system platform information - fn get_os_platform() -> String { - if cfg!(target_os = "windows") { - Self::get_windows_platform() - } else if cfg!(target_os = "macos") { - Self::get_macos_platform() - } else if cfg!(target_os = "linux") { - Self::get_linux_platform() - } else { - "Unknown".to_string() - } + /// Obtain operating system platform information using a thread-safe cache. + /// + /// The value is computed once on first use via `OnceLock` and then reused + /// for all subsequent calls for the lifetime of the program. + fn get_os_platform() -> &'static str { + OS_PLATFORM.get_or_init(|| { + if cfg!(target_os = "windows") { + Self::get_windows_platform() + } else if cfg!(target_os = "macos") { + Self::get_macos_platform() + } else if cfg!(target_os = "linux") { + Self::get_linux_platform() + } else if cfg!(target_os = "freebsd") { + Self::get_freebsd_platform() + } else if cfg!(target_os = "netbsd") { + Self::get_netbsd_platform() + } else { + "Unknown".to_string() + } + }) } /// Get Windows platform information #[cfg(windows)] fn get_windows_platform() -> String { - // Priority to using sysinfo to get versions - let version = match System::os_version() { - Some(version) => version, - None => "Windows NT Unknown".to_string(), - }; - format!("Windows NT {version}") + let version = System::os_version().unwrap_or_else(|| "NT Unknown".to_string()); + if version.starts_with("Windows") { + version + } else { + format!("Windows NT {version}") + } } #[cfg(not(windows))] @@ -110,16 +106,14 @@ impl UserAgent { /// Get macOS platform information #[cfg(target_os = "macos")] fn get_macos_platform() -> String { - let binding = System::os_version().unwrap_or("14.5.0".to_string()); - let version = binding.split('.').collect::>(); - let major = version.first().unwrap_or(&"14").to_string(); - let minor = version.get(1).unwrap_or(&"5").to_string(); - let patch = version.get(2).unwrap_or(&"0").to_string(); + let version_str = System::os_version().unwrap_or_else(|| "14.0.0".to_string()); + let mut parts = version_str.split('.'); + let major = parts.next().unwrap_or("14"); + let minor = parts.next().unwrap_or("0"); + let patch = parts.next().unwrap_or("0"); - let arch = env::consts::ARCH; - let cpu_info = if arch == "aarch64" { "Apple" } else { "Intel" }; + let cpu_info = if env::consts::ARCH == "aarch64" { "Apple" } else { "Intel" }; - // Convert to User-Agent format format!("Macintosh; {cpu_info} Mac OS X {major}_{minor}_{patch}") } @@ -131,40 +125,47 @@ impl UserAgent { /// Get Linux platform information #[cfg(target_os = "linux")] fn get_linux_platform() -> String { - format!("X11; {}", System::long_os_version().unwrap_or("Linux Unknown".to_string())) + let os_name = System::long_os_version().unwrap_or_else(|| "Linux Unknown".to_string()); + format!("X11; {os_name}") } #[cfg(not(target_os = "linux"))] fn get_linux_platform() -> String { "N/A".to_string() } + + #[cfg(target_os = "freebsd")] + fn get_freebsd_platform() -> String { + format!("FreeBSD; {}", env::consts::ARCH) + } + + #[cfg(not(target_os = "freebsd"))] + fn get_freebsd_platform() -> String { + "N/A".to_string() + } + + #[cfg(target_os = "netbsd")] + fn get_netbsd_platform() -> String { + format!("NetBSD; {}", env::consts::ARCH) + } + + #[cfg(not(target_os = "netbsd"))] + fn get_netbsd_platform() -> String { + "N/A".to_string() + } } -/// Implement Display trait to format User-Agent impl fmt::Display for UserAgent { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - if self.service == ServiceType::Basis { - return write!(f, "Mozilla/5.0 ({}; {}) RustFS/{}", self.os_platform, self.arch, self.version); + write!(f, "Mozilla/5.0 ({}; {}) RustFS/{}", self.os_platform, self.arch, self.version)?; + if self.service != ServiceType::Basis { + write!(f, " ({})", self.service.as_str())?; } - write!( - f, - "Mozilla/5.0 ({}; {}) RustFS/{} ({})", - self.os_platform, - self.arch, - self.version, - self.service.as_str() - ) + Ok(()) } } /// Get the User-Agent string and accept business type parameters -/// -/// # Arguments -/// * `service` - The type of service for which the User-Agent is being created. -/// -/// # Returns -/// A formatted User-Agent string. -/// pub fn get_user_agent(service: ServiceType) -> String { UserAgent::new(service).to_string() } @@ -173,58 +174,33 @@ pub fn get_user_agent(service: ServiceType) -> String { mod tests { use super::*; use rustfs_config::VERSION; - use tracing::debug; + #[test] fn test_user_agent_format_basis() { let ua = get_user_agent(ServiceType::Basis); assert!(ua.starts_with("Mozilla/5.0")); - assert!(ua.contains(&format!("RustFS/{VERSION}").to_string())); - debug!("Basic User-Agent: {}", ua); + assert!(ua.contains(&format!("RustFS/{VERSION}"))); + assert!(!ua.contains("(basis)")); } #[test] fn test_user_agent_format_core() { let ua = get_user_agent(ServiceType::Core); - assert!(ua.starts_with("Mozilla/5.0")); - assert!(ua.contains(&format!("RustFS/{VERSION} (core)").to_string())); - debug!("Core User-Agent: {}", ua); - } - - #[test] - fn test_user_agent_format_event() { - let ua = get_user_agent(ServiceType::Event); - assert!(ua.starts_with("Mozilla/5.0")); - assert!(ua.contains(&format!("RustFS/{VERSION} (event)").to_string())); - debug!("Event User-Agent: {}", ua); - } - - #[test] - fn test_user_agent_format_logger() { - let ua = get_user_agent(ServiceType::Logger); - assert!(ua.starts_with("Mozilla/5.0")); - assert!(ua.contains(&format!("RustFS/{VERSION} (logger)").to_string())); - debug!("Logger User-Agent: {}", ua); + assert!(ua.contains(&format!("RustFS/{VERSION} (core)"))); } #[test] fn test_user_agent_format_custom() { - let ua = get_user_agent(ServiceType::Custom("monitor".to_string())); - assert!(ua.starts_with("Mozilla/5.0")); - assert!(ua.contains(&format!("RustFS/{VERSION} (monitor)").to_string())); - debug!("Monitor User-Agent: {}", ua); + let ua = get_user_agent(ServiceType::Custom("monitor".into())); + assert!(ua.contains(&format!("RustFS/{VERSION} (monitor)"))); } #[test] - fn test_all_service_type() { - // Example: Generate User-Agents of Different Business Types - let ua_core = get_user_agent(ServiceType::Core); - let ua_event = get_user_agent(ServiceType::Event); - let ua_logger = get_user_agent(ServiceType::Logger); - let ua_custom = get_user_agent(ServiceType::Custom("monitor".to_string())); - - debug!("Core User-Agent: {}", ua_core); - debug!("Event User-Agent: {}", ua_event); - debug!("Logger User-Agent: {}", ua_logger); - debug!("Custom User-Agent: {}", ua_custom); + fn test_os_platform_caching() { + let ua1 = UserAgent::new(ServiceType::Basis); + let ua2 = UserAgent::new(ServiceType::Basis); + assert_eq!(ua1.os_platform, ua2.os_platform); + // Ensure they point to the same static memory + assert!(std::ptr::eq(ua1.os_platform.as_ptr(), ua2.os_platform.as_ptr())); } } From 2d58eea7025d17d49ff032505bf3592c44020f99 Mon Sep 17 00:00:00 2001 From: houseme Date: Wed, 14 Jan 2026 19:21:51 +0800 Subject: [PATCH 12/22] fix: exclude matching key from ListObjects results when using marker/startAfter (#1506) --- crates/ecstore/src/store.rs | 18 ++++++++---------- crates/ecstore/src/store_list_objects.rs | 13 ++++++------- 2 files changed, 14 insertions(+), 17 deletions(-) diff --git a/crates/ecstore/src/store.rs b/crates/ecstore/src/store.rs index 4fcc45b7..7f5e7369 100644 --- a/crates/ecstore/src/store.rs +++ b/crates/ecstore/src/store.rs @@ -1825,16 +1825,16 @@ impl StorageAPI for ECStore { if self.is_suspended(pool.pool_idx).await { continue; } - match pool + return match pool .list_object_parts(bucket, object, upload_id, part_number_marker, max_parts, opts) .await { - Ok(res) => return Ok(res), + Ok(res) => Ok(res), Err(err) => { if is_err_invalid_upload_id(&err) { continue; } - return Err(err); + Err(err) } }; } @@ -2204,7 +2204,7 @@ impl StorageAPI for ECStore { async fn delete_object_version(&self, bucket: &str, object: &str, fi: &FileInfo, force_del_marker: bool) -> Result<()> { check_del_obj_args(bucket, object)?; - let object = rustfs_utils::path::encode_dir_object(object); + let object = encode_dir_object(object); if self.single_pool() { return self.pools[0] @@ -2324,17 +2324,15 @@ impl StorageAPI for ECStore { // No pool returned a nil error, return the first non 'not found' error for (index, err) in errs.iter().enumerate() { - match err { + return match err { Some(err) => { if is_err_object_not_found(err) || is_err_version_not_found(err) { continue; } - return Ok((ress.remove(index), Some(err.clone()))); + Ok((ress.remove(index), Some(err.clone()))) } - None => { - return Ok((ress.remove(index), None)); - } - } + None => Ok((ress.remove(index), None)), + }; } // At this stage, all errors are 'not found' diff --git a/crates/ecstore/src/store_list_objects.rs b/crates/ecstore/src/store_list_objects.rs index ff10fc41..aae98d48 100644 --- a/crates/ecstore/src/store_list_objects.rs +++ b/crates/ecstore/src/store_list_objects.rs @@ -410,13 +410,13 @@ impl ECStore { ..Default::default() }; - let mut list_result = match self.list_path(&opts).await { - Ok(res) => res, - Err(err) => MetaCacheEntriesSortedResult { + let mut list_result = self + .list_path(&opts) + .await + .unwrap_or_else(|err| MetaCacheEntriesSortedResult { err: Some(err.into()), ..Default::default() - }, - }; + }); if let Some(err) = list_result.err.clone() && err != rustfs_filemeta::Error::Unexpected @@ -988,7 +988,7 @@ async fn gather_results( } if let Some(marker) = &opts.marker - && &entry.name < marker + && &entry.name <= marker { continue; } @@ -1476,7 +1476,6 @@ mod test { // use crate::error::Error; // use crate::metacache::writer::MetacacheReader; // use crate::set_disk::SetDisks; - // use crate::store::ECStore; // use crate::store_list_objects::ListPathOptions; // use crate::store_list_objects::WalkOptions; // use crate::store_list_objects::WalkVersionsSortOrder; From 6928221b5644f5840602b71a872f4d7670d1975f Mon Sep 17 00:00:00 2001 From: Arthur Darcet Date: Wed, 14 Jan 2026 13:18:00 +0100 Subject: [PATCH 13/22] In the PVC definition, skip the storageClassName attr if null/empty (#1498) Signed-off-by: Arthur Darcet Co-authored-by: majinghe <42570491+majinghe@users.noreply.github.com> Co-authored-by: houseme --- helm/rustfs/templates/pvc.yaml | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/helm/rustfs/templates/pvc.yaml b/helm/rustfs/templates/pvc.yaml index 849da8f2..1942a685 100644 --- a/helm/rustfs/templates/pvc.yaml +++ b/helm/rustfs/templates/pvc.yaml @@ -1,32 +1,39 @@ {{- if .Values.mode.standalone.enabled }} +{{- with .Values.storageclass }} apiVersion: v1 kind: PersistentVolumeClaim metadata: annotations: helm.sh/resource-policy: keep - name: {{ include "rustfs.fullname" . }}-data + name: {{ include "rustfs.fullname" $ }}-data labels: - {{- toYaml .Values.commonLabels | nindent 4 }} + {{- toYaml $.Values.commonLabels | nindent 4 }} spec: - accessModes: ["ReadWriteOnce"] - storageClassName: {{ .Values.storageclass.name }} + accessModes: [ ReadWriteOnce ] + {{- with .name }} + storageClassName: {{ . }} + {{- end }} resources: requests: - storage: {{ .Values.storageclass.dataStorageSize }} + storage: {{ .dataStorageSize }} --- + apiVersion: v1 kind: PersistentVolumeClaim metadata: annotations: helm.sh/resource-policy: keep - name: {{ include "rustfs.fullname" . }}-logs + name: {{ include "rustfs.fullname" $ }}-logs labels: - {{- toYaml .Values.commonLabels | nindent 4 }} + {{- toYaml $.Values.commonLabels | nindent 4 }} spec: - accessModes: ["ReadWriteOnce"] - storageClassName: {{ .Values.storageclass.name }} + accessModes: [ ReadWriteOnce ] + {{- with .name }} + storageClassName: {{ . }} + {{- end }} resources: requests: - storage: {{ .Values.storageclass.logStorageSize }} + storage: {{ .logStorageSize }} +{{- end }} {{- end }} From cb53ee13cddc749300734c72b7657b94a298ec0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Wed, 14 Jan 2026 21:09:13 +0800 Subject: [PATCH 14/22] fix: handle copy_source_if_match in copy_object for S3 compatibility (#1408) Co-authored-by: loverustfs Co-authored-by: houseme --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- rustfs/src/storage/ecfs.rs | 26 ++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 238c6b6f..25d4df93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8544,8 +8544,9 @@ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" [[package]] name = "s3s" -version = "0.13.0-alpha" -source = "git+https://github.com/s3s-project/s3s.git?branch=main#18c168ae21bf1176555f8f529686ecdc2ebd6db7" +version = "0.13.0-alpha.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6ea18014c794952beba5e5faf4663be467b591d45b4834916aad4bbcd2b5c27" dependencies = [ "arrayvec", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 836c3996..b354e705 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -225,7 +225,7 @@ regex = { version = "1.12.2" } rumqttc = { version = "0.25.1" } rust-embed = { version = "8.9.0" } rustc-hash = { version = "2.1.1" } -s3s = { version = "0.13.0-alpha", features = ["minio"], git = "https://github.com/s3s-project/s3s.git", branch = "main" } +s3s = { version = "0.13.0-alpha.1", features = ["minio"] } serial_test = "3.3.1" shadow-rs = { version = "1.5.0", default-features = false } siphasher = "1.0.1" diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index 59df88de..8f21ff57 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -873,6 +873,8 @@ impl S3 for FS { sse_customer_key_md5, metadata_directive, metadata, + copy_source_if_match, + copy_source_if_none_match, .. } = req.input.clone(); let (src_bucket, src_key, version_id) = match copy_source { @@ -948,6 +950,30 @@ impl S3 for FS { let mut src_info = gr.object_info.clone(); + // Validate copy source conditions + if let Some(if_match) = copy_source_if_match { + if let Some(ref etag) = src_info.etag { + if let Some(strong_etag) = if_match.into_etag() { + if ETag::Strong(etag.clone()) != strong_etag { + return Err(s3_error!(PreconditionFailed)); + } + } else { + // Weak ETag or Any (*) in If-Match should fail per RFC 9110 + return Err(s3_error!(PreconditionFailed)); + } + } else { + return Err(s3_error!(PreconditionFailed)); + } + } + + if let Some(if_none_match) = copy_source_if_none_match + && let Some(ref etag) = src_info.etag + && let Some(strong_etag) = if_none_match.into_etag() + && ETag::Strong(etag.clone()) == strong_etag + { + return Err(s3_error!(PreconditionFailed)); + } + if cp_src_dst_same { src_info.metadata_only = true; } From df502f2ac65f45ffe570a5d48ebd6de48a44f33c Mon Sep 17 00:00:00 2001 From: houseme Date: Thu, 15 Jan 2026 00:57:04 +0800 Subject: [PATCH 15/22] chore(deps): bump multiple dependencies (#1510) --- Cargo.lock | 8452 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 24 +- 2 files changed, 4164 insertions(+), 4312 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25d4df93..5fab6754 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli", + "gimli", ] [[package]] @@ -23,8 +23,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common 0.1.7", - "generic-array 0.14.7", + "crypto-common 0.1.7", + "generic-array 0.14.7", ] [[package]] @@ -33,8 +33,8 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67a578e7d4edaef88aeb9cdd81556f4a62266ce26601317c006a79e8bc58b5af" dependencies = [ - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", ] [[package]] @@ -43,9 +43,9 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -54,10 +54,10 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd9e1c818b25efb32214df89b0ec22f01aa397aaeb718d1022bf0635a3bfd1a8" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "zeroize", ] [[package]] @@ -66,12 +66,12 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" dependencies = [ - "aead 0.5.2", - "aes 0.8.4", - "cipher 0.4.4", - "ctr 0.9.2", - "ghash 0.5.1", - "subtle", + "aead 0.5.2", + "aes 0.8.4", + "cipher 0.4.4", + "ctr 0.9.2", + "ghash 0.5.1", + "subtle", ] [[package]] @@ -80,13 +80,13 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f5c07f414d7dc0755870f84c7900425360288d24e0eae4836f9dee19a30fa5f" dependencies = [ - "aead 0.6.0-rc.5", - "aes 0.9.0-rc.2", - "cipher 0.5.0-rc.3", - "ctr 0.10.0-rc.2", - "ghash 0.6.0-rc.3", - "subtle", - "zeroize", + "aead 0.6.0-rc.5", + "aes 0.9.0-rc.2", + "cipher 0.5.0-rc.3", + "ctr 0.10.0-rc.2", + "ghash 0.6.0-rc.3", + "subtle", + "zeroize", ] [[package]] @@ -95,12 +95,12 @@ version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ - "cfg-if", - "const-random", - "getrandom 0.3.4", - "once_cell", - "version_check", - "zerocopy", + "cfg-if", + "const-random", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", ] [[package]] @@ -109,7 +109,7 @@ version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -118,7 +118,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" dependencies = [ - "equator", + "equator", ] [[package]] @@ -133,7 +133,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" dependencies = [ - "alloc-no-stdlib", + "alloc-no-stdlib", ] [[package]] @@ -142,7 +142,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" dependencies = [ - "cc", + "cc", ] [[package]] @@ -157,7 +157,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" dependencies = [ - "libc", + "libc", ] [[package]] @@ -172,13 +172,13 @@ version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", ] [[package]] @@ -193,7 +193,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ - "utf8parse", + "utf8parse", ] [[package]] @@ -202,7 +202,7 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -211,9 +211,9 @@ version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.61.2", + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", ] [[package]] @@ -228,16 +228,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" dependencies = [ - "object 0.32.2", -] - -[[package]] -name = "arbitrary" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" -dependencies = [ - "derive_arbitrary", + "object 0.32.2", ] [[package]] @@ -246,7 +237,7 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e" dependencies = [ - "rustversion", + "rustversion", ] [[package]] @@ -255,10 +246,10 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" dependencies = [ - "base64ct", - "blake2 0.10.6", - "cpufeatures", - "password-hash 0.5.0", + "base64ct", + "blake2 0.10.6", + "cpufeatures", + "password-hash 0.5.0", ] [[package]] @@ -267,10 +258,10 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26e88a084142953a0415c47ddf4081eddf9a6d310012bbe92e9827d03e447f0" dependencies = [ - "base64ct", - "blake2 0.11.0-rc.3", - "cpufeatures", - "password-hash 0.6.0-rc.8", + "base64ct", + "blake2 0.11.0-rc.3", + "cpufeatures", + "password-hash 0.6.0-rc.8", ] [[package]] @@ -291,19 +282,19 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e" dependencies = [ - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-csv", - "arrow-data", - "arrow-ipc", - "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema", - "arrow-select", - "arrow-string", + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-csv", + "arrow-data", + "arrow-ipc", + "arrow-json", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", ] [[package]] @@ -312,12 +303,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "num-traits", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "num-traits", ] [[package]] @@ -326,17 +317,17 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c" dependencies = [ - "ahash", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "chrono-tz", - "half", - "hashbrown 0.16.1", - "num-complex", - "num-integer", - "num-traits", + "ahash", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "chrono-tz", + "half", + "hashbrown 0.16.1", + "num-complex", + "num-integer", + "num-traits", ] [[package]] @@ -345,10 +336,10 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56" dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", + "bytes", + "half", + "num-bigint", + "num-traits", ] [[package]] @@ -357,20 +348,20 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-ord", - "arrow-schema", - "arrow-select", - "atoi", - "base64", - "chrono", - "comfy-table", - "half", - "lexical-core", - "num-traits", - "ryu", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-ord", + "arrow-schema", + "arrow-select", + "atoi", + "base64", + "chrono", + "comfy-table", + "half", + "lexical-core", + "num-traits", + "ryu", ] [[package]] @@ -379,13 +370,13 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e4100b729fe656f2e4fb32bc5884f14acf9118d4ad532b7b33c1132e4dce896" dependencies = [ - "arrow-array", - "arrow-cast", - "arrow-schema", - "chrono", - "csv", - "csv-core", - "regex", + "arrow-array", + "arrow-cast", + "arrow-schema", + "chrono", + "csv", + "csv-core", + "regex", ] [[package]] @@ -394,11 +385,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597" dependencies = [ - "arrow-buffer", - "arrow-schema", - "half", - "num-integer", - "num-traits", + "arrow-buffer", + "arrow-schema", + "half", + "num-integer", + "num-traits", ] [[package]] @@ -407,14 +398,14 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3ca63edd2073fcb42ba112f8ae165df1de935627ead6e203d07c99445f2081" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "flatbuffers", - "lz4_flex", - "zstd", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "flatbuffers", + "lz4_flex", + "zstd", ] [[package]] @@ -423,22 +414,22 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a36b2332559d3310ebe3e173f75b29989b4412df4029a26a30cc3f7da0869297" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-schema", - "chrono", - "half", - "indexmap 2.13.0", - "itoa", - "lexical-core", - "memchr", - "num-traits", - "ryu", - "serde_core", - "serde_json", - "simdutf8", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "indexmap 2.13.0", + "itoa", + "lexical-core", + "memchr", + "num-traits", + "ryu", + "serde_core", + "serde_json", + "simdutf8", ] [[package]] @@ -447,11 +438,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", ] [[package]] @@ -460,11 +451,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "half", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", ] [[package]] @@ -473,8 +464,8 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c" dependencies = [ - "serde_core", - "serde_json", + "serde_core", + "serde_json", ] [[package]] @@ -483,12 +474,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "num-traits", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num-traits", ] [[package]] @@ -497,15 +488,15 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "memchr", - "num-traits", - "regex", - "regex-syntax", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num-traits", + "regex", + "regex-syntax", ] [[package]] @@ -514,14 +505,14 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", - "displaydoc", - "nom 7.1.3", - "num-traits", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs-derive", + "asn1-rs-impl", + "displaydoc", + "nom 7.1.3", + "num-traits", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -530,10 +521,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -542,9 +533,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -553,14 +544,14 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5" dependencies = [ - "filetime", - "futures-core", - "libc", - "portable-atomic", - "rustc-hash", - "tokio", - "tokio-stream", - "xattr", + "filetime", + "futures-core", + "libc", + "portable-atomic", + "rustc-hash", + "tokio", + "tokio-stream", + "xattr", ] [[package]] @@ -569,28 +560,22 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" dependencies = [ - "concurrent-queue", - "event-listener-strategy", - "futures-core", - "pin-project-lite", + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", ] [[package]] name = "async-compression" -version = "0.4.19" +version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c" +checksum = "d10e4f991a553474232bc0a31799f6d24b034a84c0971d80d2e2f78b2e576e40" dependencies = [ - "brotli 7.0.0", - "bzip2 0.5.2", - "flate2", - "futures-core", - "memchr", - "pin-project-lite", - "tokio", - "xz2", - "zstd", - "zstd-safe", + "compression-codecs", + "compression-core", + "pin-project-lite", + "tokio", ] [[package]] @@ -599,9 +584,9 @@ version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ - "event-listener", - "event-listener-strategy", - "pin-project-lite", + "event-listener", + "event-listener-strategy", + "pin-project-lite", ] [[package]] @@ -610,9 +595,9 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -621,9 +606,9 @@ version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -632,7 +617,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -647,9 +632,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99e1aca718ea7b89985790c94aad72d77533063fe00bc497bb79a7c2dae6a661" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -664,28 +649,28 @@ version = "1.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sdk-sso", - "aws-sdk-ssooidc", - "aws-sdk-sts", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "hex", - "http 1.4.0", - "ring", - "time", - "tokio", - "tracing", - "url", - "zeroize", + "aws-credential-types", + "aws-runtime", + "aws-sdk-sso", + "aws-sdk-ssooidc", + "aws-sdk-sts", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "hex", + "http 1.4.0", + "ring", + "time", + "tokio", + "tracing", + "url", + "zeroize", ] [[package]] @@ -694,10 +679,10 @@ version = "1.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "zeroize", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "zeroize", ] [[package]] @@ -706,9 +691,9 @@ version = "1.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" dependencies = [ - "aws-lc-sys", - "untrusted 0.7.1", - "zeroize", + "aws-lc-sys", + "untrusted 0.7.1", + "zeroize", ] [[package]] @@ -717,10 +702,10 @@ version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" dependencies = [ - "cc", - "cmake", - "dunce", - "fs_extra", + "cc", + "cmake", + "dunce", + "fs_extra", ] [[package]] @@ -729,23 +714,23 @@ version = "1.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d81b5b2898f6798ad58f484856768bca817e3cd9de0974c24ae0f1113fe88f1b" dependencies = [ - "aws-credential-types", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "tracing", - "uuid", + "aws-credential-types", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "tracing", + "uuid", ] [[package]] @@ -754,32 +739,32 @@ version = "1.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d65fddc3844f902dfe1864acb8494db5f9342015ee3ab7890270d36fbd2e01c" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-checksums", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "bytes", - "fastrand", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "lru", - "percent-encoding", - "regex-lite", - "sha2 0.10.9", - "tracing", - "url", + "aws-credential-types", + "aws-runtime", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-checksums", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "bytes", + "fastrand", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "lru", + "percent-encoding", + "regex-lite", + "sha2 0.10.9", + "tracing", + "url", ] [[package]] @@ -788,20 +773,20 @@ version = "1.91.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -810,20 +795,20 @@ version = "1.93.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -832,21 +817,21 @@ version = "1.95.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-query", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-query", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -855,26 +840,26 @@ version = "1.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c" dependencies = [ - "aws-credential-types", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "crypto-bigint 0.5.5", - "form_urlencoded", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "p256 0.11.1", - "percent-encoding", - "ring", - "sha2 0.10.9", - "subtle", - "time", - "tracing", - "zeroize", + "aws-credential-types", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "crypto-bigint 0.5.5", + "form_urlencoded", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "p256 0.11.1", + "percent-encoding", + "ring", + "sha2 0.10.9", + "subtle", + "time", + "tracing", + "zeroize", ] [[package]] @@ -883,9 +868,9 @@ version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c" dependencies = [ - "futures-util", - "pin-project-lite", - "tokio", + "futures-util", + "pin-project-lite", + "tokio", ] [[package]] @@ -894,18 +879,18 @@ version = "0.63.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87294a084b43d649d967efe58aa1f9e0adc260e13a6938eb904c0ae9b45824ae" dependencies = [ - "aws-smithy-http", - "aws-smithy-types", - "bytes", - "crc-fast", - "hex", - "http 0.2.12", - "http-body 0.4.6", - "md-5 0.10.6", - "pin-project-lite", - "sha1 0.10.6", - "sha2 0.10.9", - "tracing", + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "crc-fast", + "hex", + "http 0.2.12", + "http-body 0.4.6", + "md-5 0.10.6", + "pin-project-lite", + "sha1 0.10.6", + "sha2 0.10.9", + "tracing", ] [[package]] @@ -914,9 +899,9 @@ version = "0.60.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc12f8b310e38cad85cf3bef45ad236f470717393c613266ce0a89512286b650" dependencies = [ - "aws-smithy-types", - "bytes", - "crc32fast", + "aws-smithy-types", + "bytes", + "crc32fast", ] [[package]] @@ -925,20 +910,20 @@ version = "0.62.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b" dependencies = [ - "aws-smithy-eventstream", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "bytes-utils", - "futures-core", - "futures-util", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "pin-utils", - "tracing", + "aws-smithy-eventstream", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "bytes-utils", + "futures-core", + "futures-util", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tracing", ] [[package]] @@ -947,22 +932,22 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "h2", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower", - "tracing", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "h2", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower", + "tracing", ] [[package]] @@ -971,7 +956,7 @@ version = "0.61.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551" dependencies = [ - "aws-smithy-types", + "aws-smithy-types", ] [[package]] @@ -980,7 +965,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17f616c3f2260612fe44cede278bafa18e73e6479c4e393e2c4518cf2a9a228a" dependencies = [ - "aws-smithy-runtime-api", + "aws-smithy-runtime-api", ] [[package]] @@ -989,8 +974,8 @@ version = "0.60.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d" dependencies = [ - "aws-smithy-types", - "urlencoding", + "aws-smithy-types", + "urlencoding", ] [[package]] @@ -999,22 +984,22 @@ version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a392db6c583ea4a912538afb86b7be7c5d8887d91604f50eb55c262ee1b4a5f5" dependencies = [ - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-http-client", - "aws-smithy-observability", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "fastrand", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "pin-project-lite", - "pin-utils", - "tokio", - "tracing", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-http-client", + "aws-smithy-observability", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "fastrand", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "pin-project-lite", + "pin-utils", + "tokio", + "tracing", ] [[package]] @@ -1023,15 +1008,15 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab0d43d899f9e508300e587bf582ba54c27a452dd0a9ea294690669138ae14a2" dependencies = [ - "aws-smithy-async", - "aws-smithy-types", - "bytes", - "http 0.2.12", - "http 1.4.0", - "pin-project-lite", - "tokio", - "tracing", - "zeroize", + "aws-smithy-async", + "aws-smithy-types", + "bytes", + "http 0.2.12", + "http 1.4.0", + "pin-project-lite", + "tokio", + "tracing", + "zeroize", ] [[package]] @@ -1040,24 +1025,24 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "905cb13a9895626d49cf2ced759b062d913834c7482c38e49557eac4e6193f01" dependencies = [ - "base64-simd", - "bytes", - "bytes-utils", - "futures-core", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "http-body-util", - "itoa", - "num-integer", - "pin-project-lite", - "pin-utils", - "ryu", - "serde", - "time", - "tokio", - "tokio-util", + "base64-simd", + "bytes", + "bytes-utils", + "futures-core", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "http-body-util", + "itoa", + "num-integer", + "pin-project-lite", + "pin-utils", + "ryu", + "serde", + "time", + "tokio", + "tokio-util", ] [[package]] @@ -1066,7 +1051,7 @@ version = "0.60.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57" dependencies = [ - "xmlparser", + "xmlparser", ] [[package]] @@ -1075,12 +1060,12 @@ version = "1.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164" dependencies = [ - "aws-credential-types", - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "rustc_version", - "tracing", + "aws-credential-types", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "rustc_version", + "tracing", ] [[package]] @@ -1089,31 +1074,31 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ - "axum-core", - "bytes", - "form_urlencoded", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "itoa", - "matchit 0.8.4", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "serde_core", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tower", - "tower-layer", - "tower-service", - "tracing", + "axum-core", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit 0.8.4", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde_core", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1122,17 +1107,17 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "sync_wrapper", - "tower-layer", - "tower-service", - "tracing", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1141,20 +1126,20 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1df331683d982a0b9492b38127151e6453639cd34926eb9c07d4cd8c6d22bfc" dependencies = [ - "arc-swap", - "bytes", - "either", - "fs-err", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", + "arc-swap", + "bytes", + "either", + "fs-err", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", ] [[package]] @@ -1163,13 +1148,13 @@ version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object 0.37.3", - "rustc-demangle", - "windows-link 0.2.1", + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object 0.37.3", + "rustc-demangle", + "windows-link 0.2.1", ] [[package]] @@ -1202,8 +1187,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -1218,9 +1203,9 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2" dependencies = [ - "blowfish", - "pbkdf2 0.12.2", - "sha2 0.10.9", + "blowfish", + "pbkdf2 0.12.2", + "sha2 0.10.9", ] [[package]] @@ -1229,11 +1214,11 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" dependencies = [ - "autocfg", - "libm", - "num-bigint", - "num-integer", - "num-traits", + "autocfg", + "libm", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -1242,7 +1227,7 @@ version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1257,7 +1242,7 @@ version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1266,7 +1251,7 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -1275,7 +1260,7 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "679065eb2b85a078ace42411e657bef3a6afe93a40d1b9cb04e39ca303cc3f36" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -1284,14 +1269,14 @@ version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if", - "constant_time_eq 0.4.2", - "cpufeatures", - "memmap2", - "rayon-core", + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq 0.4.2", + "cpufeatures", + "memmap2", + "rayon-core", ] [[package]] @@ -1300,7 +1285,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1309,8 +1294,8 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f" dependencies = [ - "hybrid-array", - "zeroize", + "hybrid-array", + "zeroize", ] [[package]] @@ -1319,7 +1304,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1328,44 +1313,8 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" dependencies = [ - "byteorder", - "cipher 0.4.4", -] - -[[package]] -name = "bon" -version = "3.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234655ec178edd82b891e262ea7cf71f6584bcd09eff94db786be23f1821825c" -dependencies = [ - "bon-macros", - "rustversion", -] - -[[package]] -name = "bon-macros" -version = "3.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ec27229c38ed0eb3c0feee3d2c1d6a4379ae44f418a29a658890e062d8f365" -dependencies = [ - "darling 0.23.0", - "ident_case", - "prettyplease", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.114", -] - -[[package]] -name = "brotli" -version = "7.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 4.0.3", + "byteorder", + "cipher 0.4.4", ] [[package]] @@ -1374,19 +1323,9 @@ version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor 5.0.0", -] - -[[package]] -name = "brotli-decompressor" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", ] [[package]] @@ -1395,8 +1334,8 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1423,7 +1362,7 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1432,8 +1371,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" dependencies = [ - "bytes", - "either", + "bytes", + "either", ] [[package]] @@ -1448,16 +1387,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289" dependencies = [ - "bytes", -] - -[[package]] -name = "bzip2" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" -dependencies = [ - "bzip2-sys", + "bytes", ] [[package]] @@ -1466,17 +1396,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" dependencies = [ - "libbz2-rs-sys", -] - -[[package]] -name = "bzip2-sys" -version = "0.1.13+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" -dependencies = [ - "cc", - "pkg-config", + "libbz2-rs-sys", ] [[package]] @@ -1485,7 +1405,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1494,8 +1414,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -1504,12 +1424,12 @@ version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9" dependencies = [ - "camino", - "cargo-platform", - "semver", - "serde", - "serde_json", - "thiserror 2.0.17", + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.17", ] [[package]] @@ -1524,7 +1444,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -1533,10 +1453,10 @@ version = "1.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3" dependencies = [ - "find-msvc-tools", - "jobserver", - "libc", - "shlex", + "find-msvc-tools", + "jobserver", + "libc", + "shlex", ] [[package]] @@ -1557,9 +1477,9 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -1568,11 +1488,11 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f895fb33c1ad22da4bc79d37c0bddff8aee2ba4575705345eb73b8ffbc386074" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "rand_core 0.10.0-rc-3", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "rand_core 0.10.0-rc-3", + "zeroize", ] [[package]] @@ -1581,10 +1501,10 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c662d31454533832974f2b2b3fcbd552ed3cde94c95e614a5039d297dd97076f" dependencies = [ - "aead 0.6.0-rc.5", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "poly1305 0.9.0-rc.3", + "aead 0.6.0-rc.5", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "poly1305 0.9.0-rc.3", ] [[package]] @@ -1593,12 +1513,12 @@ version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" dependencies = [ - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "wasm-bindgen", - "windows-link 0.2.1", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link 0.2.1", ] [[package]] @@ -1607,8 +1527,8 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" dependencies = [ - "chrono", - "phf 0.12.1", + "chrono", + "phf 0.12.1", ] [[package]] @@ -1617,9 +1537,9 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", + "ciborium-io", + "ciborium-ll", + "serde", ] [[package]] @@ -1634,8 +1554,8 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ - "ciborium-io", - "half", + "ciborium-io", + "half", ] [[package]] @@ -1644,8 +1564,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common 0.1.7", - "inout 0.1.4", + "crypto-common 0.1.7", + "inout 0.1.4", ] [[package]] @@ -1654,10 +1574,10 @@ version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ - "block-buffer 0.11.0", - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", - "zeroize", + "block-buffer 0.11.0", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", + "zeroize", ] [[package]] @@ -1666,8 +1586,8 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" dependencies = [ - "clap_builder", - "clap_derive", + "clap_builder", + "clap_derive", ] [[package]] @@ -1676,10 +1596,10 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim 0.11.1", + "anstream", + "anstyle", + "clap_lex", + "strsim 0.11.1", ] [[package]] @@ -1688,17 +1608,17 @@ version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] name = "clap_lex" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" +checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[package]] name = "cmake" @@ -1706,7 +1626,7 @@ version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" dependencies = [ - "cc", + "cc", ] [[package]] @@ -1723,21 +1643,43 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "comfy-table" -version = "7.2.1" +version = "7.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" +checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" dependencies = [ - "unicode-segmentation", - "unicode-width", + "unicode-segmentation", + "unicode-width", ] +[[package]] +name = "compression-codecs" +version = "0.4.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a" +dependencies = [ + "brotli", + "bzip2", + "compression-core", + "flate2", + "liblzma", + "memchr", + "zstd", + "zstd-safe", +] + +[[package]] +name = "compression-core" +version = "0.4.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" + [[package]] name = "concurrent-queue" version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1758,7 +1700,7 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" dependencies = [ - "const-random-macro", + "const-random-macro", ] [[package]] @@ -1767,9 +1709,9 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.17", - "once_cell", - "tiny-keccak", + "getrandom 0.2.17", + "once_cell", + "tiny-keccak", ] [[package]] @@ -1778,7 +1720,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93e19f68b180ebff43d6d42005c4b5f046c65fcac28369ba8b3beaad633f9ec0" dependencies = [ - "const-str-proc-macro", + "const-str-proc-macro", ] [[package]] @@ -1787,9 +1729,9 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d3e0f24ee268386bd3ab4e04fc60df9a818ad801b5ffe592f388a6acc5053fb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1798,7 +1740,7 @@ version = "0.2.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" dependencies = [ - "const_format_proc_macros", + "const_format_proc_macros", ] [[package]] @@ -1807,9 +1749,9 @@ version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" dependencies = [ - "proc-macro2", - "quote", - "unicode-xid", + "proc-macro2", + "quote", + "unicode-xid", ] [[package]] @@ -1830,7 +1772,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" dependencies = [ - "unicode-segmentation", + "unicode-segmentation", ] [[package]] @@ -1839,8 +1781,8 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1849,8 +1791,8 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1865,9 +1807,9 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0940496e5c83c54f3b753d5317daec82e8edac71c33aaa1f666d76f518de2444" dependencies = [ - "hax-lib", - "pastey 0.1.1", - "rand 0.9.2", + "hax-lib", + "pastey 0.1.1", + "rand 0.9.2", ] [[package]] @@ -1876,7 +1818,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1885,7 +1827,7 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ - "libc", + "libc", ] [[package]] @@ -1894,7 +1836,7 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" dependencies = [ - "crc-catalog", + "crc-catalog", ] [[package]] @@ -1909,11 +1851,11 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ddc2d09feefeee8bd78101665bd8645637828fa9317f9f292496dbbd8c65ff3" dependencies = [ - "crc", - "digest 0.10.7", - "rand 0.9.2", - "regex", - "rustversion", + "crc", + "digest 0.10.7", + "rand 0.9.2", + "regex", + "rustversion", ] [[package]] @@ -1922,7 +1864,7 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" dependencies = [ - "rustc_version", + "rustc_version", ] [[package]] @@ -1931,7 +1873,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1940,23 +1882,23 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf" dependencies = [ - "alloca", - "anes", - "cast", - "ciborium", - "clap", - "criterion-plot", - "itertools 0.13.0", - "num-traits", - "oorandom", - "page_size", - "plotters", - "rayon", - "regex", - "serde", - "serde_json", - "tinytemplate", - "walkdir", + "alloca", + "anes", + "cast", + "ciborium", + "clap", + "criterion-plot", + "itertools 0.13.0", + "num-traits", + "oorandom", + "page_size", + "plotters", + "rayon", + "regex", + "serde", + "serde_json", + "tinytemplate", + "walkdir", ] [[package]] @@ -1965,8 +1907,8 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4" dependencies = [ - "cast", - "itertools 0.13.0", + "cast", + "itertools 0.13.0", ] [[package]] @@ -1975,7 +1917,7 @@ version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1984,8 +1926,8 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] @@ -1994,7 +1936,7 @@ version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -2003,7 +1945,7 @@ version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -2024,10 +1966,10 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -2036,23 +1978,23 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] name = "crypto-bigint" -version = "0.7.0-rc.15" +version = "0.7.0-rc.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a9e36ac79ac44866b74e08a0b4925f97b984e3fff17680d2c6fbce8317ab0f6" +checksum = "37387ceb32048ff590f2cbd24d8b05fffe63c3f69a5cfa089d4f722ca4385a19" dependencies = [ - "ctutils", - "num-traits", - "rand_core 0.10.0-rc-3", - "serdect", - "zeroize", + "ctutils", + "num-traits", + "rand_core 0.10.0-rc-3", + "serdect", + "zeroize", ] [[package]] @@ -2061,8 +2003,8 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ - "generic-array 0.14.7", - "typenum", + "generic-array 0.14.7", + "typenum", ] [[package]] @@ -2071,20 +2013,20 @@ version = "0.2.0-rc.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41b8986f836d4aeb30ccf4c9d3bd562fd716074cfd7fc4a2948359fbd21ed809" dependencies = [ - "getrandom 0.4.0-rc.0", - "hybrid-array", - "rand_core 0.10.0-rc-3", + "getrandom 0.4.0-rc.0", + "hybrid-array", + "rand_core 0.10.0-rc-3", ] [[package]] name = "crypto-primes" -version = "0.7.0-pre.5" +version = "0.7.0-pre.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0b07a7a616370e8b6efca0c6a25e5f4c6d02fde11f3d570e4af64d8ed7e2e9" +checksum = "e79c98a281f9441200b24e3151407a629bfbe720399186e50516da939195e482" dependencies = [ - "crypto-bigint 0.7.0-rc.15", - "libm", - "rand_core 0.10.0-rc-3", + "crypto-bigint 0.7.0-rc.18", + "libm", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2093,10 +2035,10 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde_core", + "csv-core", + "itoa", + "ryu", + "serde_core", ] [[package]] @@ -2105,7 +2047,7 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -2114,7 +2056,7 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -2123,7 +2065,7 @@ version = "0.10.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0ec605a95e78815a4c4b8040217d56d5a1ab37043851ee9e7e65b89afa00e3" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -2132,7 +2074,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c67c81499f542d1dd38c6a2a2fe825f4dd4bca5162965dd2eea0c8119873d3c" dependencies = [ - "cmov", + "cmov", ] [[package]] @@ -2141,29 +2083,29 @@ version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.10.7", - "fiat-crypto 0.2.9", - "rustc_version", - "subtle", - "zeroize", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.10.7", + "fiat-crypto 0.2.9", + "rustc_version", + "subtle", + "zeroize", ] [[package]] name = "curve25519-dalek" -version = "5.0.0-pre.2" +version = "5.0.0-pre.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d8cfa313d59919eda35b420bd37db85bf58d6754d6f128b9949932b0c0fcce7" +checksum = "6ae8b2fe5e4995d7fd08a7604e794dc569a65ed19659f5939d529813ed816d38" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.11.0-rc.5", - "fiat-crypto 0.3.0", - "rustc_version", - "subtle", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.11.0-rc.5", + "fiat-crypto 0.3.0", + "rustc_version", + "subtle", ] [[package]] @@ -2172,9 +2114,9 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -2183,8 +2125,8 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", + "darling_core 0.14.4", + "darling_macro 0.14.4", ] [[package]] @@ -2193,8 +2135,8 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core 0.20.11", - "darling_macro 0.20.11", + "darling_core 0.20.11", + "darling_macro 0.20.11", ] [[package]] @@ -2203,8 +2145,8 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" dependencies = [ - "darling_core 0.21.3", - "darling_macro 0.21.3", + "darling_core 0.21.3", + "darling_macro 0.21.3", ] [[package]] @@ -2213,8 +2155,8 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" dependencies = [ - "darling_core 0.23.0", - "darling_macro 0.23.0", + "darling_core 0.23.0", + "darling_macro 0.23.0", ] [[package]] @@ -2223,12 +2165,12 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 1.0.109", ] [[package]] @@ -2237,12 +2179,12 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2251,12 +2193,12 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2265,11 +2207,11 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" dependencies = [ - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2278,9 +2220,9 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" dependencies = [ - "darling_core 0.14.4", - "quote", - "syn 1.0.109", + "darling_core 0.14.4", + "quote", + "syn 1.0.109", ] [[package]] @@ -2289,9 +2231,9 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core 0.20.11", - "quote", - "syn 2.0.114", + "darling_core 0.20.11", + "quote", + "syn 2.0.114", ] [[package]] @@ -2300,9 +2242,9 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" dependencies = [ - "darling_core 0.21.3", - "quote", - "syn 2.0.114", + "darling_core 0.21.3", + "quote", + "syn 2.0.114", ] [[package]] @@ -2311,9 +2253,9 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" dependencies = [ - "darling_core 0.23.0", - "quote", - "syn 2.0.114", + "darling_core 0.23.0", + "quote", + "syn 2.0.114", ] [[package]] @@ -2322,12 +2264,12 @@ version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ - "cfg-if", - "crossbeam-utils", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core", + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", ] [[package]] @@ -2338,650 +2280,655 @@ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" [[package]] name = "datafusion" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ba7cb113e9c0bedf9e9765926031e132fa05a1b09ba6e93a6d1a4d7044457b8" +checksum = "f02e9a7e70f214e5282db11c8effba173f4e25a00977e520c6b811817e3a082b" dependencies = [ - "arrow", - "arrow-schema", - "async-trait", - "bytes", - "bzip2 0.6.1", - "chrono", - "datafusion-catalog", - "datafusion-catalog-listing", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-datasource-arrow", - "datafusion-datasource-csv", - "datafusion-datasource-json", - "datafusion-datasource-parquet", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-nested", - "datafusion-functions-table", - "datafusion-functions-window", - "datafusion-optimizer", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-optimizer", - "datafusion-physical-plan", - "datafusion-session", - "datafusion-sql", - "flate2", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "rand 0.9.2", - "regex", - "rstest", - "sqlparser", - "tempfile", - "tokio", - "url", - "uuid", - "xz2", - "zstd", + "arrow", + "arrow-schema", + "async-trait", + "bytes", + "bzip2", + "chrono", + "datafusion-catalog", + "datafusion-catalog-listing", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-datasource-arrow", + "datafusion-datasource-csv", + "datafusion-datasource-json", + "datafusion-datasource-parquet", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-nested", + "datafusion-functions-table", + "datafusion-functions-window", + "datafusion-optimizer", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-optimizer", + "datafusion-physical-plan", + "datafusion-session", + "datafusion-sql", + "flate2", + "futures", + "itertools 0.14.0", + "liblzma", + "log", + "object_store", + "parking_lot", + "parquet", + "rand 0.9.2", + "regex", + "sqlparser", + "tempfile", + "tokio", + "url", + "uuid", + "zstd", ] [[package]] name = "datafusion-catalog" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a3a799f914a59b1ea343906a0486f17061f39509af74e874a866428951130d" +checksum = "f3e91b2603f906cf8cb8be84ba4e34f9d8fe6dbdfdd6916d55f22317074d1fdf" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "tokio", + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "tokio", ] [[package]] name = "datafusion-catalog-listing" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db1b113c80d7a0febcd901476a57aef378e717c54517a163ed51417d87621b0" +checksum = "919d20cdebddee4d8dca651aa0291a44c8104824d1ac288996a325c319ce31ba" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "tokio", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "futures", + "itertools 0.14.0", + "log", + "object_store", ] [[package]] name = "datafusion-common" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c10f7659e96127d25e8366be7c8be4109595d6a2c3eac70421f380a7006a1b0" +checksum = "31ff2c4e95be40ad954de93862167b165a6fb49248bb882dea8aef4f888bc767" dependencies = [ - "ahash", - "arrow", - "arrow-ipc", - "chrono", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "libc", - "log", - "object_store", - "parquet", - "paste", - "recursive", - "sqlparser", - "tokio", - "web-time", + "ahash", + "arrow", + "arrow-ipc", + "chrono", + "half", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "libc", + "log", + "object_store", + "parquet", + "paste", + "recursive", + "sqlparser", + "tokio", + "web-time", ] [[package]] name = "datafusion-common-runtime" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b92065bbc6532c6651e2f7dd30b55cba0c7a14f860c7e1d15f165c41a1868d95" +checksum = "0dd9f820fe58c2600b6c33a14432228dbaaf233b96c83a1fd61f16d073d5c3c5" dependencies = [ - "futures", - "log", - "tokio", + "futures", + "log", + "tokio", ] [[package]] name = "datafusion-datasource" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fde13794244bc7581cd82f6fff217068ed79cdc344cafe4ab2c3a1c3510b38d6" +checksum = "86b32b7b12645805d20b70aba6ba846cd262d7b073f7f617640c3294af108d44" dependencies = [ - "arrow", - "async-compression", - "async-trait", - "bytes", - "bzip2 0.6.1", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "flate2", - "futures", - "glob", - "itertools 0.14.0", - "log", - "object_store", - "rand 0.9.2", - "tokio", - "tokio-util", - "url", - "xz2", - "zstd", + "arrow", + "async-compression", + "async-trait", + "bytes", + "bzip2", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "flate2", + "futures", + "glob", + "itertools 0.14.0", + "liblzma", + "log", + "object_store", + "rand 0.9.2", + "tokio", + "tokio-util", + "url", + "zstd", ] [[package]] name = "datafusion-datasource-arrow" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "804fa9b4ecf3157982021770617200ef7c1b2979d57bec9044748314775a9aea" +checksum = "597695c8ebb723ee927b286139d43a3fbed6de7ad9210bd1a9fed5c721ac6fb1" dependencies = [ - "arrow", - "arrow-ipc", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "object_store", - "tokio", + "arrow", + "arrow-ipc", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "object_store", + "tokio", ] [[package]] name = "datafusion-datasource-csv" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61a1641a40b259bab38131c5e6f48fac0717bedb7dc93690e604142a849e0568" +checksum = "6bb493d07d8da6d00a89ea9cc3e74a56795076d9faed5ac30284bd9ef37929e9" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "regex", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "regex", + "tokio", ] [[package]] name = "datafusion-datasource-json" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adeacdb00c1d37271176f8fb6a1d8ce096baba16ea7a4b2671840c5c9c64fe85" +checksum = "5e9806521c4d3632f53b9a664041813c267c670232efa1452ef29faee71c3749" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "tokio", ] [[package]] name = "datafusion-datasource-parquet" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43d0b60ffd66f28bfb026565d62b0a6cbc416da09814766a3797bba7d85a3cd9" +checksum = "f6a3ccd48d5034f8461f522114d0e46dfb3a9f0ce01a4d53a721024ace95d60d" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "tokio", ] [[package]] name = "datafusion-doc" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b99e13947667b36ad713549237362afb054b2d8f8cc447751e23ec61202db07" +checksum = "ff69a18418e9878d4840f35e2ad7f2a6386beedf192e9f065e628a7295ff5fbf" [[package]] name = "datafusion-execution" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63695643190679037bc946ad46a263b62016931547bf119859c511f7ff2f5178" +checksum = "ccbc5e469b35d87c0b115327be83d68356ef9154684d32566315b5c071577e23" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-expr", - "futures", - "log", - "object_store", - "parking_lot", - "rand 0.9.2", - "tempfile", - "url", + "arrow", + "async-trait", + "chrono", + "dashmap", + "datafusion-common", + "datafusion-expr", + "futures", + "log", + "object_store", + "parking_lot", + "rand 0.9.2", + "tempfile", + "url", ] [[package]] name = "datafusion-expr" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9a4787cbf5feb1ab351f789063398f67654a6df75c4d37d7f637dc96f951a91" +checksum = "81ed3c02a3faf4e09356d5a314471703f440f0a6a14ca6addaf6cfb44ab14de5" dependencies = [ - "arrow", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", - "recursive", - "serde_json", - "sqlparser", + "arrow", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", + "recursive", + "serde_json", + "sqlparser", ] [[package]] name = "datafusion-expr-common" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce2fb1b8c15c9ac45b0863c30b268c69dc9ee7a1ee13ecf5d067738338173dc" +checksum = "1567e60d21c372ca766dc9dde98efabe2b06d98f008d988fed00d93546bf5be7" dependencies = [ - "arrow", - "datafusion-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", + "arrow", + "datafusion-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", ] [[package]] name = "datafusion-functions" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "794a9db7f7b96b3346fc007ff25e994f09b8f0511b4cf7dff651fadfe3ebb28f" +checksum = "c4593538abd95c27eeeb2f86b7ad827cce07d0c474eae9b122f4f9675f8c20ad" dependencies = [ - "arrow", - "arrow-buffer", - "base64", - "blake2 0.10.6", - "blake3", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-macros", - "hex", - "itertools 0.14.0", - "log", - "md-5 0.10.6", - "num-traits", - "rand 0.9.2", - "regex", - "sha2 0.10.9", - "unicode-segmentation", - "uuid", + "arrow", + "arrow-buffer", + "base64", + "blake2 0.10.6", + "blake3", + "chrono", + "chrono-tz", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-macros", + "hex", + "itertools 0.14.0", + "log", + "md-5 0.10.6", + "num-traits", + "rand 0.9.2", + "regex", + "sha2 0.10.9", + "unicode-segmentation", + "uuid", ] [[package]] name = "datafusion-functions-aggregate" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c25210520a9dcf9c2b2cbbce31ebd4131ef5af7fc60ee92b266dc7d159cb305" +checksum = "f81cdf609f43cd26156934fd81beb7215d60dda40a776c2e1b83d73df69434f2" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "half", - "log", - "paste", + "ahash", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "half", + "log", + "paste", ] [[package]] name = "datafusion-functions-aggregate-common" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62f4a66f3b87300bb70f4124b55434d2ae3fe80455f3574701d0348da040b55d" +checksum = "9173f1bcea2ede4a5c23630a48469f06c9db9a408eb5fd140d1ff9a5e0c40ebf" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "datafusion-physical-expr-common", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr-common", + "datafusion-physical-expr-common", ] [[package]] name = "datafusion-functions-nested" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae5c06eed03918dc7fe7a9f082a284050f0e9ecf95d72f57712d1496da03b8c4" +checksum = "1d0b9f32e7735a3b94ae8b9596d89080dc63dd139029a91133be370da099490d" dependencies = [ - "arrow", - "arrow-ord", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr-common", - "itertools 0.14.0", - "log", - "paste", + "arrow", + "arrow-ord", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr-common", + "itertools 0.14.0", + "log", + "paste", ] [[package]] name = "datafusion-functions-table" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db4fed1d71738fbe22e2712d71396db04c25de4111f1ec252b8f4c6d3b25d7f5" +checksum = "57a29e8a6201b3b9fb2be17d88e287c6d427948d64220cd5ea72ced614a1aee5" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", - "paste", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", + "paste", ] [[package]] name = "datafusion-functions-window" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d92206aa5ae21892f1552b4d61758a862a70956e6fd7a95cb85db1de74bc6d1" +checksum = "cd412754964a31c515e5a814e5ce0edaf30f0ea975f3691e800eff115ee76dfb" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-expr", - "datafusion-functions-window-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "log", - "paste", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-expr", + "datafusion-functions-window-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "log", + "paste", ] [[package]] name = "datafusion-functions-window-common" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53ae9bcc39800820d53a22d758b3b8726ff84a5a3e24cecef04ef4e5fdf1c7cc" +checksum = "d49be73a5ac0797398927a543118bd68e58e80bf95ebdabc77336bcd9c38a711" dependencies = [ - "datafusion-common", - "datafusion-physical-expr-common", + "datafusion-common", + "datafusion-physical-expr-common", ] [[package]] name = "datafusion-macros" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1063ad4c9e094b3f798acee16d9a47bd7372d9699be2de21b05c3bd3f34ab848" +checksum = "439ff5489dcac4d34ed7a49a93310c3345018c4469e34726fa471cdda725346d" dependencies = [ - "datafusion-doc", - "quote", - "syn 2.0.114", + "datafusion-doc", + "quote", + "syn 2.0.114", ] [[package]] name = "datafusion-optimizer" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f35f9ec5d08b87fd1893a30c2929f2559c2f9806ca072d8fefca5009dc0f06a" +checksum = "a80bb7de8ff5a9948799bc7749c292eac5c629385cdb582893ef2d80b6e718c4" dependencies = [ - "arrow", - "chrono", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "recursive", - "regex", - "regex-syntax", + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "recursive", + "regex", + "regex-syntax", ] [[package]] name = "datafusion-physical-expr" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c30cc8012e9eedcb48bbe112c6eff4ae5ed19cf3003cb0f505662e88b7014c5d" +checksum = "83480008f66691a0047c5a88990bd76b7c1117dd8a49ca79959e214948b81f0a" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr-common", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "itertools 0.14.0", - "parking_lot", - "paste", - "petgraph", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr-common", + "half", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "itertools 0.14.0", + "parking_lot", + "paste", + "petgraph", + "recursive", + "tokio", ] [[package]] name = "datafusion-physical-expr-adapter" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f9ff2dbd476221b1f67337699eff432781c4e6e1713d2aefdaa517dfbf79768" +checksum = "6b438306446646b359666a658cc29d5494b1e9873bc7a57707689760666fc82c" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-functions", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "itertools 0.14.0", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-functions", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "itertools 0.14.0", ] [[package]] name = "datafusion-physical-expr-common" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90da43e1ec550b172f34c87ec68161986ced70fd05c8d2a2add66eef9c276f03" +checksum = "95b1fbf739038e0b313473588331c5bf79985d1b842b9937c1f10b170665cae1" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "hashbrown 0.14.5", - "itertools 0.14.0", + "ahash", + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr-common", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "itertools 0.14.0", + "parking_lot", ] [[package]] name = "datafusion-physical-optimizer" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce9804f799acd7daef3be7aaffe77c0033768ed8fdbf5fb82fc4c5f2e6bc14e6" +checksum = "fc4cd3a170faa0f1de04bd4365ccfe309056746dd802ed276e8787ccb8e8a0d4" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "itertools 0.14.0", - "recursive", + "arrow", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "itertools 0.14.0", + "recursive", ] [[package]] name = "datafusion-physical-plan" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0acf0ad6b6924c6b1aa7d213b181e012e2d3ec0a64ff5b10ee6282ab0f8532ac" +checksum = "a616a72b4ddf550652b36d5a7c0386eac4accea3ffc6c29a7b16c45f237e9882" dependencies = [ - "ahash", - "arrow", - "arrow-ord", - "arrow-schema", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "futures", - "half", - "hashbrown 0.14.5", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "parking_lot", - "pin-project-lite", - "tokio", + "ahash", + "arrow", + "arrow-ord", + "arrow-schema", + "async-trait", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "futures", + "half", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "parking_lot", + "pin-project-lite", + "tokio", ] [[package]] name = "datafusion-pruning" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac2c2498a1f134a9e11a9f5ed202a2a7d7e9774bd9249295593053ea3be999db" +checksum = "4bf4b50be3ab65650452993eda4baf81edb245fb039b8714476b0f4c8801a527" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-datasource", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "itertools 0.14.0", - "log", + "arrow", + "datafusion-common", + "datafusion-datasource", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "itertools 0.14.0", + "log", ] [[package]] name = "datafusion-session" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f96eebd17555386f459037c65ab73aae8df09f464524c709d6a3134ad4f4776" +checksum = "66e080e2c105284460580c18e751b2133cc306df298181e4349b5b134632811a" dependencies = [ - "async-trait", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", + "async-trait", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", ] [[package]] name = "datafusion-sql" -version = "51.0.0" +version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fc195fe60634b2c6ccfd131b487de46dc30eccae8a3c35a13f136e7f440414f" +checksum = "3dac502db772ff9bffc2ceae321963091982e8d5f5dfcb877e8dc66fc9a093cc" dependencies = [ - "arrow", - "bigdecimal", - "chrono", - "datafusion-common", - "datafusion-expr", - "indexmap 2.13.0", - "log", - "recursive", - "regex", - "sqlparser", + "arrow", + "bigdecimal", + "chrono", + "datafusion-common", + "datafusion-expr", + "indexmap 2.13.0", + "log", + "recursive", + "regex", + "sqlparser", ] [[package]] @@ -2990,7 +2937,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ - "uuid", + "uuid", ] [[package]] @@ -3005,9 +2952,9 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3016,8 +2963,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ - "const-oid 0.9.6", - "zeroize", + "const-oid 0.9.6", + "zeroize", ] [[package]] @@ -3026,9 +2973,9 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ - "const-oid 0.9.6", - "pem-rfc7468 0.7.0", - "zeroize", + "const-oid 0.9.6", + "pem-rfc7468 0.7.0", + "zeroize", ] [[package]] @@ -3037,9 +2984,9 @@ version = "0.8.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02c1d73e9668ea6b6a28172aa55f3ebec38507131ce179051c8033b5c6037653" dependencies = [ - "const-oid 0.10.2", - "pem-rfc7468 1.0.0", - "zeroize", + "const-oid 0.10.2", + "pem-rfc7468 1.0.0", + "zeroize", ] [[package]] @@ -3048,12 +2995,12 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs", - "displaydoc", - "nom 7.1.3", - "num-bigint", - "num-traits", - "rusticata-macros", + "asn1-rs", + "displaydoc", + "nom 7.1.3", + "num-bigint", + "num-traits", + "rusticata-macros", ] [[package]] @@ -3062,19 +3009,8 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" dependencies = [ - "powerfmt", - "serde_core", -] - -[[package]] -name = "derive_arbitrary" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "powerfmt", + "serde_core", ] [[package]] @@ -3083,7 +3019,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" dependencies = [ - "derive_builder_macro 0.12.0", + "derive_builder_macro 0.12.0", ] [[package]] @@ -3092,7 +3028,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" dependencies = [ - "derive_builder_macro 0.20.2", + "derive_builder_macro 0.20.2", ] [[package]] @@ -3101,10 +3037,10 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" dependencies = [ - "darling 0.14.4", - "proc-macro2", - "quote", - "syn 1.0.109", + "darling 0.14.4", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3113,10 +3049,10 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3125,8 +3061,8 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" dependencies = [ - "derive_builder_core 0.12.0", - "syn 1.0.109", + "derive_builder_core 0.12.0", + "syn 1.0.109", ] [[package]] @@ -3135,8 +3071,8 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ - "derive_builder_core 0.20.2", - "syn 2.0.114", + "derive_builder_core 0.20.2", + "syn 2.0.114", ] [[package]] @@ -3145,7 +3081,7 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ - "derive_more-impl", + "derive_more-impl", ] [[package]] @@ -3154,12 +3090,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ - "convert_case", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.114", - "unicode-xid", + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.114", + "unicode-xid", ] [[package]] @@ -3168,7 +3104,7 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512ca722eff02fa73c43e5136f440c46f861d41f9dd7761c1f2817a5ca5d9ad7" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -3183,10 +3119,10 @@ version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer 0.10.4", - "const-oid 0.9.6", - "crypto-common 0.1.7", - "subtle", + "block-buffer 0.10.4", + "const-oid 0.9.6", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -3195,10 +3131,10 @@ version = "0.11.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebf9423bafb058e4142194330c52273c343f8a5beb7176d052f0e73b17dd35b9" dependencies = [ - "block-buffer 0.11.0", - "const-oid 0.10.2", - "crypto-common 0.2.0-rc.9", - "subtle", + "block-buffer 0.11.0", + "const-oid 0.10.2", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -3207,7 +3143,7 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" dependencies = [ - "dirs-sys", + "dirs-sys", ] [[package]] @@ -3216,10 +3152,10 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" dependencies = [ - "libc", - "option-ext", - "redox_users", - "windows-sys 0.61.2", + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", ] [[package]] @@ -3228,9 +3164,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3245,7 +3181,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9" dependencies = [ - "phf 0.11.3", + "phf 0.11.3", ] [[package]] @@ -3264,38 +3200,38 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" name = "e2e_test" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "aws-config", - "aws-sdk-s3", - "base64", - "bytes", - "chrono", - "flatbuffers", - "futures", - "md5 0.8.0", - "rand 0.10.0-rc.6", - "rcgen", - "reqwest", - "rmp-serde", - "rustfs-common", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-protos", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "serial_test", - "suppaftp", - "tokio", - "tonic", - "tracing", - "tracing-subscriber", - "url", - "uuid", + "anyhow", + "async-trait", + "aws-config", + "aws-sdk-s3", + "base64", + "bytes", + "chrono", + "flatbuffers", + "futures", + "md5 0.8.0", + "rand 0.10.0-rc.6", + "rcgen", + "reqwest", + "rmp-serde", + "rustfs-common", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-protos", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serial_test", + "suppaftp", + "tokio", + "tonic", + "tracing", + "tracing-subscriber", + "url", + "uuid", ] [[package]] @@ -3304,10 +3240,10 @@ version = "0.14.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" dependencies = [ - "der 0.6.1", - "elliptic-curve 0.12.3", - "rfc6979 0.3.1", - "signature 1.6.4", + "der 0.6.1", + "elliptic-curve 0.12.3", + "rfc6979 0.3.1", + "signature 1.6.4", ] [[package]] @@ -3316,12 +3252,12 @@ version = "0.16.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" dependencies = [ - "der 0.7.10", - "digest 0.10.7", - "elliptic-curve 0.13.8", - "rfc6979 0.4.0", - "signature 2.2.0", - "spki 0.7.3", + "der 0.7.10", + "digest 0.10.7", + "elliptic-curve 0.13.8", + "rfc6979 0.4.0", + "signature 2.2.0", + "spki 0.7.3", ] [[package]] @@ -3330,8 +3266,8 @@ version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ - "pkcs8 0.10.2", - "signature 2.2.0", + "pkcs8 0.10.2", + "signature 2.2.0", ] [[package]] @@ -3340,7 +3276,7 @@ version = "3.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "594435fe09e345ee388e4e8422072ff7dfeca8729389fbd997b3f5504c44cd47" dependencies = [ - "signature 3.0.0-rc.6", + "signature 3.0.0-rc.6", ] [[package]] @@ -3349,25 +3285,25 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ - "curve25519-dalek 4.1.3", - "ed25519 2.2.3", - "rand_core 0.6.4", - "serde", - "sha2 0.10.9", - "subtle", - "zeroize", + "curve25519-dalek 4.1.3", + "ed25519 2.2.3", + "rand_core 0.6.4", + "serde", + "sha2 0.10.9", + "subtle", + "zeroize", ] [[package]] name = "ed25519-dalek" -version = "3.0.0-pre.2" +version = "3.0.0-pre.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbef01b6e6a5f913ae480bb34ddd798ce6d358054bebf77177200ec84af61ad5" +checksum = "a4b9f613e0c236c699bf70d39f825594d9b03aadfd8dd856ea40685f782a4ef2" dependencies = [ - "curve25519-dalek 5.0.0-pre.2", - "ed25519 3.0.0-rc.2", - "sha2 0.11.0-rc.3", - "subtle", + "curve25519-dalek 5.0.0-pre.4", + "ed25519 3.0.0-rc.2", + "sha2 0.11.0-rc.3", + "subtle", ] [[package]] @@ -3382,18 +3318,18 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" dependencies = [ - "base16ct 0.1.1", - "crypto-bigint 0.4.9", - "der 0.6.1", - "digest 0.10.7", - "ff 0.12.1", - "generic-array 0.14.7", - "group 0.12.1", - "pkcs8 0.9.0", - "rand_core 0.6.4", - "sec1 0.3.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "crypto-bigint 0.4.9", + "der 0.6.1", + "digest 0.10.7", + "ff 0.12.1", + "generic-array 0.14.7", + "group 0.12.1", + "pkcs8 0.9.0", + "rand_core 0.6.4", + "sec1 0.3.0", + "subtle", + "zeroize", ] [[package]] @@ -3402,19 +3338,19 @@ version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ - "base16ct 0.2.0", - "crypto-bigint 0.5.5", - "digest 0.10.7", - "ff 0.13.1", - "generic-array 0.14.7", - "group 0.13.0", - "hkdf", - "pem-rfc7468 0.7.0", - "pkcs8 0.10.2", - "rand_core 0.6.4", - "sec1 0.7.3", - "subtle", - "zeroize", + "base16ct 0.2.0", + "crypto-bigint 0.5.5", + "digest 0.10.7", + "ff 0.13.1", + "generic-array 0.14.7", + "group 0.13.0", + "hkdf", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.2", + "rand_core 0.6.4", + "sec1 0.7.3", + "subtle", + "zeroize", ] [[package]] @@ -3423,7 +3359,7 @@ version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -3432,10 +3368,10 @@ version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.114", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3444,7 +3380,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25b07a8dfbbbfc0064c0a6bdf9edcf966de6b1c33ce344bdeca3b41615452634" dependencies = [ - "enumset_derive", + "enumset_derive", ] [[package]] @@ -3453,10 +3389,10 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f43e744e4ea338060faee68ed933e46e722fb7f3617e722a5772d7e856d8b3ce" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3465,7 +3401,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "log", + "log", ] [[package]] @@ -3474,8 +3410,8 @@ version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ - "env_filter", - "log", + "env_filter", + "log", ] [[package]] @@ -3484,7 +3420,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" dependencies = [ - "equator-macro", + "equator-macro", ] [[package]] @@ -3493,9 +3429,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3510,7 +3446,7 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -3519,9 +3455,9 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" dependencies = [ - "serde", - "serde_core", - "typeid", + "serde", + "serde_core", + "typeid", ] [[package]] @@ -3530,8 +3466,8 @@ version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ - "libc", - "windows-sys 0.61.2", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -3540,9 +3476,9 @@ version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] @@ -3551,8 +3487,8 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener", - "pin-project-lite", + "event-listener", + "pin-project-lite", ] [[package]] @@ -3561,8 +3497,8 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73" dependencies = [ - "heapless", - "serde", + "heapless", + "serde", ] [[package]] @@ -3577,8 +3513,8 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3587,8 +3523,8 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3609,10 +3545,10 @@ version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.60.2", + "cfg-if", + "libc", + "libredox", + "windows-sys 0.60.2", ] [[package]] @@ -3627,10 +3563,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" dependencies = [ - "cc", - "lazy_static", - "libc", - "winapi", + "cc", + "lazy_static", + "libc", + "winapi", ] [[package]] @@ -3645,8 +3581,8 @@ version = "25.12.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" dependencies = [ - "bitflags 2.10.0", - "rustc_version", + "bitflags 2.10.0", + "rustc_version", ] [[package]] @@ -3655,9 +3591,9 @@ version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369" dependencies = [ - "crc32fast", - "miniz_oxide", - "zlib-rs", + "crc32fast", + "miniz_oxide", + "zlib-rs", ] [[package]] @@ -3666,21 +3602,21 @@ version = "0.31.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31e5335674a3a259527f97e9176a3767dcc9b220b8e29d643daeb2d6c72caf8b" dependencies = [ - "chrono", - "crossbeam-channel", - "crossbeam-queue", - "flate2", - "log", - "notify-debouncer-mini", - "nu-ansi-term", - "regex", - "serde", - "serde_derive", - "serde_json", - "thiserror 2.0.17", - "toml", - "tracing", - "tracing-subscriber", + "chrono", + "crossbeam-channel", + "crossbeam-queue", + "flate2", + "log", + "notify-debouncer-mini", + "nu-ansi-term", + "regex", + "serde", + "serde_derive", + "serde_json", + "thiserror 2.0.17", + "toml", + "tracing", + "tracing-subscriber", ] [[package]] @@ -3689,9 +3625,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ - "futures-core", - "futures-sink", - "spin 0.9.8", + "futures-core", + "futures-sink", + "spin 0.9.8", ] [[package]] @@ -3700,10 +3636,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf5efcf77a4da27927d3ab0509dec5b0954bb3bc59da5a1de9e52642ebd4cdf9" dependencies = [ - "ahash", - "num_cpus", - "parking_lot", - "seize", + "ahash", + "num_cpus", + "parking_lot", + "seize", ] [[package]] @@ -3730,7 +3666,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ - "percent-encoding", + "percent-encoding", ] [[package]] @@ -3739,8 +3675,8 @@ version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf68cef89750956493a66a10f512b9e58d9db21f2a573c079c0bdf1207a54a7" dependencies = [ - "autocfg", - "tokio", + "autocfg", + "tokio", ] [[package]] @@ -3755,7 +3691,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" dependencies = [ - "libc", + "libc", ] [[package]] @@ -3764,13 +3700,13 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] @@ -3779,8 +3715,8 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ - "futures-core", - "futures-sink", + "futures-core", + "futures-sink", ] [[package]] @@ -3795,9 +3731,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ - "futures-core", - "futures-task", - "futures-util", + "futures-core", + "futures-task", + "futures-util", ] [[package]] @@ -3812,11 +3748,11 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ - "fastrand", - "futures-core", - "futures-io", - "parking", - "pin-project-lite", + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", ] [[package]] @@ -3825,9 +3761,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3842,28 +3778,22 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" -[[package]] -name = "futures-timer" -version = "3.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" - [[package]] name = "futures-util" version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", ] [[package]] @@ -3872,9 +3802,9 @@ version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ - "typenum", - "version_check", - "zeroize", + "typenum", + "version_check", + "zeroize", ] [[package]] @@ -3883,9 +3813,9 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542" dependencies = [ - "generic-array 0.14.7", - "rustversion", - "typenum", + "generic-array 0.14.7", + "rustversion", + "typenum", ] [[package]] @@ -3894,11 +3824,11 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", ] [[package]] @@ -3907,12 +3837,12 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "r-efi", - "wasip2", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", ] [[package]] @@ -3921,11 +3851,11 @@ version = "0.4.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b99f0d993a2b9b97b9a201193aa8ad21305cde06a3be9a7e1f8f4201e5cc27e" dependencies = [ - "cfg-if", - "libc", - "r-efi", - "rand_core 0.10.0-rc-3", - "wasip2", + "cfg-if", + "libc", + "r-efi", + "rand_core 0.10.0-rc-3", + "wasip2", ] [[package]] @@ -3934,10 +3864,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912" dependencies = [ - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3946,8 +3876,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" dependencies = [ - "opaque-debug", - "polyval 0.6.2", + "opaque-debug", + "polyval 0.6.2", ] [[package]] @@ -3956,7 +3886,7 @@ version = "0.6.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "333de57ed9494a40df4bbb866752b100819dde0d18f2264c48f5a08a85fe673d" dependencies = [ - "polyval 0.7.0-rc.3", + "polyval 0.7.0-rc.3", ] [[package]] @@ -3973,119 +3903,118 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "google-cloud-auth" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "590a1c28795779d5da6fda35b149d5271bcddcf2ce1709eae9e9460faf2f2aa9" +checksum = "34f8aadacd3195fc3b08f2a5d582f2401c60d9f1598574acfcfb6228de25db29" dependencies = [ - "async-trait", - "base64", - "bon", - "bytes", - "google-cloud-gax", - "http 1.4.0", - "reqwest", - "rustc_version", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", + "async-trait", + "base64", + "bytes", + "google-cloud-gax", + "http 1.4.0", + "reqwest", + "rustc_version", + "rustls", + "rustls-pki-types", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", ] [[package]] name = "google-cloud-gax" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324fb97d35103787e80a33ed41ccc43d947c376d2ece68ca53e860f5844dbe24" +checksum = "b218292363f2e2d6ab8d6da4118acf91cc044439c442d2d6809b581e0728b377" dependencies = [ - "base64", - "bytes", - "futures", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "pin-project", - "rand 0.9.2", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", + "base64", + "bytes", + "futures", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "pin-project", + "rand 0.9.2", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", ] [[package]] name = "google-cloud-gax-internal" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b75b810886ae872aca68a35ad1d4d5e8f2be39e40238116d8aff9d778f04b38" +checksum = "78125fa0347492177131d30c010e57ddce9bba1504c33be135f5853a9105c277" dependencies = [ - "bytes", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "opentelemetry-semantic-conventions", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "rustc_version", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tonic-prost", - "tower", - "tracing", + "bytes", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "opentelemetry-semantic-conventions", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "rustc_version", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tonic-prost", + "tower", + "tracing", ] [[package]] name = "google-cloud-iam-v1" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "498a68e2a958e8aa9938f7db2c7147aad1b5a0ff2cd47c5ba4e10cb0dcb5bfc5" +checksum = "f84b431125034e0928e41e8c117bcbc40b0b55b55464b2e964b26e1ffcb15323" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-type", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-type", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] name = "google-cloud-longrunning" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c80938e704401a47fdf36b51ec10e1a99b1ec22793d607afd0e67c7b675b8b3" +checksum = "5d0612f4062f42b141b4d050d1a8a2f860e907a548bde28cb82d4fdf0eb346a3" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-rpc", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-rpc", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4094,12 +4023,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49747b7b684b804a2d1040c2cdb21238b3d568a41ab9e36c423554509112f61d" dependencies = [ - "google-cloud-gax", - "google-cloud-longrunning", - "google-cloud-rpc", - "google-cloud-wkt", - "serde", - "tokio", + "google-cloud-gax", + "google-cloud-longrunning", + "google-cloud-rpc", + "google-cloud-wkt", + "serde", + "tokio", ] [[package]] @@ -4108,54 +4037,57 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd10e97751ca894f9dad6be69fcef1cb72f5bc187329e0254817778fc8235030" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] name = "google-cloud-storage" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "043be824d1b105bfdce786c720e45cae04e66436f8e5d0168e98ca8e5715ce9f" +checksum = "6abde5d51a4728f47b8f7781d7bf86ab51e310b42ec7c7c96578f1d03da938e4" dependencies = [ - "async-trait", - "base64", - "bytes", - "crc32c", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-iam-v1", - "google-cloud-longrunning", - "google-cloud-lro", - "google-cloud-rpc", - "google-cloud-type", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "lazy_static", - "md5 0.8.0", - "mime", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "serde", - "serde_json", - "serde_with", - "sha2 0.10.9", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tracing", - "uuid", + "async-trait", + "base64", + "bytes", + "chrono", + "crc32c", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-iam-v1", + "google-cloud-longrunning", + "google-cloud-lro", + "google-cloud-rpc", + "google-cloud-type", + "google-cloud-wkt", + "hex", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "lazy_static", + "md5 0.8.0", + "mime", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "serde", + "serde_json", + "serde_with", + "sha2 0.10.9", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tracing", + "url", + "uuid", ] [[package]] @@ -4164,11 +4096,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9390ac2f3f9882ff42956b25ea65b9f546c8dd44c131726d75a96bf744ec75f6" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4177,14 +4109,14 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6f270e404be7ce76a3260abe0c3c71492ab2599ccd877f3253f3dd552f48cc9" dependencies = [ - "base64", - "bytes", - "serde", - "serde_json", - "serde_with", - "thiserror 2.0.17", - "time", - "url", + "base64", + "bytes", + "serde", + "serde_json", + "serde_with", + "thiserror 2.0.17", + "time", + "url", ] [[package]] @@ -4193,9 +4125,9 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" dependencies = [ - "ff 0.12.1", - "rand_core 0.6.4", - "subtle", + "ff 0.12.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4204,9 +4136,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ - "ff 0.13.1", - "rand_core 0.6.4", - "subtle", + "ff 0.13.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4215,17 +4147,17 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.4.0", - "indexmap 2.13.0", - "slab", - "tokio", - "tokio-util", - "tracing", + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.4.0", + "indexmap 2.13.0", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -4234,10 +4166,10 @@ version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" dependencies = [ - "cfg-if", - "crunchy", - "num-traits", - "zerocopy", + "cfg-if", + "crunchy", + "num-traits", + "zerocopy", ] [[package]] @@ -4246,7 +4178,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" dependencies = [ - "byteorder", + "byteorder", ] [[package]] @@ -4260,10 +4192,6 @@ name = "hashbrown" version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" -dependencies = [ - "ahash", - "allocator-api2", -] [[package]] name = "hashbrown" @@ -4271,9 +4199,9 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.1.5", + "allocator-api2", + "equivalent", + "foldhash 0.1.5", ] [[package]] @@ -4282,12 +4210,12 @@ version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.2.0", - "rayon", - "serde", - "serde_core", + "allocator-api2", + "equivalent", + "foldhash 0.2.0", + "rayon", + "serde", + "serde_core", ] [[package]] @@ -4296,9 +4224,9 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74d9ba66d1739c68e0219b2b2238b5c4145f491ebf181b9c6ab561a19352ae86" dependencies = [ - "hax-lib-macros", - "num-bigint", - "num-traits", + "hax-lib-macros", + "num-bigint", + "num-traits", ] [[package]] @@ -4307,11 +4235,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24ba777a231a58d1bce1d68313fa6b6afcc7966adef23d60f45b8a2b9b688bf1" dependencies = [ - "hax-lib-macros-types", - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "hax-lib-macros-types", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -4320,11 +4248,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "867e19177d7425140b417cd27c2e05320e727ee682e98368f88b7194e80ad515" dependencies = [ - "proc-macro2", - "quote", - "serde", - "serde_json", - "uuid", + "proc-macro2", + "quote", + "serde", + "serde_json", + "uuid", ] [[package]] @@ -4333,8 +4261,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" dependencies = [ - "hash32", - "stable_deref_trait", + "hash32", + "stable_deref_trait", ] [[package]] @@ -4349,17 +4277,17 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a56c94661ddfb51aa9cdfbf102cfcc340aa69267f95ebccc4af08d7c530d393" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "heed-traits", - "heed-types", - "libc", - "lmdb-master-sys", - "once_cell", - "page_size", - "serde", - "synchronoise", - "url", + "bitflags 2.10.0", + "byteorder", + "heed-traits", + "heed-types", + "libc", + "lmdb-master-sys", + "once_cell", + "page_size", + "serde", + "synchronoise", + "url", ] [[package]] @@ -4374,11 +4302,11 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c255bdf46e07fb840d120a36dcc81f385140d7191c76a7391672675c01a55d" dependencies = [ - "bincode", - "byteorder", - "heed-traits", - "serde", - "serde_json", + "bincode", + "byteorder", + "heed-traits", + "serde", + "serde_json", ] [[package]] @@ -4405,8 +4333,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f7685beb53fc20efc2605f32f5d51e9ba18b8ef237961d1760169d2290d3bee" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -4421,7 +4349,7 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ - "hmac 0.12.1", + "hmac 0.12.1", ] [[package]] @@ -4430,7 +4358,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -4439,7 +4367,7 @@ version = "0.13.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1c597ac7d6cc8143e30e83ef70915e7f883b18d8bec2e2b2bce47f5bbb06d57" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -4448,7 +4376,7 @@ version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -4457,9 +4385,9 @@ version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ - "bytes", - "fnv", - "itoa", + "bytes", + "fnv", + "itoa", ] [[package]] @@ -4468,8 +4396,8 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ - "bytes", - "itoa", + "bytes", + "itoa", ] [[package]] @@ -4478,9 +4406,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ - "bytes", - "http 0.2.12", - "pin-project-lite", + "bytes", + "http 0.2.12", + "pin-project-lite", ] [[package]] @@ -4489,8 +4417,8 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ - "bytes", - "http 1.4.0", + "bytes", + "http 1.4.0", ] [[package]] @@ -4499,11 +4427,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "pin-project-lite", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "pin-project-lite", ] [[package]] @@ -4530,8 +4458,8 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0" dependencies = [ - "typenum", - "zeroize", + "typenum", + "zeroize", ] [[package]] @@ -4540,21 +4468,21 @@ version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "pin-utils", - "smallvec", - "tokio", - "want", + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", ] [[package]] @@ -4563,17 +4491,17 @@ version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "http 1.4.0", - "hyper", - "hyper-util", - "log", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", + "http 1.4.0", + "hyper", + "hyper-util", + "log", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", ] [[package]] @@ -4582,11 +4510,11 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper", - "hyper-util", - "pin-project-lite", - "tokio", - "tower-service", + "hyper", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", ] [[package]] @@ -4595,24 +4523,24 @@ version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ - "base64", - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "system-configuration", - "tokio", - "tower-service", - "tracing", - "windows-registry", + "base64", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", ] [[package]] @@ -4621,13 +4549,13 @@ version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core 0.62.2", + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", ] [[package]] @@ -4636,7 +4564,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "cc", + "cc", ] [[package]] @@ -4645,11 +4573,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", ] [[package]] @@ -4658,11 +4586,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", ] [[package]] @@ -4671,12 +4599,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", ] [[package]] @@ -4691,12 +4619,12 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "zerotrie", - "zerovec", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", ] [[package]] @@ -4711,13 +4639,13 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" dependencies = [ - "displaydoc", - "icu_locale_core", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", ] [[package]] @@ -4732,9 +4660,9 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", + "idna_adapter", + "smallvec", + "utf8_iter", ] [[package]] @@ -4743,8 +4671,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "icu_normalizer", - "icu_properties", + "icu_normalizer", + "icu_properties", ] [[package]] @@ -4753,9 +4681,9 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", + "autocfg", + "hashbrown 0.12.3", + "serde", ] [[package]] @@ -4764,10 +4692,10 @@ version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ - "equivalent", - "hashbrown 0.16.1", - "serde", - "serde_core", + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", ] [[package]] @@ -4776,16 +4704,16 @@ version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" dependencies = [ - "ahash", - "indexmap 2.13.0", - "is-terminal", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.26.0", - "rgb", - "str_stack", + "ahash", + "indexmap 2.13.0", + "is-terminal", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.26.0", + "rgb", + "str_stack", ] [[package]] @@ -4794,20 +4722,20 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d35223c50fdd26419a4ccea2c73be68bd2b29a3d7d6123ffe101c17f4c20a52a" dependencies = [ - "ahash", - "clap", - "crossbeam-channel", - "crossbeam-utils", - "dashmap", - "env_logger", - "indexmap 2.13.0", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.38.4", - "rgb", - "str_stack", + "ahash", + "clap", + "crossbeam-channel", + "crossbeam-utils", + "dashmap", + "env_logger", + "indexmap 2.13.0", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.38.4", + "rgb", + "str_stack", ] [[package]] @@ -4816,9 +4744,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" dependencies = [ - "bitflags 2.10.0", - "inotify-sys", - "libc", + "bitflags 2.10.0", + "inotify-sys", + "libc", ] [[package]] @@ -4827,7 +4755,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" dependencies = [ - "libc", + "libc", ] [[package]] @@ -4836,8 +4764,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "block-padding", - "generic-array 0.14.7", + "block-padding", + "generic-array 0.14.7", ] [[package]] @@ -4846,7 +4774,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ - "hybrid-array", + "hybrid-array", ] [[package]] @@ -4861,29 +4789,29 @@ version = "0.6.16+upstream-0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe44f2bbd99fcb302e246e2d6bcf51aeda346d02a365f80296a07a8c711b6da6" dependencies = [ - "argon2 0.5.3", - "bcrypt-pbkdf", - "digest 0.11.0-rc.5", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "hex", - "hmac 0.12.1", - "num-bigint-dig", - "p256 0.13.2", - "p384", - "p521", - "rand_core 0.6.4", - "rsa", - "sec1 0.7.3", - "sha1 0.10.6", - "sha1 0.11.0-rc.3", - "sha2 0.10.9", - "signature 2.2.0", - "signature 3.0.0-rc.6", - "ssh-cipher 0.2.0", - "ssh-encoding 0.2.0", - "subtle", - "zeroize", + "argon2 0.5.3", + "bcrypt-pbkdf", + "digest 0.11.0-rc.5", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "hex", + "hmac 0.12.1", + "num-bigint-dig", + "p256 0.13.2", + "p384", + "p521", + "rand_core 0.6.4", + "rsa", + "sec1 0.7.3", + "sha1 0.10.6", + "sha1 0.11.0-rc.3", + "sha2 0.10.9", + "signature 2.2.0", + "signature 3.0.0-rc.6", + "ssh-cipher 0.2.0", + "ssh-encoding 0.2.0", + "subtle", + "zeroize", ] [[package]] @@ -4898,7 +4826,7 @@ version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763" dependencies = [ - "serde", + "serde", ] [[package]] @@ -4907,8 +4835,8 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -4917,9 +4845,9 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.61.2", + "hermit-abi", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -4940,7 +4868,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ - "either", + "either", ] [[package]] @@ -4949,7 +4877,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ - "either", + "either", ] [[package]] @@ -4964,15 +4892,15 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74ff642505c7ce8d31c0d43ec0e235c6fd4585d9b8172d8f9dd04d36590200b5" dependencies = [ - "anyhow", - "libc", - "mappings", - "once_cell", - "pprof_util", - "tempfile", - "tikv-jemalloc-ctl", - "tokio", - "tracing", + "anyhow", + "libc", + "mappings", + "once_cell", + "pprof_util", + "tempfile", + "tikv-jemalloc-ctl", + "tokio", + "tracing", ] [[package]] @@ -4981,8 +4909,8 @@ version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ - "getrandom 0.3.4", - "libc", + "getrandom 0.3.4", + "libc", ] [[package]] @@ -4991,8 +4919,8 @@ version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" dependencies = [ - "once_cell", - "wasm-bindgen", + "once_cell", + "wasm-bindgen", ] [[package]] @@ -5001,15 +4929,15 @@ version = "10.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e" dependencies = [ - "aws-lc-rs", - "base64", - "getrandom 0.2.17", - "js-sys", - "pem", - "serde", - "serde_json", - "signature 2.2.0", - "simple_asn1", + "aws-lc-rs", + "base64", + "getrandom 0.2.17", + "js-sys", + "pem", + "serde", + "serde_json", + "signature 2.2.0", + "simple_asn1", ] [[package]] @@ -5018,8 +4946,8 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" dependencies = [ - "kqueue-sys", - "libc", + "kqueue-sys", + "libc", ] [[package]] @@ -5028,8 +4956,8 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" dependencies = [ - "bitflags 1.3.2", - "libc", + "bitflags 1.3.2", + "libc", ] [[package]] @@ -5038,9 +4966,9 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5c13b6857ade4c8ee05c3c3dc97d2ab5415d691213825b90d3211c425c1f907" dependencies = [ - "lazy-regex-proc_macros", - "once_cell", - "regex", + "lazy-regex-proc_macros", + "once_cell", + "regex", ] [[package]] @@ -5049,10 +4977,10 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a95c68db5d41694cea563c86a4ba4dc02141c16ef64814108cb23def4d5438" dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.114", + "proc-macro2", + "quote", + "regex", + "syn 2.0.114", ] [[package]] @@ -5061,7 +4989,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin 0.9.8", ] [[package]] @@ -5070,11 +4998,11 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" dependencies = [ - "lexical-parse-float", - "lexical-parse-integer", - "lexical-util", - "lexical-write-float", - "lexical-write-integer", + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", ] [[package]] @@ -5083,8 +5011,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" dependencies = [ - "lexical-parse-integer", - "lexical-util", + "lexical-parse-integer", + "lexical-util", ] [[package]] @@ -5093,7 +5021,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5108,8 +5036,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" dependencies = [ - "lexical-util", - "lexical-write-integer", + "lexical-util", + "lexical-write-integer", ] [[package]] @@ -5118,7 +5046,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5139,8 +5067,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc9ee7ef66569dd7516454fe26de4e401c0c62073929803486b96744594b9632" dependencies = [ - "core-models", - "hax-lib", + "core-models", + "hax-lib", ] [[package]] @@ -5149,14 +5077,14 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bb6a88086bf11bd2ec90926c749c4a427f2e59841437dbdede8cde8a96334ab" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-secrets", - "libcrux-sha3", - "libcrux-traits", - "rand 0.9.2", - "tls_codec", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-secrets", + "libcrux-sha3", + "libcrux-traits", + "rand 0.9.2", + "tls_codec", ] [[package]] @@ -5165,7 +5093,7 @@ version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db82d058aa76ea315a3b2092f69dfbd67ddb0e462038a206e1dcd73f058c0778" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5174,7 +5102,7 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e4dbbf6bc9f2bc0f20dc3bea3e5c99adff3bdccf6d2a40488963da69e2ec307" dependencies = [ - "hax-lib", + "hax-lib", ] [[package]] @@ -5183,10 +5111,10 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2400bec764d1c75b8a496d5747cffe32f1fb864a12577f0aca2f55a92021c962" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-traits", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-traits", ] [[package]] @@ -5195,8 +5123,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9adfd58e79d860f6b9e40e35127bfae9e5bd3ade33201d1347459011a2add034" dependencies = [ - "libcrux-secrets", - "rand 0.9.2", + "libcrux-secrets", + "rand 0.9.2", ] [[package]] @@ -5205,8 +5133,28 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ - "cfg-if", - "windows-link 0.2.1", + "cfg-if", + "windows-link 0.2.1", +] + +[[package]] +name = "liblzma" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648" +dependencies = [ + "liblzma-sys", +] + +[[package]] +name = "liblzma-sys" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736" +dependencies = [ + "cc", + "libc", + "pkg-config", ] [[package]] @@ -5221,8 +5169,8 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5231,9 +5179,9 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" dependencies = [ - "bitflags 2.10.0", - "libc", - "redox_syscall 0.7.0", + "bitflags 2.10.0", + "libc", + "redox_syscall 0.7.0", ] [[package]] @@ -5242,16 +5190,16 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19c97a761fc86953c5b885422b22c891dbf5bcb9dcc99d0110d6ce4c052759f0" dependencies = [ - "hmac 0.12.1", - "libc", - "log", - "nix 0.29.0", - "nom 8.0.0", - "once_cell", - "serde", - "sha2 0.10.9", - "thiserror 2.0.17", - "uuid", + "hmac 0.12.1", + "libc", + "log", + "nix 0.29.0", + "nom 8.0.0", + "once_cell", + "serde", + "sha2 0.10.9", + "thiserror 2.0.17", + "uuid", ] [[package]] @@ -5260,33 +5208,33 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8270fae0f77279620962f533153fa727a9cf9485dbb79d47eed3086d42b17264" dependencies = [ - "async-trait", - "bitflags 2.10.0", - "bytes", - "chrono", - "dashmap", - "derive_more", - "futures-util", - "getrandom 0.3.4", - "lazy_static", - "libc", - "md-5 0.10.6", - "moka", - "nix 0.29.0", - "prometheus", - "proxy-protocol", - "rustls", - "rustls-pemfile", - "slog", - "slog-stdlog", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-util", - "tracing", - "tracing-attributes", - "uuid", - "x509-parser 0.17.0", + "async-trait", + "bitflags 2.10.0", + "bytes", + "chrono", + "dashmap", + "derive_more", + "futures-util", + "getrandom 0.3.4", + "lazy_static", + "libc", + "md-5 0.10.6", + "moka", + "nix 0.29.0", + "prometheus", + "proxy-protocol", + "rustls", + "rustls-pemfile", + "slog", + "slog-stdlog", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-util", + "tracing", + "tracing-attributes", + "uuid", + "x509-parser 0.17.0", ] [[package]] @@ -5313,21 +5261,20 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "864808e0b19fb6dd3b70ba94ee671b82fce17554cf80aeb0a155c65bb08027df" dependencies = [ - "cc", - "doxygen-rs", - "libc", + "cc", + "doxygen-rs", + "libc", ] [[package]] name = "local-ip-address" -version = "0.6.8" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a60bf300a990b2d1ebdde4228e873e8e4da40d834adbf5265f3da1457ede652" +checksum = "92488bc8a0f99ee9f23577bdd06526d49657df8bd70504c61f812337cdad01ab" dependencies = [ - "libc", - "neli", - "thiserror 2.0.17", - "windows-sys 0.61.2", + "libc", + "neli", + "windows-sys 0.61.2", ] [[package]] @@ -5336,7 +5283,7 @@ version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "scopeguard", + "scopeguard", ] [[package]] @@ -5345,8 +5292,8 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" dependencies = [ - "serde_core", - "value-bag", + "serde_core", + "value-bag", ] [[package]] @@ -5355,7 +5302,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.15.5", ] [[package]] @@ -5370,7 +5317,7 @@ version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ - "lz4-sys", + "lz4-sys", ] [[package]] @@ -5379,8 +5326,8 @@ version = "1.11.1+lz4-1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5389,7 +5336,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab6473172471198271ff72e9379150e9dfd70d8e533e0752a27e515b48dd375e" dependencies = [ - "twox-hash", + "twox-hash", ] [[package]] @@ -5398,19 +5345,8 @@ version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fa48f5024824ecd3e8282cc948bd46fbd095aed5a98939de0594601a59b4e2b" dependencies = [ - "crc", - "sha2 0.10.9", -] - -[[package]] -name = "lzma-sys" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" -dependencies = [ - "cc", - "libc", - "pkg-config", + "crc", + "sha2 0.10.9", ] [[package]] @@ -5419,11 +5355,11 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db4d277bb50d4508057e7bddd7fcd19ef4a4cc38051b6a5a36868d75ae2cbeb9" dependencies = [ - "anyhow", - "libc", - "once_cell", - "pprof_util", - "tracing", + "anyhow", + "libc", + "once_cell", + "pprof_util", + "tracing", ] [[package]] @@ -5432,7 +5368,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" dependencies = [ - "regex-automata", + "regex-automata", ] [[package]] @@ -5453,8 +5389,8 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ - "cfg-if", - "digest 0.10.7", + "cfg-if", + "digest 0.10.7", ] [[package]] @@ -5463,8 +5399,8 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64dd2c9099caf8e29b629305199dddb1c6d981562b62c089afea54b0b4b5c333" dependencies = [ - "cfg-if", - "digest 0.11.0-rc.5", + "cfg-if", + "digest 0.11.0-rc.5", ] [[package]] @@ -5491,7 +5427,7 @@ version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5500,7 +5436,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ - "autocfg", + "autocfg", ] [[package]] @@ -5509,8 +5445,8 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" dependencies = [ - "ahash", - "portable-atomic", + "ahash", + "portable-atomic", ] [[package]] @@ -5519,7 +5455,7 @@ version = "0.1.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" dependencies = [ - "libmimalloc-sys", + "libmimalloc-sys", ] [[package]] @@ -5534,8 +5470,8 @@ version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ - "mime", - "unicase", + "mime", + "unicase", ] [[package]] @@ -5550,8 +5486,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ - "adler2", - "simd-adler32", + "adler2", + "simd-adler32", ] [[package]] @@ -5560,10 +5496,10 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ - "libc", - "log", - "wasi", - "windows-sys 0.61.2", + "libc", + "log", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -5572,18 +5508,18 @@ version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3dec6bd31b08944e08b58fd99373893a6c17054d6f3ea5006cc894f4f4eee2a" dependencies = [ - "async-lock", - "crossbeam-channel", - "crossbeam-epoch", - "crossbeam-utils", - "equivalent", - "event-listener", - "futures-util", - "parking_lot", - "portable-atomic", - "smallvec", - "tagptr", - "uuid", + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "event-listener", + "futures-util", + "parking_lot", + "portable-atomic", + "smallvec", + "tagptr", + "uuid", ] [[package]] @@ -5598,14 +5534,14 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e23bebbf3e157c402c4d5ee113233e5e0610cc27453b2f07eefce649c7365dcc" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "derive_builder 0.20.2", - "getset", - "libc", - "log", - "neli-proc-macros", - "parking_lot", + "bitflags 2.10.0", + "byteorder", + "derive_builder 0.20.2", + "getset", + "libc", + "log", + "neli-proc-macros", + "parking_lot", ] [[package]] @@ -5614,11 +5550,11 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609" dependencies = [ - "either", - "proc-macro2", - "quote", - "serde", - "syn 2.0.114", + "either", + "proc-macro2", + "quote", + "serde", + "syn 2.0.114", ] [[package]] @@ -5627,8 +5563,8 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29a01b9f018d6b7b277fef6c79fdbd9bf17bb2d1e298238055cafab49baa5ee" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -5637,9 +5573,9 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc", + "bitflags 1.3.2", + "cfg-if", + "libc", ] [[package]] @@ -5648,11 +5584,11 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", - "memoffset", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", ] [[package]] @@ -5661,10 +5597,10 @@ version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", ] [[package]] @@ -5673,8 +5609,8 @@ version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "memchr", - "minimal-lexical", + "memchr", + "minimal-lexical", ] [[package]] @@ -5683,7 +5619,7 @@ version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5692,16 +5628,16 @@ version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" dependencies = [ - "bitflags 2.10.0", - "fsevent-sys", - "inotify", - "kqueue", - "libc", - "log", - "mio", - "notify-types", - "walkdir", - "windows-sys 0.60.2", + "bitflags 2.10.0", + "fsevent-sys", + "inotify", + "kqueue", + "libc", + "log", + "mio", + "notify-types", + "walkdir", + "windows-sys 0.60.2", ] [[package]] @@ -5710,10 +5646,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8" dependencies = [ - "log", - "notify", - "notify-types", - "tempfile", + "log", + "notify", + "notify-types", + "tempfile", ] [[package]] @@ -5728,7 +5664,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" dependencies = [ - "winapi", + "winapi", ] [[package]] @@ -5737,7 +5673,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -5746,12 +5682,12 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ - "num-bigint", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", ] [[package]] @@ -5760,9 +5696,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "num-integer", - "num-traits", - "rand 0.8.5", + "num-integer", + "num-traits", + "rand 0.8.5", ] [[package]] @@ -5771,14 +5707,14 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" dependencies = [ - "lazy_static", - "libm", - "num-integer", - "num-iter", - "num-traits", - "rand 0.8.5", - "serde", - "smallvec", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.5", + "serde", + "smallvec", ] [[package]] @@ -5787,7 +5723,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5802,8 +5738,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec", - "itoa", + "arrayvec", + "itoa", ] [[package]] @@ -5812,7 +5748,7 @@ version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5821,9 +5757,9 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg", - "num-integer", - "num-traits", + "autocfg", + "num-integer", + "num-traits", ] [[package]] @@ -5832,9 +5768,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "num-bigint", - "num-integer", - "num-traits", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -5843,8 +5779,8 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg", - "libm", + "autocfg", + "libm", ] [[package]] @@ -5853,8 +5789,8 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi", - "libc", + "hermit-abi", + "libc", ] [[package]] @@ -5863,7 +5799,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5878,12 +5814,12 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d5c6c0ef9702176a570f06ad94f3198bc29c524c8b498f1b9346e1b1bdcbb3a" dependencies = [ - "bitflags 2.10.0", - "libloading", - "nvml-wrapper-sys", - "static_assertions", - "thiserror 1.0.69", - "wrapcenum-derive", + "bitflags 2.10.0", + "libloading", + "nvml-wrapper-sys", + "static_assertions", + "thiserror 1.0.69", + "wrapcenum-derive", ] [[package]] @@ -5892,7 +5828,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd23dbe2eb8d8335d2bce0299e0a07d6a63c089243d626ca75b770a962ff49e6" dependencies = [ - "libloading", + "libloading", ] [[package]] @@ -5901,7 +5837,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -5910,8 +5846,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15" dependencies = [ - "libc", - "objc2-core-foundation", + "libc", + "objc2-core-foundation", ] [[package]] @@ -5920,7 +5856,7 @@ version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5929,7 +5865,7 @@ version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5938,22 +5874,22 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740" dependencies = [ - "async-trait", - "bytes", - "chrono", - "futures", - "http 1.4.0", - "humantime", - "itertools 0.14.0", - "parking_lot", - "percent-encoding", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "walkdir", - "wasm-bindgen-futures", - "web-time", + "async-trait", + "bytes", + "chrono", + "futures", + "http 1.4.0", + "humantime", + "itertools 0.14.0", + "parking_lot", + "percent-encoding", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "walkdir", + "wasm-bindgen-futures", + "web-time", ] [[package]] @@ -5962,7 +5898,7 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs", + "asn1-rs", ] [[package]] @@ -6001,12 +5937,12 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0" dependencies = [ - "futures-core", - "futures-sink", - "js-sys", - "pin-project-lite", - "thiserror 2.0.17", - "tracing", + "futures-core", + "futures-sink", + "js-sys", + "pin-project-lite", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -6015,12 +5951,12 @@ version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2" dependencies = [ - "opentelemetry", - "tracing", - "tracing-core", - "tracing-log", - "tracing-opentelemetry", - "tracing-subscriber", + "opentelemetry", + "tracing", + "tracing-core", + "tracing-log", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] @@ -6029,11 +5965,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d" dependencies = [ - "async-trait", - "bytes", - "http 1.4.0", - "opentelemetry", - "reqwest", + "async-trait", + "bytes", + "http 1.4.0", + "opentelemetry", + "reqwest", ] [[package]] @@ -6042,16 +5978,16 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf" dependencies = [ - "flate2", - "http 1.4.0", - "opentelemetry", - "opentelemetry-http", - "opentelemetry-proto", - "opentelemetry_sdk", - "prost 0.14.3", - "reqwest", - "thiserror 2.0.17", - "tracing", + "flate2", + "http 1.4.0", + "opentelemetry", + "opentelemetry-http", + "opentelemetry-proto", + "opentelemetry_sdk", + "prost 0.14.3", + "reqwest", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -6060,11 +5996,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f" dependencies = [ - "opentelemetry", - "opentelemetry_sdk", - "prost 0.14.3", - "tonic", - "tonic-prost", + "opentelemetry", + "opentelemetry_sdk", + "prost 0.14.3", + "tonic", + "tonic-prost", ] [[package]] @@ -6079,9 +6015,9 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc8887887e169414f637b18751487cce4e095be787d23fad13c454e2fb1b3811" dependencies = [ - "chrono", - "opentelemetry", - "opentelemetry_sdk", + "chrono", + "opentelemetry", + "opentelemetry_sdk", ] [[package]] @@ -6090,15 +6026,15 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd" dependencies = [ - "futures-channel", - "futures-executor", - "futures-util", - "opentelemetry", - "percent-encoding", - "rand 0.9.2", - "thiserror 2.0.17", - "tokio", - "tokio-stream", + "futures-channel", + "futures-executor", + "futures-util", + "opentelemetry", + "percent-encoding", + "rand 0.9.2", + "thiserror 2.0.17", + "tokio", + "tokio-stream", ] [[package]] @@ -6113,7 +6049,7 @@ version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -6128,9 +6064,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ - "ecdsa 0.14.8", - "elliptic-curve 0.12.3", - "sha2 0.10.9", + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.9", ] [[package]] @@ -6139,10 +6075,10 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6151,10 +6087,10 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6163,12 +6099,12 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" dependencies = [ - "base16ct 0.2.0", - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "rand_core 0.6.4", - "sha2 0.10.9", + "base16ct 0.2.0", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "rand_core 0.6.4", + "sha2 0.10.9", ] [[package]] @@ -6177,8 +6113,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -6187,17 +6123,17 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595" dependencies = [ - "byteorder", - "bytes", - "delegate", - "futures", - "log", - "rand 0.8.5", - "sha2 0.10.9", - "thiserror 1.0.69", - "tokio", - "windows 0.62.2", - "windows-strings 0.5.1", + "byteorder", + "bytes", + "delegate", + "futures", + "log", + "rand 0.8.5", + "sha2 0.10.9", + "thiserror 1.0.69", + "tokio", + "windows 0.62.2", + "windows-strings 0.5.1", ] [[package]] @@ -6212,8 +6148,8 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ - "lock_api", - "parking_lot_core", + "lock_api", + "parking_lot_core", ] [[package]] @@ -6222,11 +6158,11 @@ version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.5.18", - "smallvec", - "windows-link 0.2.1", + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link 0.2.1", ] [[package]] @@ -6235,35 +6171,35 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-ipc", - "arrow-schema", - "arrow-select", - "base64", - "brotli 8.0.2", - "bytes", - "chrono", - "flate2", - "futures", - "half", - "hashbrown 0.16.1", - "lz4_flex", - "num-bigint", - "num-integer", - "num-traits", - "object_store", - "paste", - "seq-macro", - "simdutf8", - "snap", - "thrift", - "tokio", - "twox-hash", - "zstd", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "base64", + "brotli", + "bytes", + "chrono", + "flate2", + "futures", + "half", + "hashbrown 0.16.1", + "lz4_flex", + "num-bigint", + "num-integer", + "num-traits", + "object_store", + "paste", + "seq-macro", + "simdutf8", + "snap", + "thrift", + "tokio", + "twox-hash", + "zstd", ] [[package]] @@ -6272,9 +6208,9 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", + "base64ct", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -6283,8 +6219,8 @@ version = "0.6.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f77af9403a6489b7b51f552693bd48d8e81a710c92d3d77648b203558578762d" dependencies = [ - "getrandom 0.4.0-rc.0", - "phc", + "getrandom 0.4.0-rc.0", + "phc", ] [[package]] @@ -6311,7 +6247,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" dependencies = [ - "path-dedot", + "path-dedot", ] [[package]] @@ -6326,7 +6262,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" dependencies = [ - "once_cell", + "once_cell", ] [[package]] @@ -6335,18 +6271,18 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ - "digest 0.10.7", - "hmac 0.12.1", + "digest 0.10.7", + "hmac 0.12.1", ] [[package]] name = "pbkdf2" -version = "0.13.0-rc.6" +version = "0.13.0-rc.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb9b101849c3ddab38905781f5aa7ae14ea06e87befaf0e7b003e5d3186250d" +checksum = "eedc1683fe7216d6ce1294e870b994b4418660ad692d55297f631be0b6300666" dependencies = [ - "digest 0.11.0-rc.5", - "hmac 0.13.0-rc.3", + "digest 0.11.0-rc.5", + "hmac 0.13.0-rc.3", ] [[package]] @@ -6355,8 +6291,8 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", - "serde_core", + "base64", + "serde_core", ] [[package]] @@ -6365,7 +6301,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6374,7 +6310,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6389,10 +6325,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" dependencies = [ - "fixedbitset", - "hashbrown 0.15.5", - "indexmap 2.13.0", - "serde", + "fixedbitset", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "serde", ] [[package]] @@ -6401,9 +6337,9 @@ version = "0.6.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71d390c5fe8d102c2c18ff39f1e72b9ad5996de282c2d831b0312f56910f5508" dependencies = [ - "base64ct", - "getrandom 0.4.0-rc.0", - "subtle", + "base64ct", + "getrandom 0.4.0-rc.0", + "subtle", ] [[package]] @@ -6412,8 +6348,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "phf_macros", - "phf_shared 0.11.3", + "phf_macros", + "phf_shared 0.11.3", ] [[package]] @@ -6422,7 +6358,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ - "phf_shared 0.12.1", + "phf_shared 0.12.1", ] [[package]] @@ -6431,8 +6367,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.3", - "rand 0.8.5", + "phf_shared 0.11.3", + "rand 0.8.5", ] [[package]] @@ -6441,11 +6377,11 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator", - "phf_shared 0.11.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "phf_generator", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6454,7 +6390,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6463,7 +6399,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6472,7 +6408,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ - "pin-project-internal", + "pin-project-internal", ] [[package]] @@ -6481,9 +6417,9 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6504,8 +6440,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6514,13 +6450,13 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6" dependencies = [ - "aes 0.8.4", - "cbc", - "der 0.7.10", - "pbkdf2 0.12.2", - "scrypt", - "sha2 0.10.9", - "spki 0.7.3", + "aes 0.8.4", + "cbc", + "der 0.7.10", + "pbkdf2 0.12.2", + "scrypt", + "sha2 0.10.9", + "spki 0.7.3", ] [[package]] @@ -6529,8 +6465,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" dependencies = [ - "der 0.6.1", - "spki 0.6.0", + "der 0.6.1", + "spki 0.6.0", ] [[package]] @@ -6539,10 +6475,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der 0.7.10", - "pkcs5", - "rand_core 0.6.4", - "spki 0.7.3", + "der 0.7.10", + "pkcs5", + "rand_core 0.6.4", + "spki 0.7.3", ] [[package]] @@ -6551,8 +6487,8 @@ version = "0.11.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77089aec8290d0b7bb01b671b091095cf1937670725af4fd73d47249f03b12c0" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6567,11 +6503,11 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -6586,7 +6522,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" dependencies = [ - "plotters-backend", + "plotters-backend", ] [[package]] @@ -6601,9 +6537,9 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" dependencies = [ - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6612,9 +6548,9 @@ version = "0.9.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c0749ae91cfe6e68c77c4d48802d9720ee06aed3f7100a38975fb0962d50bc" dependencies = [ - "cpufeatures", - "universal-hash 0.6.0-rc.4", - "zeroize", + "cpufeatures", + "universal-hash 0.6.0-rc.4", + "zeroize", ] [[package]] @@ -6623,10 +6559,10 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ - "cfg-if", - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6635,9 +6571,9 @@ version = "0.7.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ad60831c19edda4b20878a676595c357e93a9b4e6dca2ba98d75b01066b317b" dependencies = [ - "cfg-if", - "cpufeatures", - "universal-hash 0.6.0-rc.4", + "cfg-if", + "cpufeatures", + "universal-hash 0.6.0-rc.4", ] [[package]] @@ -6652,7 +6588,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" dependencies = [ - "zerovec", + "zerovec", ] [[package]] @@ -6673,22 +6609,22 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187" dependencies = [ - "aligned-vec", - "backtrace", - "cfg-if", - "findshlibs", - "inferno 0.11.21", - "libc", - "log", - "nix 0.26.4", - "once_cell", - "protobuf", - "protobuf-codegen", - "smallvec", - "spin 0.10.0", - "symbolic-demangle", - "tempfile", - "thiserror 2.0.17", + "aligned-vec", + "backtrace", + "cfg-if", + "findshlibs", + "inferno 0.11.21", + "libc", + "log", + "nix 0.26.4", + "once_cell", + "protobuf", + "protobuf-codegen", + "smallvec", + "spin 0.10.0", + "symbolic-demangle", + "tempfile", + "thiserror 2.0.17", ] [[package]] @@ -6697,13 +6633,13 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4429d44e5e2c8a69399fc0070379201eed018e3df61e04eb7432811df073c224" dependencies = [ - "anyhow", - "backtrace", - "flate2", - "inferno 0.12.4", - "num", - "paste", - "prost 0.13.5", + "anyhow", + "backtrace", + "flate2", + "inferno 0.12.4", + "num", + "paste", + "prost 0.13.5", ] [[package]] @@ -6712,7 +6648,7 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy", + "zerocopy", ] [[package]] @@ -6721,8 +6657,8 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ - "diff", - "yansi", + "diff", + "yansi", ] [[package]] @@ -6731,8 +6667,8 @@ version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ - "proc-macro2", - "syn 2.0.114", + "proc-macro2", + "syn 2.0.114", ] [[package]] @@ -6741,16 +6677,7 @@ version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ - "elliptic-curve 0.13.8", -] - -[[package]] -name = "proc-macro-crate" -version = "3.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" -dependencies = [ - "toml_edit 0.23.10+spec-1.0.0", + "elliptic-curve 0.13.8", ] [[package]] @@ -6759,8 +6686,8 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" dependencies = [ - "proc-macro2", - "quote", + "proc-macro2", + "quote", ] [[package]] @@ -6769,10 +6696,10 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" dependencies = [ - "proc-macro-error-attr2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6781,7 +6708,7 @@ version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -6790,12 +6717,12 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" dependencies = [ - "cfg-if", - "fnv", - "lazy_static", - "memchr", - "parking_lot", - "thiserror 2.0.17", + "cfg-if", + "fnv", + "lazy_static", + "memchr", + "parking_lot", + "thiserror 2.0.17", ] [[package]] @@ -6804,8 +6731,8 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ - "bytes", - "prost-derive 0.13.5", + "bytes", + "prost-derive 0.13.5", ] [[package]] @@ -6814,8 +6741,8 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" dependencies = [ - "bytes", - "prost-derive 0.14.3", + "bytes", + "prost-derive 0.14.3", ] [[package]] @@ -6824,19 +6751,19 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" dependencies = [ - "heck", - "itertools 0.14.0", - "log", - "multimap", - "petgraph", - "prettyplease", - "prost 0.14.3", - "prost-types", - "pulldown-cmark", - "pulldown-cmark-to-cmark", - "regex", - "syn 2.0.114", - "tempfile", + "heck", + "itertools 0.14.0", + "log", + "multimap", + "petgraph", + "prettyplease", + "prost 0.14.3", + "prost-types", + "pulldown-cmark", + "pulldown-cmark-to-cmark", + "regex", + "syn 2.0.114", + "tempfile", ] [[package]] @@ -6845,11 +6772,11 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6858,11 +6785,11 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6871,7 +6798,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" dependencies = [ - "prost 0.14.3", + "prost 0.14.3", ] [[package]] @@ -6880,9 +6807,9 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" dependencies = [ - "once_cell", - "protobuf-support", - "thiserror 1.0.69", + "once_cell", + "protobuf-support", + "thiserror 1.0.69", ] [[package]] @@ -6891,13 +6818,13 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace" dependencies = [ - "anyhow", - "once_cell", - "protobuf", - "protobuf-parse", - "regex", - "tempfile", - "thiserror 1.0.69", + "anyhow", + "once_cell", + "protobuf", + "protobuf-parse", + "regex", + "tempfile", + "thiserror 1.0.69", ] [[package]] @@ -6906,14 +6833,14 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973" dependencies = [ - "anyhow", - "indexmap 2.13.0", - "log", - "protobuf", - "protobuf-support", - "tempfile", - "thiserror 1.0.69", - "which", + "anyhow", + "indexmap 2.13.0", + "log", + "protobuf", + "protobuf-support", + "tempfile", + "thiserror 1.0.69", + "which", ] [[package]] @@ -6922,7 +6849,7 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" dependencies = [ - "thiserror 1.0.69", + "thiserror 1.0.69", ] [[package]] @@ -6931,8 +6858,8 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e50c72c21c738f5c5f350cc33640aee30bf7cd20f9d9da20ed41bce2671d532" dependencies = [ - "bytes", - "snafu 0.6.10", + "bytes", + "snafu 0.6.10", ] [[package]] @@ -6941,8 +6868,8 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" dependencies = [ - "ar_archive_writer", - "cc", + "ar_archive_writer", + "cc", ] [[package]] @@ -6951,9 +6878,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0" dependencies = [ - "bitflags 2.10.0", - "memchr", - "unicase", + "bitflags 2.10.0", + "memchr", + "unicase", ] [[package]] @@ -6962,7 +6889,7 @@ version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90" dependencies = [ - "pulldown-cmark", + "pulldown-cmark", ] [[package]] @@ -6971,7 +6898,7 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6980,8 +6907,8 @@ version = "0.37.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -6990,7 +6917,7 @@ version = "0.38.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6999,9 +6926,9 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2e3bf4aa9d243beeb01a7b3bc30b77cfe2c44e24ec02d751a7104a53c2c49a1" dependencies = [ - "memchr", - "serde", - "tokio", + "memchr", + "serde", + "tokio", ] [[package]] @@ -7010,18 +6937,18 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror 2.0.17", - "tokio", - "tracing", - "web-time", + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror 2.0.17", + "tokio", + "tracing", + "web-time", ] [[package]] @@ -7030,19 +6957,19 @@ version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" dependencies = [ - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.2", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.17", - "tinyvec", - "tracing", - "web-time", + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.2", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.17", + "tinyvec", + "tracing", + "web-time", ] [[package]] @@ -7051,12 +6978,12 @@ version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.60.2", + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", ] [[package]] @@ -7065,7 +6992,7 @@ version = "1.0.43" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" dependencies = [ - "proc-macro2", + "proc-macro2", ] [[package]] @@ -7080,9 +7007,9 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", ] [[package]] @@ -7091,8 +7018,8 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_chacha 0.9.0", + "rand_core 0.9.5", ] [[package]] @@ -7101,10 +7028,10 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bccc05ac8fad6ee391f3cc6725171817eed960345e2fb42ad229d486c1ca2d98" dependencies = [ - "chacha20 0.10.0-rc.6", - "getrandom 0.4.0-rc.0", - "rand_core 0.10.0-rc-3", - "serde", + "chacha20 0.10.0-rc.6", + "getrandom 0.4.0-rc.0", + "rand_core 0.10.0-rc-3", + "serde", ] [[package]] @@ -7113,8 +7040,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", + "ppv-lite86", + "rand_core 0.6.4", ] [[package]] @@ -7123,8 +7050,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ - "ppv-lite86", - "rand_core 0.9.3", + "ppv-lite86", + "rand_core 0.9.5", ] [[package]] @@ -7133,16 +7060,16 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.17", + "getrandom 0.2.17", ] [[package]] name = "rand_core" -version = "0.9.3" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ - "getrandom 0.3.4", + "getrandom 0.3.4", ] [[package]] @@ -7157,8 +7084,8 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ - "either", - "rayon-core", + "either", + "rayon-core", ] [[package]] @@ -7167,8 +7094,8 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ - "crossbeam-deque", - "crossbeam-utils", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] @@ -7177,12 +7104,12 @@ version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ec0a99f2de91c3cddc84b37e7db80e4d96b743e05607f647eb236fc0455907f" dependencies = [ - "pem", - "ring", - "rustls-pki-types", - "time", - "x509-parser 0.18.0", - "yasna", + "pem", + "ring", + "rustls-pki-types", + "time", + "x509-parser 0.18.0", + "yasna", ] [[package]] @@ -7197,8 +7124,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" dependencies = [ - "recursive-proc-macro-impl", - "stacker", + "recursive-proc-macro-impl", + "stacker", ] [[package]] @@ -7207,8 +7134,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" dependencies = [ - "quote", - "syn 2.0.114", + "quote", + "syn 2.0.114", ] [[package]] @@ -7217,7 +7144,7 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7226,7 +7153,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7235,9 +7162,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.17", - "libredox", - "thiserror 2.0.17", + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.17", ] [[package]] @@ -7246,10 +7173,10 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cffef0520d30fbd4151fb20e262947ae47fb0ab276a744a19b6398438105a072" dependencies = [ - "cpufeatures", - "fixedbitset", - "once_cell", - "readme-rustdocifier", + "cpufeatures", + "fixedbitset", + "once_cell", + "readme-rustdocifier", ] [[package]] @@ -7258,7 +7185,7 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ - "ref-cast-impl", + "ref-cast-impl", ] [[package]] @@ -7267,9 +7194,9 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -7278,10 +7205,10 @@ version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", ] [[package]] @@ -7290,9 +7217,9 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] @@ -7307,57 +7234,51 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" -[[package]] -name = "relative-path" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" - [[package]] name = "reqwest" version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots", + "base64", + "bytes", + "encoding_rs", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", ] [[package]] @@ -7366,9 +7287,9 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" dependencies = [ - "crypto-bigint 0.4.9", - "hmac 0.12.1", - "zeroize", + "crypto-bigint 0.4.9", + "hmac 0.12.1", + "zeroize", ] [[package]] @@ -7377,8 +7298,8 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "hmac 0.12.1", - "subtle", + "hmac 0.12.1", + "subtle", ] [[package]] @@ -7387,7 +7308,7 @@ version = "0.8.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" dependencies = [ - "bytemuck", + "bytemuck", ] [[package]] @@ -7396,12 +7317,12 @@ version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.17", - "libc", - "untrusted 0.9.0", - "windows-sys 0.52.0", + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", ] [[package]] @@ -7410,20 +7331,20 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528d42f8176e6e5e71ea69182b17d1d0a19a6b3b894b564678b74cd7cab13cfa" dependencies = [ - "async-trait", - "base64", - "chrono", - "futures", - "pastey 0.2.1", - "pin-project-lite", - "rmcp-macros", - "schemars 1.2.0", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-util", - "tracing", + "async-trait", + "base64", + "chrono", + "futures", + "pastey 0.2.1", + "pin-project-lite", + "rmcp-macros", + "schemars 1.2.0", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -7432,11 +7353,11 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3f81daaa494eb8e985c9462f7d6ce1ab05e5299f48aafd76cdd3d8b060e6f59" dependencies = [ - "darling 0.23.0", - "proc-macro2", - "quote", - "serde_json", - "syn 2.0.114", + "darling 0.23.0", + "proc-macro2", + "quote", + "serde_json", + "syn 2.0.114", ] [[package]] @@ -7445,7 +7366,7 @@ version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -7454,56 +7375,27 @@ version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155" dependencies = [ - "rmp", - "serde", + "rmp", + "serde", ] [[package]] name = "rsa" -version = "0.10.0-rc.11" +version = "0.10.0-rc.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d27d813937fdf8e9ad15e3e422a55da4021d29639000139ca19d99f3949060da" +checksum = "c9a2b1eacbc34fbaf77f6f1db1385518446008d49b9f9f59dc9d1340fce4ca9e" dependencies = [ - "const-oid 0.10.2", - "crypto-bigint 0.7.0-rc.15", - "crypto-primes", - "digest 0.11.0-rc.5", - "pkcs1", - "pkcs8 0.11.0-rc.8", - "rand_core 0.10.0-rc-3", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "spki 0.8.0-rc.4", - "zeroize", -] - -[[package]] -name = "rstest" -version = "0.26.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49" -dependencies = [ - "futures-timer", - "futures-util", - "rstest_macros", -] - -[[package]] -name = "rstest_macros" -version = "0.26.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0" -dependencies = [ - "cfg-if", - "glob", - "proc-macro-crate", - "proc-macro2", - "quote", - "regex", - "relative-path", - "rustc_version", - "syn 2.0.114", - "unicode-ident", + "const-oid 0.10.2", + "crypto-bigint 0.7.0-rc.18", + "crypto-primes", + "digest 0.11.0-rc.5", + "pkcs1", + "pkcs8 0.11.0-rc.8", + "rand_core 0.10.0-rc-3", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "spki 0.8.0-rc.4", + "zeroize", ] [[package]] @@ -7512,19 +7404,19 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0feff8d882bff0b2fddaf99355a10336d43dd3ed44204f85ece28cf9626ab519" dependencies = [ - "bytes", - "fixedbitset", - "flume", - "futures-util", - "log", - "rustls-native-certs", - "rustls-pemfile", - "rustls-webpki 0.102.8", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", + "bytes", + "fixedbitset", + "flume", + "futures-util", + "log", + "rustls-native-certs", + "rustls-pemfile", + "rustls-webpki 0.102.8", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", ] [[package]] @@ -7533,59 +7425,59 @@ version = "0.56.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdbb7dcdd62c17ac911307ff693f55b3ec6712004d2d66ffdb8c0fa00269fd66" dependencies = [ - "aes 0.8.4", - "aws-lc-rs", - "bitflags 2.10.0", - "block-padding", - "byteorder", - "bytes", - "cbc", - "ctr 0.9.2", - "curve25519-dalek 4.1.3", - "data-encoding", - "delegate", - "der 0.7.10", - "digest 0.10.7", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "elliptic-curve 0.13.8", - "enum_dispatch", - "futures", - "generic-array 1.3.5", - "getrandom 0.2.17", - "hex-literal", - "hmac 0.12.1", - "home", - "inout 0.1.4", - "internal-russh-forked-ssh-key", - "libcrux-ml-kem", - "log", - "md5 0.7.0", - "num-bigint", - "p256 0.13.2", - "p384", - "p521", - "pageant", - "pbkdf2 0.12.2", - "pkcs1", - "pkcs5", - "pkcs8 0.10.2", - "rand 0.8.5", - "rand_core 0.6.4", - "rsa", - "russh-cryptovec", - "russh-util", - "sec1 0.7.3", - "sha1 0.10.6", - "sha2 0.10.9", - "signature 2.2.0", - "spki 0.7.3", - "ssh-encoding 0.2.0", - "subtle", - "thiserror 1.0.69", - "tokio", - "typenum", - "zeroize", + "aes 0.8.4", + "aws-lc-rs", + "bitflags 2.10.0", + "block-padding", + "byteorder", + "bytes", + "cbc", + "ctr 0.9.2", + "curve25519-dalek 4.1.3", + "data-encoding", + "delegate", + "der 0.7.10", + "digest 0.10.7", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "elliptic-curve 0.13.8", + "enum_dispatch", + "futures", + "generic-array 1.3.5", + "getrandom 0.2.17", + "hex-literal", + "hmac 0.12.1", + "home", + "inout 0.1.4", + "internal-russh-forked-ssh-key", + "libcrux-ml-kem", + "log", + "md5 0.7.0", + "num-bigint", + "p256 0.13.2", + "p384", + "p521", + "pageant", + "pbkdf2 0.12.2", + "pkcs1", + "pkcs5", + "pkcs8 0.10.2", + "rand 0.8.5", + "rand_core 0.6.4", + "rsa", + "russh-cryptovec", + "russh-util", + "sec1 0.7.3", + "sha1 0.10.6", + "sha2 0.10.9", + "signature 2.2.0", + "spki 0.7.3", + "ssh-encoding 0.2.0", + "subtle", + "thiserror 1.0.69", + "tokio", + "typenum", + "zeroize", ] [[package]] @@ -7594,11 +7486,11 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf" dependencies = [ - "libc", - "log", - "nix 0.29.0", - "ssh-encoding 0.2.0", - "winapi", + "libc", + "log", + "nix 0.29.0", + "ssh-encoding 0.2.0", + "winapi", ] [[package]] @@ -7607,15 +7499,15 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bb94393cafad0530145b8f626d8687f1ee1dedb93d7ba7740d6ae81868b13b5" dependencies = [ - "bitflags 2.10.0", - "bytes", - "chrono", - "flurry", - "log", - "serde", - "thiserror 2.0.17", - "tokio", - "tokio-util", + "bitflags 2.10.0", + "bytes", + "chrono", + "flurry", + "log", + "serde", + "thiserror 2.0.17", + "tokio", + "tokio-util", ] [[package]] @@ -7624,45 +7516,45 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6" dependencies = [ - "chrono", - "tokio", - "wasm-bindgen", - "wasm-bindgen-futures", + "chrono", + "tokio", + "wasm-bindgen", + "wasm-bindgen-futures", ] [[package]] name = "rust-embed" -version = "8.9.0" +version = "8.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca" +checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27" dependencies = [ - "rust-embed-impl", - "rust-embed-utils", - "walkdir", + "rust-embed-impl", + "rust-embed-utils", + "walkdir", ] [[package]] name = "rust-embed-impl" -version = "8.9.0" +version = "8.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2" +checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa" dependencies = [ - "proc-macro2", - "quote", - "rust-embed-utils", - "shellexpand", - "syn 2.0.114", - "walkdir", + "proc-macro2", + "quote", + "rust-embed-utils", + "shellexpand", + "syn 2.0.114", + "walkdir", ] [[package]] name = "rust-embed-utils" -version = "8.9.0" +version = "8.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475" +checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1" dependencies = [ - "sha2 0.10.9", - "walkdir", + "sha2 0.10.9", + "walkdir", ] [[package]] @@ -7683,712 +7575,712 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver", + "semver", ] [[package]] name = "rustfs" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-trait", - "atoi", - "atomic_enum", - "axum", - "axum-server", - "base64", - "base64-simd", - "bytes", - "chrono", - "clap", - "const-str", - "datafusion", - "flatbuffers", - "futures", - "futures-util", - "hex-simd", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "jemalloc_pprof", - "libc", - "libsystemd", - "libunftp", - "matchit 0.9.1", - "md5 0.8.0", - "metrics", - "mimalloc", - "mime_guess", - "moka", - "pin-project-lite", - "pprof", - "reqwest", - "rmp-serde", - "russh", - "russh-sftp", - "rust-embed", - "rustfs-ahm", - "rustfs-appauth", - "rustfs-audit", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-iam", - "rustfs-kms", - "rustfs-lock", - "rustfs-madmin", - "rustfs-notify", - "rustfs-obs", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-s3select-api", - "rustfs-s3select-query", - "rustfs-targets", - "rustfs-utils", - "rustfs-zip", - "rustls", - "rustls-pemfile", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "serial_test", - "shadow-rs", - "socket2", - "ssh-key", - "subtle", - "sysinfo", - "thiserror 2.0.17", - "tikv-jemalloc-ctl", - "tikv-jemallocator", - "time", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", - "tonic", - "tower", - "tower-http", - "tracing", - "url", - "urlencoding", - "uuid", - "zip", + "astral-tokio-tar", + "async-trait", + "atoi", + "atomic_enum", + "axum", + "axum-server", + "base64", + "base64-simd", + "bytes", + "chrono", + "clap", + "const-str", + "datafusion", + "flatbuffers", + "futures", + "futures-util", + "hex-simd", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "jemalloc_pprof", + "libc", + "libsystemd", + "libunftp", + "matchit 0.9.1", + "md5 0.8.0", + "metrics", + "mimalloc", + "mime_guess", + "moka", + "pin-project-lite", + "pprof", + "reqwest", + "rmp-serde", + "russh", + "russh-sftp", + "rust-embed", + "rustfs-ahm", + "rustfs-appauth", + "rustfs-audit", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-iam", + "rustfs-kms", + "rustfs-lock", + "rustfs-madmin", + "rustfs-notify", + "rustfs-obs", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-s3select-api", + "rustfs-s3select-query", + "rustfs-targets", + "rustfs-utils", + "rustfs-zip", + "rustls", + "rustls-pemfile", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "serial_test", + "shadow-rs", + "socket2", + "ssh-key", + "subtle", + "sysinfo", + "thiserror 2.0.17", + "tikv-jemalloc-ctl", + "tikv-jemallocator", + "time", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", + "tonic", + "tower", + "tower-http", + "tracing", + "url", + "urlencoding", + "uuid", + "zip", ] [[package]] name = "rustfs-ahm" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "chrono", - "futures", - "heed", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-common", - "rustfs-config", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-madmin", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "serial_test", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", - "tracing-subscriber", - "uuid", - "walkdir", + "anyhow", + "async-trait", + "chrono", + "futures", + "heed", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-common", + "rustfs-config", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-madmin", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "serial_test", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", + "tracing-subscriber", + "uuid", + "walkdir", ] [[package]] name = "rustfs-appauth" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "rsa", - "serde", - "serde_json", + "base64-simd", + "rand 0.10.0-rc.6", + "rsa", + "serde", + "serde_json", ] [[package]] name = "rustfs-audit" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "const-str", - "futures", - "hashbrown 0.16.1", - "metrics", - "rumqttc", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", + "async-trait", + "chrono", + "const-str", + "futures", + "hashbrown 0.16.1", + "metrics", + "rumqttc", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", ] [[package]] name = "rustfs-checksums" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "crc-fast", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pretty_assertions", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", + "base64-simd", + "bytes", + "crc-fast", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pretty_assertions", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", ] [[package]] name = "rustfs-common" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "path-clean", - "rmp-serde", - "rustfs-filemeta", - "rustfs-madmin", - "s3s", - "serde", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "chrono", + "path-clean", + "rmp-serde", + "rustfs-filemeta", + "rustfs-madmin", + "s3s", + "serde", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-config" version = "0.0.5" dependencies = [ - "const-str", + "const-str", ] [[package]] name = "rustfs-credentials" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "serde", - "serde_json", - "time", + "base64-simd", + "rand 0.10.0-rc.6", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-crypto" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "argon2 0.6.0-rc.5", - "cfg-if", - "chacha20poly1305", - "jsonwebtoken", - "pbkdf2 0.13.0-rc.6", - "rand 0.10.0-rc.6", - "serde_json", - "sha2 0.11.0-rc.3", - "test-case", - "thiserror 2.0.17", - "time", + "aes-gcm 0.11.0-rc.2", + "argon2 0.6.0-rc.5", + "cfg-if", + "chacha20poly1305", + "jsonwebtoken", + "pbkdf2 0.13.0-rc.7", + "rand 0.10.0-rc.6", + "serde_json", + "sha2 0.11.0-rc.3", + "test-case", + "thiserror 2.0.17", + "time", ] [[package]] name = "rustfs-ecstore" version = "0.0.5" dependencies = [ - "async-channel", - "async-recursion", - "async-trait", - "aws-config", - "aws-credential-types", - "aws-sdk-s3", - "aws-smithy-types", - "base64", - "base64-simd", - "byteorder", - "bytes", - "bytesize", - "chrono", - "criterion", - "dunce", - "enumset", - "faster-hex", - "flatbuffers", - "futures", - "glob", - "google-cloud-auth", - "google-cloud-storage", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "lazy_static", - "md-5 0.11.0-rc.3", - "moka", - "num_cpus", - "parking_lot", - "path-absolutize", - "pin-project-lite", - "quick-xml 0.39.0", - "rand 0.10.0-rc.6", - "reed-solomon-simd", - "regex", - "reqwest", - "rmp", - "rmp-serde", - "rustfs-checksums", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-signer", - "rustfs-utils", - "rustfs-workers", - "rustls", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "shadow-rs", - "smallvec", - "temp-env", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tonic", - "tower", - "tracing", - "tracing-subscriber", - "url", - "urlencoding", - "uuid", - "xxhash-rust", + "async-channel", + "async-recursion", + "async-trait", + "aws-config", + "aws-credential-types", + "aws-sdk-s3", + "aws-smithy-types", + "base64", + "base64-simd", + "byteorder", + "bytes", + "bytesize", + "chrono", + "criterion", + "dunce", + "enumset", + "faster-hex", + "flatbuffers", + "futures", + "glob", + "google-cloud-auth", + "google-cloud-storage", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "lazy_static", + "md-5 0.11.0-rc.3", + "moka", + "num_cpus", + "parking_lot", + "path-absolutize", + "pin-project-lite", + "quick-xml 0.39.0", + "rand 0.10.0-rc.6", + "reed-solomon-simd", + "regex", + "reqwest", + "rmp", + "rmp-serde", + "rustfs-checksums", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-signer", + "rustfs-utils", + "rustfs-workers", + "rustls", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "shadow-rs", + "smallvec", + "temp-env", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tonic", + "tower", + "tracing", + "tracing-subscriber", + "url", + "urlencoding", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-filemeta" version = "0.0.5" dependencies = [ - "byteorder", - "bytes", - "crc-fast", - "criterion", - "regex", - "rmp", - "rmp-serde", - "rustfs-utils", - "s3s", - "serde", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", - "uuid", - "xxhash-rust", + "byteorder", + "bytes", + "crc-fast", + "criterion", + "regex", + "rmp", + "rmp-serde", + "rustfs-utils", + "s3s", + "serde", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-iam" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "base64-simd", - "futures", - "jsonwebtoken", - "pollster", - "rand 0.10.0-rc.6", - "rustfs-credentials", - "rustfs-crypto", - "rustfs-ecstore", - "rustfs-madmin", - "rustfs-policy", - "rustfs-utils", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", + "arc-swap", + "async-trait", + "base64-simd", + "futures", + "jsonwebtoken", + "pollster", + "rand 0.10.0-rc.6", + "rustfs-credentials", + "rustfs-crypto", + "rustfs-ecstore", + "rustfs-madmin", + "rustfs-policy", + "rustfs-utils", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-kms" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "async-trait", - "base64", - "chacha20poly1305", - "chrono", - "md5 0.8.0", - "moka", - "rand 0.10.0-rc.6", - "reqwest", - "serde", - "serde_json", - "sha2 0.11.0-rc.3", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "uuid", - "vaultrs", - "zeroize", + "aes-gcm 0.11.0-rc.2", + "async-trait", + "base64", + "chacha20poly1305", + "chrono", + "md5 0.8.0", + "moka", + "rand 0.10.0-rc.6", + "reqwest", + "serde", + "serde_json", + "sha2 0.11.0-rc.3", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "uuid", + "vaultrs", + "zeroize", ] [[package]] name = "rustfs-lock" version = "0.0.5" dependencies = [ - "async-trait", - "crossbeam-queue", - "futures", - "parking_lot", - "serde", - "serde_json", - "smallvec", - "smartstring", - "thiserror 2.0.17", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "crossbeam-queue", + "futures", + "parking_lot", + "serde", + "serde_json", + "smallvec", + "smartstring", + "thiserror 2.0.17", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-madmin" version = "0.0.5" dependencies = [ - "chrono", - "humantime", - "hyper", - "serde", - "serde_json", - "time", + "chrono", + "humantime", + "hyper", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-mcp" version = "0.0.5" dependencies = [ - "anyhow", - "aws-sdk-s3", - "clap", - "mime_guess", - "rmcp", - "schemars 1.2.0", - "serde", - "serde_json", - "tokio", - "tracing", - "tracing-subscriber", + "anyhow", + "aws-sdk-s3", + "clap", + "mime_guess", + "rmcp", + "schemars 1.2.0", + "serde", + "serde_json", + "tokio", + "tracing", + "tracing-subscriber", ] [[package]] name = "rustfs-notify" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "axum", - "chrono", - "form_urlencoded", - "futures", - "hashbrown 0.16.1", - "quick-xml 0.39.0", - "rayon", - "rumqttc", - "rustc-hash", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "rustfs-utils", - "serde", - "serde_json", - "starshard", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-subscriber", - "url", - "wildmatch", + "arc-swap", + "async-trait", + "axum", + "chrono", + "form_urlencoded", + "futures", + "hashbrown 0.16.1", + "quick-xml 0.39.0", + "rayon", + "rumqttc", + "rustc-hash", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "rustfs-utils", + "serde", + "serde_json", + "starshard", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "wildmatch", ] [[package]] name = "rustfs-obs" version = "0.0.5" dependencies = [ - "flexi_logger", - "metrics", - "nu-ansi-term", - "nvml-wrapper", - "opentelemetry", - "opentelemetry-appender-tracing", - "opentelemetry-otlp", - "opentelemetry-semantic-conventions", - "opentelemetry-stdout", - "opentelemetry_sdk", - "rustfs-config", - "rustfs-utils", - "serde", - "smallvec", - "sysinfo", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-appender", - "tracing-error", - "tracing-opentelemetry", - "tracing-subscriber", + "flexi_logger", + "metrics", + "nu-ansi-term", + "nvml-wrapper", + "opentelemetry", + "opentelemetry-appender-tracing", + "opentelemetry-otlp", + "opentelemetry-semantic-conventions", + "opentelemetry-stdout", + "opentelemetry_sdk", + "rustfs-config", + "rustfs-utils", + "serde", + "smallvec", + "sysinfo", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-appender", + "tracing-error", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] name = "rustfs-policy" version = "0.0.5" dependencies = [ - "async-trait", - "base64-simd", - "chrono", - "futures", - "ipnetwork", - "jsonwebtoken", - "moka", - "pollster", - "regex", - "reqwest", - "rustfs-config", - "rustfs-credentials", - "rustfs-crypto", - "serde", - "serde_json", - "strum", - "temp-env", - "test-case", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", + "async-trait", + "base64-simd", + "chrono", + "futures", + "ipnetwork", + "jsonwebtoken", + "moka", + "pollster", + "regex", + "reqwest", + "rustfs-config", + "rustfs-credentials", + "rustfs-crypto", + "serde", + "serde_json", + "strum", + "temp-env", + "test-case", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", ] [[package]] name = "rustfs-protos" version = "0.0.5" dependencies = [ - "flatbuffers", - "prost 0.14.3", - "rustfs-common", - "tonic", - "tonic-prost", - "tonic-prost-build", - "tracing", + "flatbuffers", + "prost 0.14.3", + "rustfs-common", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tracing", ] [[package]] name = "rustfs-rio" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "base64", - "bytes", - "crc-fast", - "faster-hex", - "futures", - "hex-simd", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pin-project-lite", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-config", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "thiserror 2.0.17", - "tokio", - "tokio-test", - "tokio-util", - "tracing", + "aes-gcm 0.11.0-rc.2", + "base64", + "bytes", + "crc-fast", + "faster-hex", + "futures", + "hex-simd", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pin-project-lite", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-config", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "thiserror 2.0.17", + "tokio", + "tokio-test", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-s3select-api" version = "0.0.5" dependencies = [ - "async-trait", - "bytes", - "chrono", - "datafusion", - "futures", - "futures-core", - "http 1.4.0", - "object_store", - "parking_lot", - "pin-project-lite", - "rustfs-common", - "rustfs-ecstore", - "s3s", - "snafu 0.8.9", - "tokio", - "tokio-util", - "tracing", - "transform-stream", - "url", + "async-trait", + "bytes", + "chrono", + "datafusion", + "futures", + "futures-core", + "http 1.4.0", + "object_store", + "parking_lot", + "pin-project-lite", + "rustfs-common", + "rustfs-ecstore", + "s3s", + "snafu 0.8.9", + "tokio", + "tokio-util", + "tracing", + "transform-stream", + "url", ] [[package]] name = "rustfs-s3select-query" version = "0.0.5" dependencies = [ - "async-recursion", - "async-trait", - "datafusion", - "derive_builder 0.20.2", - "futures", - "parking_lot", - "rustfs-s3select-api", - "s3s", - "snafu 0.8.9", - "tokio", - "tracing", + "async-recursion", + "async-trait", + "datafusion", + "derive_builder 0.20.2", + "futures", + "parking_lot", + "rustfs-s3select-api", + "s3s", + "snafu 0.8.9", + "tokio", + "tracing", ] [[package]] name = "rustfs-signer" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "http 1.4.0", - "hyper", - "rustfs-utils", - "s3s", - "serde_urlencoded", - "time", - "tracing", + "base64-simd", + "bytes", + "http 1.4.0", + "hyper", + "rustfs-utils", + "s3s", + "serde_urlencoded", + "time", + "tracing", ] [[package]] name = "rustfs-targets" version = "0.0.5" dependencies = [ - "async-trait", - "reqwest", - "rumqttc", - "rustfs-config", - "rustfs-utils", - "serde", - "serde_json", - "snap", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "urlencoding", - "uuid", + "async-trait", + "reqwest", + "rumqttc", + "rustfs-config", + "rustfs-utils", + "serde", + "serde_json", + "snap", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "urlencoding", + "uuid", ] [[package]] name = "rustfs-utils" version = "0.0.5" dependencies = [ - "base64-simd", - "blake3", - "brotli 8.0.2", - "bytes", - "convert_case", - "crc-fast", - "flate2", - "futures", - "hashbrown 0.16.1", - "hex-simd", - "highway", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "libc", - "local-ip-address", - "lz4", - "md-5 0.11.0-rc.3", - "netif", - "nix 0.30.1", - "rand 0.10.0-rc.6", - "regex", - "rustfs-config", - "rustls", - "rustls-pemfile", - "rustls-pki-types", - "s3s", - "serde", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "siphasher", - "snap", - "sysinfo", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "transform-stream", - "url", - "windows 0.62.2", - "zstd", + "base64-simd", + "blake3", + "brotli", + "bytes", + "convert_case", + "crc-fast", + "flate2", + "futures", + "hashbrown 0.16.1", + "hex-simd", + "highway", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "libc", + "local-ip-address", + "lz4", + "md-5 0.11.0-rc.3", + "netif", + "nix 0.30.1", + "rand 0.10.0-rc.6", + "regex", + "rustfs-config", + "rustls", + "rustls-pemfile", + "rustls-pki-types", + "s3s", + "serde", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "siphasher", + "snap", + "sysinfo", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "transform-stream", + "url", + "windows 0.62.2", + "zstd", ] [[package]] name = "rustfs-workers" version = "0.0.5" dependencies = [ - "tokio", - "tracing", + "tokio", + "tracing", ] [[package]] name = "rustfs-zip" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-compression", - "tokio", - "tokio-stream", + "astral-tokio-tar", + "async-compression", + "tokio", + "tokio-stream", ] [[package]] @@ -8397,7 +8289,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom 7.1.3", + "nom 7.1.3", ] [[package]] @@ -8406,18 +8298,18 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "759a090a17ce545d1adcffcc48207d5136c8984d8153bd8247b1ad4a71e49f5f" dependencies = [ - "anyhow", - "async-trait", - "bytes", - "http 1.4.0", - "reqwest", - "rustify_derive", - "serde", - "serde_json", - "serde_urlencoded", - "thiserror 1.0.69", - "tracing", - "url", + "anyhow", + "async-trait", + "bytes", + "http 1.4.0", + "reqwest", + "rustify_derive", + "serde", + "serde_json", + "serde_urlencoded", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -8426,12 +8318,12 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f07d43b2dbdbd99aaed648192098f0f413b762f0f352667153934ef3955f1793" dependencies = [ - "proc-macro2", - "quote", - "regex", - "serde_urlencoded", - "syn 1.0.109", - "synstructure 0.12.6", + "proc-macro2", + "quote", + "regex", + "serde_urlencoded", + "syn 1.0.109", + "synstructure 0.12.6", ] [[package]] @@ -8440,11 +8332,11 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] @@ -8453,11 +8345,11 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.11.0", - "windows-sys 0.61.2", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.2", ] [[package]] @@ -8466,14 +8358,14 @@ version = "0.23.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" dependencies = [ - "aws-lc-rs", - "log", - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki 0.103.8", - "subtle", - "zeroize", + "aws-lc-rs", + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki 0.103.8", + "subtle", + "zeroize", ] [[package]] @@ -8482,10 +8374,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", - "security-framework", + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", ] [[package]] @@ -8494,7 +8386,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -8503,8 +8395,8 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" dependencies = [ - "web-time", - "zeroize", + "web-time", + "zeroize", ] [[package]] @@ -8513,9 +8405,9 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8524,10 +8416,10 @@ version = "0.103.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" dependencies = [ - "aws-lc-rs", - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "aws-lc-rs", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8548,48 +8440,48 @@ version = "0.13.0-alpha.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6ea18014c794952beba5e5faf4663be467b591d45b4834916aad4bbcd2b5c27" dependencies = [ - "arrayvec", - "async-trait", - "atoi", - "base64-simd", - "bytes", - "bytestring", - "cfg-if", - "chrono", - "const-str", - "crc-fast", - "futures", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "httparse", - "hyper", - "itoa", - "md-5 0.11.0-rc.3", - "memchr", - "mime", - "nom 8.0.0", - "numeric_cast", - "pin-project-lite", - "quick-xml 0.37.5", - "serde", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "smallvec", - "std-next", - "subtle", - "sync_wrapper", - "thiserror 2.0.17", - "time", - "tokio", - "tower", - "tracing", - "transform-stream", - "urlencoding", - "zeroize", + "arrayvec", + "async-trait", + "atoi", + "base64-simd", + "bytes", + "bytestring", + "cfg-if", + "chrono", + "const-str", + "crc-fast", + "futures", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "httparse", + "hyper", + "itoa", + "md-5 0.11.0-rc.3", + "memchr", + "mime", + "nom 8.0.0", + "numeric_cast", + "pin-project-lite", + "quick-xml 0.37.5", + "serde", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "smallvec", + "std-next", + "subtle", + "sync_wrapper", + "thiserror 2.0.17", + "time", + "tokio", + "tower", + "tracing", + "transform-stream", + "urlencoding", + "zeroize", ] [[package]] @@ -8598,7 +8490,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -8607,7 +8499,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" dependencies = [ - "winapi-util", + "winapi-util", ] [[package]] @@ -8616,7 +8508,7 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc" dependencies = [ - "sdd", + "sdd", ] [[package]] @@ -8625,7 +8517,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -8634,10 +8526,10 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ - "dyn-clone", - "ref-cast", - "serde", - "serde_json", + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] @@ -8646,12 +8538,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" dependencies = [ - "chrono", - "dyn-clone", - "ref-cast", - "schemars_derive", - "serde", - "serde_json", + "chrono", + "dyn-clone", + "ref-cast", + "schemars_derive", + "serde", + "serde_json", ] [[package]] @@ -8660,10 +8552,10 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4908ad288c5035a8eb12cfdf0d49270def0a268ee162b75eeee0f85d155a7c45" dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.114", + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.114", ] [[package]] @@ -8678,9 +8570,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" dependencies = [ - "pbkdf2 0.12.2", - "salsa20", - "sha2 0.10.9", + "pbkdf2 0.12.2", + "salsa20", + "sha2 0.10.9", ] [[package]] @@ -8695,12 +8587,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" dependencies = [ - "base16ct 0.1.1", - "der 0.6.1", - "generic-array 0.14.7", - "pkcs8 0.9.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "der 0.6.1", + "generic-array 0.14.7", + "pkcs8 0.9.0", + "subtle", + "zeroize", ] [[package]] @@ -8709,12 +8601,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ - "base16ct 0.2.0", - "der 0.7.10", - "generic-array 0.14.7", - "pkcs8 0.10.2", - "subtle", - "zeroize", + "base16ct 0.2.0", + "der 0.7.10", + "generic-array 0.14.7", + "pkcs8 0.10.2", + "subtle", + "zeroize", ] [[package]] @@ -8723,8 +8615,8 @@ version = "0.8.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2568531a8ace88b848310caa98fb2115b151ef924d54aa523e659c21b9d32d71" dependencies = [ - "base16ct 1.0.0", - "hybrid-array", + "base16ct 1.0.0", + "hybrid-array", ] [[package]] @@ -8733,11 +8625,11 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.10.1", - "core-foundation-sys", - "libc", - "security-framework-sys", + "bitflags 2.10.0", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", ] [[package]] @@ -8746,8 +8638,8 @@ version = "2.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -8762,8 +8654,8 @@ version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -8778,8 +8670,8 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ - "serde_core", - "serde_derive", + "serde_core", + "serde_derive", ] [[package]] @@ -8788,7 +8680,7 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ - "serde_derive", + "serde_derive", ] [[package]] @@ -8797,9 +8689,9 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8808,9 +8700,9 @@ version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8819,7 +8711,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e497af288b3b95d067a23a4f749f2861121ffcb2f6d8379310dcda040c345ed" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -8828,11 +8720,11 @@ version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ - "itoa", - "memchr", - "serde", - "serde_core", - "zmij", + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", ] [[package]] @@ -8841,9 +8733,9 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" dependencies = [ - "itoa", - "serde", - "serde_core", + "itoa", + "serde", + "serde_core", ] [[package]] @@ -8852,7 +8744,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -8861,10 +8753,10 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", + "form_urlencoded", + "itoa", + "ryu", + "serde", ] [[package]] @@ -8873,17 +8765,17 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" dependencies = [ - "base64", - "chrono", - "hex", - "indexmap 1.9.3", - "indexmap 2.13.0", - "schemars 0.9.0", - "schemars 1.2.0", - "serde_core", - "serde_json", - "serde_with_macros", - "time", + "base64", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.0", + "serde_core", + "serde_json", + "serde_with_macros", + "time", ] [[package]] @@ -8892,10 +8784,10 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8904,8 +8796,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06" dependencies = [ - "base16ct 1.0.0", - "serde", + "base16ct 1.0.0", + "serde", ] [[package]] @@ -8914,13 +8806,13 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555" dependencies = [ - "futures-executor", - "futures-util", - "log", - "once_cell", - "parking_lot", - "scc", - "serial_test_derive", + "futures-executor", + "futures-util", + "log", + "once_cell", + "parking_lot", + "scc", + "serial_test_derive", ] [[package]] @@ -8929,9 +8821,9 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8940,9 +8832,9 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8951,9 +8843,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa1ae819b9870cadc959a052363de870944a1646932d274a4e270f64bf79e5ef" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8962,9 +8854,9 @@ version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8973,9 +8865,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8984,12 +8876,12 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff351910f271e7065781b6b4f0f43cb515d474d812f31176a0246d9058e47d5d" dependencies = [ - "cargo_metadata", - "const_format", - "is_debug", - "serde_json", - "time", - "tzdb", + "cargo_metadata", + "const_format", + "is_debug", + "serde_json", + "time", + "tzdb", ] [[package]] @@ -8998,7 +8890,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ - "lazy_static", + "lazy_static", ] [[package]] @@ -9007,7 +8899,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb" dependencies = [ - "dirs", + "dirs", ] [[package]] @@ -9022,8 +8914,8 @@ version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ - "errno", - "libc", + "errno", + "libc", ] [[package]] @@ -9032,8 +8924,8 @@ version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -9042,8 +8934,8 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -9052,8 +8944,8 @@ version = "3.0.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a96996ccff7dfa16f052bd995b4cecc72af22c35138738dc029f0ead6608d" dependencies = [ - "digest 0.11.0-rc.5", - "rand_core 0.10.0-rc-3", + "digest 0.11.0-rc.5", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -9074,10 +8966,10 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ - "num-bigint", - "num-traits", - "thiserror 2.0.17", - "time", + "num-bigint", + "num-traits", + "thiserror 2.0.17", + "time", ] [[package]] @@ -9098,10 +8990,10 @@ version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b3b8565691b22d2bdfc066426ed48f837fc0c5f2c8cad8d9718f7f99d6995c1" dependencies = [ - "anyhow", - "erased-serde 0.3.31", - "rustversion", - "serde_core", + "anyhow", + "erased-serde 0.3.31", + "rustversion", + "serde_core", ] [[package]] @@ -9110,9 +9002,9 @@ version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" dependencies = [ - "arc-swap", - "lazy_static", - "slog", + "arc-swap", + "lazy_static", + "slog", ] [[package]] @@ -9121,9 +9013,9 @@ version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" dependencies = [ - "log", - "slog", - "slog-scope", + "log", + "slog", + "slog-scope", ] [[package]] @@ -9132,7 +9024,7 @@ version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" dependencies = [ - "serde", + "serde", ] [[package]] @@ -9141,9 +9033,9 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" dependencies = [ - "autocfg", - "static_assertions", - "version_check", + "autocfg", + "static_assertions", + "version_check", ] [[package]] @@ -9152,8 +9044,8 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7" dependencies = [ - "doc-comment", - "snafu-derive 0.6.10", + "doc-comment", + "snafu-derive 0.6.10", ] [[package]] @@ -9162,8 +9054,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2" dependencies = [ - "backtrace", - "snafu-derive 0.8.9", + "backtrace", + "snafu-derive 0.8.9", ] [[package]] @@ -9172,9 +9064,9 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -9183,10 +9075,10 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9201,8 +9093,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" dependencies = [ - "libc", - "windows-sys 0.60.2", + "libc", + "windows-sys 0.60.2", ] [[package]] @@ -9211,7 +9103,7 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9220,7 +9112,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9229,8 +9121,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" dependencies = [ - "base64ct", - "der 0.6.1", + "base64ct", + "der 0.6.1", ] [[package]] @@ -9239,8 +9131,8 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ - "base64ct", - "der 0.7.10", + "base64ct", + "der 0.7.10", ] [[package]] @@ -9249,8 +9141,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80" dependencies = [ - "base64ct", - "der 0.8.0-rc.10", + "base64ct", + "der 0.8.0-rc.10", ] [[package]] @@ -9259,9 +9151,9 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f" dependencies = [ - "log", - "recursive", - "sqlparser_derive", + "log", + "recursive", + "sqlparser_derive", ] [[package]] @@ -9270,9 +9162,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9281,31 +9173,31 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f" dependencies = [ - "aes 0.8.4", - "aes-gcm 0.10.3", - "cbc", - "chacha20 0.9.1", - "cipher 0.4.4", - "ctr 0.9.2", - "poly1305 0.8.0", - "ssh-encoding 0.2.0", - "subtle", + "aes 0.8.4", + "aes-gcm 0.10.3", + "cbc", + "chacha20 0.9.1", + "cipher 0.4.4", + "ctr 0.9.2", + "poly1305 0.8.0", + "ssh-encoding 0.2.0", + "subtle", ] [[package]] name = "ssh-cipher" -version = "0.3.0-rc.4" +version = "0.3.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "361de425e489d5fe3f1ecfd91531c8fe91ededbbc567e24b77a560d503309bf9" +checksum = "88ca7fe5fcf2f30c6fcbad76c65c0aef40a09087ef9092eae072383c7d959200" dependencies = [ - "aes 0.9.0-rc.2", - "aes-gcm 0.11.0-rc.2", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "des", - "poly1305 0.9.0-rc.3", - "ssh-encoding 0.3.0-rc.3", - "zeroize", + "aes 0.9.0-rc.2", + "aes-gcm 0.11.0-rc.2", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "des", + "poly1305 0.9.0-rc.3", + "ssh-encoding 0.3.0-rc.4", + "zeroize", ] [[package]] @@ -9314,42 +9206,42 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15" dependencies = [ - "base64ct", - "bytes", - "pem-rfc7468 0.7.0", - "sha2 0.10.9", + "base64ct", + "bytes", + "pem-rfc7468 0.7.0", + "sha2 0.10.9", ] [[package]] name = "ssh-encoding" -version = "0.3.0-rc.3" +version = "0.3.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ad6a09263583e83e934fcd436b7e3bb9d69602e2feef3787adb615c1fe3a343" +checksum = "d25a544d1b898f016dd32083ec3a926a5bff0deb6e43c691db6eb39fa11b7c9e" dependencies = [ - "base64ct", - "crypto-bigint 0.7.0-rc.15", - "digest 0.11.0-rc.5", - "pem-rfc7468 1.0.0", - "subtle", - "zeroize", + "base64ct", + "crypto-bigint 0.7.0-rc.18", + "digest 0.11.0-rc.5", + "pem-rfc7468 1.0.0", + "subtle", + "zeroize", ] [[package]] name = "ssh-key" -version = "0.7.0-rc.4" +version = "0.7.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7faefb89d4a5304e31238913d1f7f164e22494276ed58cd84d5058ba7b04911f" +checksum = "c9919f7931e320cd6e070360fee461ee2974eff306cf23748d62dca276f78819" dependencies = [ - "ed25519-dalek 3.0.0-pre.2", - "rand_core 0.10.0-rc-3", - "rsa", - "sec1 0.8.0-rc.11", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "ssh-cipher 0.3.0-rc.4", - "ssh-encoding 0.3.0-rc.3", - "subtle", - "zeroize", + "ed25519-dalek 3.0.0-pre.4", + "rand_core 0.10.0-rc-3", + "rsa", + "sec1 0.8.0-rc.11", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "ssh-cipher 0.3.0-rc.5", + "ssh-encoding 0.3.0-rc.4", + "subtle", + "zeroize", ] [[package]] @@ -9364,11 +9256,11 @@ version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" dependencies = [ - "cc", - "cfg-if", - "libc", - "psm", - "windows-sys 0.59.0", + "cc", + "cfg-if", + "libc", + "psm", + "windows-sys 0.59.0", ] [[package]] @@ -9377,11 +9269,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a88b6e011736aa3523f5962c02ba2d6c4cff35d97a0a9a3999afa6111d704a76" dependencies = [ - "hashbrown 0.16.1", - "rayon", - "rustc-hash", - "serde", - "tokio", + "hashbrown 0.16.1", + "rayon", + "rustc-hash", + "serde", + "tokio", ] [[package]] @@ -9396,8 +9288,8 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04082e93ed1a06debd9148c928234b46d2cf260bc65f44e1d1d3fa594c5beebc" dependencies = [ - "simdutf8", - "thiserror 2.0.17", + "simdutf8", + "thiserror 2.0.17", ] [[package]] @@ -9424,7 +9316,7 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ - "strum_macros", + "strum_macros", ] [[package]] @@ -9433,10 +9325,10 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9451,17 +9343,17 @@ version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69a15b325bbe0a1f85de3dbf988a3a14e9cd321537dffcbf6641381dd6d7586f" dependencies = [ - "async-trait", - "chrono", - "futures-lite", - "lazy-regex", - "log", - "pin-project", - "rustls", - "rustls-pki-types", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", + "async-trait", + "chrono", + "futures-lite", + "lazy-regex", + "log", + "pin-project", + "rustls", + "rustls-pki-types", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", ] [[package]] @@ -9476,8 +9368,8 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4b854348b15b6c441bdd27ce9053569b016a0723eab2d015b1fd8e6abe4f708" dependencies = [ - "sval", - "sval_ref", + "sval", + "sval_ref", ] [[package]] @@ -9486,7 +9378,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0bd9e8b74410ddad37c6962587c5f9801a2caadba9e11f3f916ee3f31ae4a1f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9495,9 +9387,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe17b8deb33a9441280b4266c2d257e166bafbaea6e66b4b34ca139c91766d9" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9506,9 +9398,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "854addb048a5bafb1f496c98e0ab5b9b581c3843f03ca07c034ae110d3b7c623" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9517,9 +9409,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96cf068f482108ff44ae8013477cb047a1665d5f1a635ad7cf79582c1845dce9" dependencies = [ - "sval", - "sval_buffer", - "sval_ref", + "sval", + "sval_buffer", + "sval_ref", ] [[package]] @@ -9528,7 +9420,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed02126365ffe5ab8faa0abd9be54fbe68d03d607cd623725b0a71541f8aaa6f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9537,32 +9429,32 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a263383c6aa2076c4ef6011d3bae1b356edf6ea2613e3d8e8ebaa7b57dd707d5" dependencies = [ - "serde_core", - "sval", - "sval_nested", + "serde_core", + "sval", + "sval_nested", ] [[package]] name = "symbolic-common" -version = "12.17.0" +version = "12.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60" +checksum = "520cf51c674f8b93d533f80832babe413214bb766b6d7cb74ee99ad2971f8467" dependencies = [ - "debugid", - "memmap2", - "stable_deref_trait", - "uuid", + "debugid", + "memmap2", + "stable_deref_trait", + "uuid", ] [[package]] name = "symbolic-demangle" -version = "12.17.0" +version = "12.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec" +checksum = "9f0de2ee0ffa2641e17ba715ad51d48b9259778176517979cb38b6aa86fa7425" dependencies = [ - "cpp_demangle", - "rustc-demangle", - "symbolic-common", + "cpp_demangle", + "rustc-demangle", + "symbolic-common", ] [[package]] @@ -9571,9 +9463,9 @@ version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9582,9 +9474,9 @@ version = "2.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9593,7 +9485,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -9602,7 +9494,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2" dependencies = [ - "crossbeam-queue", + "crossbeam-queue", ] [[package]] @@ -9611,10 +9503,10 @@ version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", + "proc-macro2", + "quote", + "syn 1.0.109", + "unicode-xid", ] [[package]] @@ -9623,9 +9515,9 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9634,13 +9526,13 @@ version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f" dependencies = [ - "libc", - "memchr", - "ntapi", - "objc2-core-foundation", - "objc2-io-kit", - "rayon", - "windows 0.61.3", + "libc", + "memchr", + "ntapi", + "objc2-core-foundation", + "objc2-io-kit", + "rayon", + "windows 0.61.3", ] [[package]] @@ -9649,9 +9541,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.9.4", - "system-configuration-sys", + "bitflags 2.10.0", + "core-foundation 0.9.4", + "system-configuration-sys", ] [[package]] @@ -9660,8 +9552,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -9676,7 +9568,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96374855068f47402c3121c6eed88d29cb1de8f3ab27090e273e420bdabcf050" dependencies = [ - "parking_lot", + "parking_lot", ] [[package]] @@ -9685,11 +9577,11 @@ version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ - "fastrand", - "getrandom 0.3.4", - "once_cell", - "rustix 1.1.3", - "windows-sys 0.61.2", + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix 1.1.3", + "windows-sys 0.61.2", ] [[package]] @@ -9698,7 +9590,7 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" dependencies = [ - "test-case-macros", + "test-case-macros", ] [[package]] @@ -9707,10 +9599,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 2.0.114", + "cfg-if", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9719,10 +9611,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "test-case-core", + "proc-macro2", + "quote", + "syn 2.0.114", + "test-case-core", ] [[package]] @@ -9731,7 +9623,7 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.69", + "thiserror-impl 1.0.69", ] [[package]] @@ -9740,7 +9632,7 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.17", ] [[package]] @@ -9749,9 +9641,9 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9760,9 +9652,9 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9771,7 +9663,7 @@ version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -9780,9 +9672,9 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" dependencies = [ - "byteorder", - "integer-encoding", - "ordered-float", + "byteorder", + "integer-encoding", + "ordered-float", ] [[package]] @@ -9791,9 +9683,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ - "libc", - "paste", - "tikv-jemalloc-sys", + "libc", + "paste", + "tikv-jemalloc-sys", ] [[package]] @@ -9802,8 +9694,8 @@ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -9812,41 +9704,41 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" dependencies = [ - "libc", - "tikv-jemalloc-sys", + "libc", + "tikv-jemalloc-sys", ] [[package]] name = "time" -version = "0.3.44" +version = "0.3.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" +checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd" dependencies = [ - "deranged", - "itoa", - "libc", - "num-conv", - "num_threads", - "powerfmt", - "serde", - "time-core", - "time-macros", + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde_core", + "time-core", + "time-macros", ] [[package]] name = "time-core" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" +checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca" [[package]] name = "time-macros" -version = "0.2.24" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" +checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd" dependencies = [ - "num-conv", - "time-core", + "num-conv", + "time-core", ] [[package]] @@ -9855,7 +9747,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ - "crunchy", + "crunchy", ] [[package]] @@ -9864,8 +9756,8 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" dependencies = [ - "displaydoc", - "zerovec", + "displaydoc", + "zerovec", ] [[package]] @@ -9874,8 +9766,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" dependencies = [ - "serde", - "serde_json", + "serde", + "serde_json", ] [[package]] @@ -9884,7 +9776,7 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" dependencies = [ - "tinyvec_macros", + "tinyvec_macros", ] [[package]] @@ -9899,8 +9791,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" dependencies = [ - "tls_codec_derive", - "zeroize", + "tls_codec_derive", + "zeroize", ] [[package]] @@ -9909,9 +9801,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9920,15 +9812,15 @@ version = "1.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" dependencies = [ - "bytes", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys 0.61.2", + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", ] [[package]] @@ -9937,9 +9829,9 @@ version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9948,8 +9840,8 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "rustls", - "tokio", + "rustls", + "tokio", ] [[package]] @@ -9958,9 +9850,9 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", + "futures-core", + "pin-project-lite", + "tokio", ] [[package]] @@ -9969,9 +9861,9 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545" dependencies = [ - "futures-core", - "tokio", - "tokio-stream", + "futures-core", + "tokio", + "tokio-stream", ] [[package]] @@ -9980,12 +9872,12 @@ version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", - "pin-project-lite", - "tokio", + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite", + "tokio", ] [[package]] @@ -9994,10 +9886,10 @@ version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ - "serde", - "serde_spanned", - "toml_datetime 0.6.11", - "toml_edit 0.22.27", + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", ] [[package]] @@ -10006,16 +9898,7 @@ version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ - "serde", -] - -[[package]] -name = "toml_datetime" -version = "0.7.5+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" -dependencies = [ - "serde_core", + "serde", ] [[package]] @@ -10024,33 +9907,12 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.13.0", - "serde", - "serde_spanned", - "toml_datetime 0.6.11", - "toml_write", - "winnow", -] - -[[package]] -name = "toml_edit" -version = "0.23.10+spec-1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" -dependencies = [ - "indexmap 2.13.0", - "toml_datetime 0.7.5+spec-1.1.0", - "toml_parser", - "winnow", -] - -[[package]] -name = "toml_parser" -version = "1.0.6+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" -dependencies = [ - "winnow", + "indexmap 2.13.0", + "serde", + "serde_spanned", + "toml_datetime", + "toml_write", + "winnow", ] [[package]] @@ -10065,30 +9927,30 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" dependencies = [ - "async-trait", - "axum", - "base64", - "bytes", - "flate2", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "rustls-native-certs", - "socket2", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", + "async-trait", + "axum", + "base64", + "bytes", + "flate2", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "rustls-native-certs", + "socket2", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10097,10 +9959,10 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3" dependencies = [ - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.114", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10109,9 +9971,9 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" dependencies = [ - "bytes", - "prost 0.14.3", - "tonic", + "bytes", + "prost 0.14.3", + "tonic", ] [[package]] @@ -10120,33 +9982,33 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2" dependencies = [ - "prettyplease", - "proc-macro2", - "prost-build", - "prost-types", - "quote", - "syn 2.0.114", - "tempfile", - "tonic-build", + "prettyplease", + "proc-macro2", + "prost-build", + "prost-types", + "quote", + "syn 2.0.114", + "tempfile", + "tonic-build", ] [[package]] name = "tower" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" dependencies = [ - "futures-core", - "futures-util", - "indexmap 2.13.0", - "pin-project-lite", - "slab", - "sync_wrapper", - "tokio", - "tokio-util", - "tower-layer", - "tower-service", - "tracing", + "futures-core", + "futures-util", + "indexmap 2.13.0", + "pin-project-lite", + "slab", + "sync_wrapper", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10155,23 +10017,23 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ - "async-compression", - "bitflags 2.10.0", - "bytes", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "iri-string", - "pin-project-lite", - "tokio", - "tokio-util", - "tower", - "tower-layer", - "tower-service", - "tracing", - "uuid", + "async-compression", + "bitflags 2.10.0", + "bytes", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "iri-string", + "pin-project-lite", + "tokio", + "tokio-util", + "tower", + "tower-layer", + "tower-service", + "tracing", + "uuid", ] [[package]] @@ -10192,10 +10054,10 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", ] [[package]] @@ -10204,10 +10066,10 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" dependencies = [ - "crossbeam-channel", - "thiserror 2.0.17", - "time", - "tracing-subscriber", + "crossbeam-channel", + "thiserror 2.0.17", + "time", + "tracing-subscriber", ] [[package]] @@ -10216,9 +10078,9 @@ version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10227,8 +10089,8 @@ version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ - "once_cell", - "valuable", + "once_cell", + "valuable", ] [[package]] @@ -10237,8 +10099,8 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" dependencies = [ - "tracing", - "tracing-subscriber", + "tracing", + "tracing-subscriber", ] [[package]] @@ -10247,9 +10109,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ - "log", - "once_cell", - "tracing-core", + "log", + "once_cell", + "tracing-core", ] [[package]] @@ -10258,14 +10120,14 @@ version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc" dependencies = [ - "js-sys", - "opentelemetry", - "smallvec", - "tracing", - "tracing-core", - "tracing-log", - "tracing-subscriber", - "web-time", + "js-sys", + "opentelemetry", + "smallvec", + "tracing", + "tracing-core", + "tracing-log", + "tracing-subscriber", + "web-time", ] [[package]] @@ -10274,8 +10136,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" dependencies = [ - "serde", - "tracing-core", + "serde", + "tracing-core", ] [[package]] @@ -10284,20 +10146,20 @@ version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex-automata", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "time", - "tracing", - "tracing-core", - "tracing-log", - "tracing-serde", + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "time", + "tracing", + "tracing-core", + "tracing-log", + "tracing-serde", ] [[package]] @@ -10306,7 +10168,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1a814d25437963577f6221d33a2aaa60bfb44acc3330cdc7c334644e9832022" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -10345,9 +10207,9 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56d4e985b6dda743ae7fd4140c28105316ffd75bc58258ee6cc12934e3eb7a0c" dependencies = [ - "iana-time-zone", - "tz-rs", - "tzdb_data", + "iana-time-zone", + "tz-rs", + "tzdb_data", ] [[package]] @@ -10356,7 +10218,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42302a846dea7ab786f42dc5f519387069045acff793e1178d9368414168fe95" dependencies = [ - "tz-rs", + "tz-rs", ] [[package]] @@ -10395,8 +10257,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common 0.1.7", - "subtle", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -10405,8 +10267,8 @@ version = "0.6.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0386f227888b17b65d3e38219a7d41185035471300855c285667811907bb1677" dependencies = [ - "crypto-common 0.2.0-rc.9", - "subtle", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -10427,10 +10289,10 @@ version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", + "form_urlencoded", + "idna", + "percent-encoding", + "serde", ] [[package]] @@ -10457,12 +10319,12 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" dependencies = [ - "getrandom 0.3.4", - "js-sys", - "rand 0.9.2", - "serde_core", - "uuid-macro-internal", - "wasm-bindgen", + "getrandom 0.3.4", + "js-sys", + "rand 0.9.2", + "serde_core", + "uuid-macro-internal", + "wasm-bindgen", ] [[package]] @@ -10471,9 +10333,9 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10488,8 +10350,8 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" dependencies = [ - "value-bag-serde1", - "value-bag-sval2", + "value-bag-serde1", + "value-bag-sval2", ] [[package]] @@ -10498,9 +10360,9 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16530907bfe2999a1773ca5900a65101e092c70f642f25cc23ca0c43573262c5" dependencies = [ - "erased-serde 0.4.9", - "serde_core", - "serde_fmt", + "erased-serde 0.4.9", + "serde_core", + "serde_fmt", ] [[package]] @@ -10509,13 +10371,13 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d00ae130edd690eaa877e4f40605d534790d1cf1d651e7685bd6a144521b251f" dependencies = [ - "sval", - "sval_buffer", - "sval_dynamic", - "sval_fmt", - "sval_json", - "sval_ref", - "sval_serde", + "sval", + "sval_buffer", + "sval_dynamic", + "sval_fmt", + "sval_json", + "sval_ref", + "sval_serde", ] [[package]] @@ -10524,18 +10386,18 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f81eb4d9221ca29bad43d4b6871b6d2e7656e1af2cfca624a87e5d17880d831d" dependencies = [ - "async-trait", - "bytes", - "derive_builder 0.12.0", - "http 1.4.0", - "reqwest", - "rustify", - "rustify_derive", - "serde", - "serde_json", - "thiserror 1.0.69", - "tracing", - "url", + "async-trait", + "bytes", + "derive_builder 0.12.0", + "http 1.4.0", + "reqwest", + "rustify", + "rustify_derive", + "serde", + "serde_json", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -10556,8 +10418,8 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ - "same-file", - "winapi-util", + "same-file", + "winapi-util", ] [[package]] @@ -10566,7 +10428,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "try-lock", + "try-lock", ] [[package]] @@ -10581,7 +10443,7 @@ version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" dependencies = [ - "wit-bindgen", + "wit-bindgen", ] [[package]] @@ -10590,11 +10452,11 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", - "wasm-bindgen-shared", + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", ] [[package]] @@ -10603,11 +10465,11 @@ version = "0.4.56" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", + "cfg-if", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -10616,8 +10478,8 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" dependencies = [ - "quote", - "wasm-bindgen-macro-support", + "quote", + "wasm-bindgen-macro-support", ] [[package]] @@ -10626,11 +10488,11 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" dependencies = [ - "bumpalo", - "proc-macro2", - "quote", - "syn 2.0.114", - "wasm-bindgen-shared", + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.114", + "wasm-bindgen-shared", ] [[package]] @@ -10639,7 +10501,7 @@ version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -10648,11 +10510,11 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", ] [[package]] @@ -10661,8 +10523,8 @@ version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10671,8 +10533,8 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10681,7 +10543,7 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -10690,10 +10552,10 @@ version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.44", + "either", + "home", + "once_cell", + "rustix 0.38.44", ] [[package]] @@ -10702,7 +10564,7 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68" dependencies = [ - "serde", + "serde", ] [[package]] @@ -10711,8 +10573,8 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", ] [[package]] @@ -10727,7 +10589,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -10742,11 +10604,11 @@ version = "0.61.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" dependencies = [ - "windows-collections 0.2.0", - "windows-core 0.61.2", - "windows-future 0.2.1", - "windows-link 0.1.3", - "windows-numerics 0.2.0", + "windows-collections 0.2.0", + "windows-core 0.61.2", + "windows-future 0.2.1", + "windows-link 0.1.3", + "windows-numerics 0.2.0", ] [[package]] @@ -10755,10 +10617,10 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ - "windows-collections 0.3.2", - "windows-core 0.62.2", - "windows-future 0.3.2", - "windows-numerics 0.3.1", + "windows-collections 0.3.2", + "windows-core 0.62.2", + "windows-future 0.3.2", + "windows-numerics 0.3.1", ] [[package]] @@ -10767,7 +10629,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.61.2", ] [[package]] @@ -10776,7 +10638,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-core 0.62.2", + "windows-core 0.62.2", ] [[package]] @@ -10785,11 +10647,11 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.1.3", - "windows-result 0.3.4", - "windows-strings 0.4.2", + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", ] [[package]] @@ -10798,11 +10660,11 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10811,9 +10673,9 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", - "windows-threading 0.1.0", + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading 0.1.0", ] [[package]] @@ -10822,9 +10684,9 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", - "windows-threading 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", + "windows-threading 0.2.1", ] [[package]] @@ -10833,9 +10695,9 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10844,9 +10706,9 @@ version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10867,8 +10729,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", + "windows-core 0.61.2", + "windows-link 0.1.3", ] [[package]] @@ -10877,8 +10739,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", ] [[package]] @@ -10887,9 +10749,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10898,7 +10760,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10907,7 +10769,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10916,7 +10778,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10925,7 +10787,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10934,7 +10796,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10943,7 +10805,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10952,7 +10814,7 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.5", + "windows-targets 0.53.5", ] [[package]] @@ -10961,7 +10823,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10970,14 +10832,14 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -10986,15 +10848,15 @@ version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.2.1", - "windows_aarch64_gnullvm 0.53.1", - "windows_aarch64_msvc 0.53.1", - "windows_i686_gnu 0.53.1", - "windows_i686_gnullvm 0.53.1", - "windows_i686_msvc 0.53.1", - "windows_x86_64_gnu 0.53.1", - "windows_x86_64_gnullvm 0.53.1", - "windows_x86_64_msvc 0.53.1", + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] @@ -11003,7 +10865,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -11012,7 +10874,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -11117,7 +10979,7 @@ version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -11132,10 +10994,10 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a76ff259533532054cfbaefb115c613203c73707017459206380f03b3b3f266e" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11150,15 +11012,15 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11167,16 +11029,16 @@ version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "ring", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "ring", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11185,8 +11047,8 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ - "libc", - "rustix 1.1.3", + "libc", + "rustix 1.1.3", ] [[package]] @@ -11201,15 +11063,6 @@ version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" -[[package]] -name = "xz2" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" -dependencies = [ - "lzma-sys", -] - [[package]] name = "yansi" version = "1.0.1" @@ -11222,7 +11075,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ - "time", + "time", ] [[package]] @@ -11231,9 +11084,9 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" dependencies = [ - "stable_deref_trait", - "yoke-derive", - "zerofrom", + "stable_deref_trait", + "yoke-derive", + "zerofrom", ] [[package]] @@ -11242,10 +11095,10 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11254,7 +11107,7 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" dependencies = [ - "zerocopy-derive", + "zerocopy-derive", ] [[package]] @@ -11263,9 +11116,9 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11274,7 +11127,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ - "zerofrom-derive", + "zerofrom-derive", ] [[package]] @@ -11283,10 +11136,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11295,7 +11148,7 @@ version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ - "zeroize_derive", + "zeroize_derive", ] [[package]] @@ -11304,9 +11157,9 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11315,9 +11168,9 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" dependencies = [ - "displaydoc", - "yoke", - "zerofrom", + "displaydoc", + "yoke", + "zerofrom", ] [[package]] @@ -11326,9 +11179,9 @@ version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", + "yoke", + "zerofrom", + "zerovec-derive", ] [[package]] @@ -11337,37 +11190,36 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] name = "zip" -version = "7.0.0" +version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" +checksum = "9013f1222db8a6d680f13a7ccdc60a781199cd09c2fa4eff58e728bb181757fc" dependencies = [ - "aes 0.8.4", - "arbitrary", - "bzip2 0.6.1", - "constant_time_eq 0.3.1", - "crc32fast", - "deflate64", - "flate2", - "generic-array 0.14.7", - "getrandom 0.3.4", - "hmac 0.12.1", - "indexmap 2.13.0", - "lzma-rust2", - "memchr", - "pbkdf2 0.12.2", - "ppmd-rust", - "sha1 0.10.6", - "time", - "zeroize", - "zopfli", - "zstd", + "aes 0.8.4", + "bzip2", + "constant_time_eq 0.3.1", + "crc32fast", + "deflate64", + "flate2", + "generic-array 0.14.7", + "getrandom 0.3.4", + "hmac 0.12.1", + "indexmap 2.13.0", + "lzma-rust2", + "memchr", + "pbkdf2 0.12.2", + "ppmd-rust", + "sha1 0.10.6", + "time", + "zeroize", + "zopfli", + "zstd", ] [[package]] @@ -11378,9 +11230,9 @@ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3" [[package]] name = "zmij" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac93432f5b761b22864c774aac244fa5c0fd877678a4c37ebf6cf42208f9c9ec" +checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea" [[package]] name = "zopfli" @@ -11388,10 +11240,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" dependencies = [ - "bumpalo", - "crc32fast", - "log", - "simd-adler32", + "bumpalo", + "crc32fast", + "log", + "simd-adler32", ] [[package]] @@ -11400,7 +11252,7 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "zstd-safe", + "zstd-safe", ] [[package]] @@ -11409,7 +11261,7 @@ version = "7.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" dependencies = [ - "zstd-sys", + "zstd-sys", ] [[package]] @@ -11418,6 +11270,6 @@ version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ - "cc", - "pkg-config", + "cc", + "pkg-config", ] diff --git a/Cargo.toml b/Cargo.toml index b354e705..2bb29725 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,7 +96,7 @@ rustfs-zip = { path = "./crates/zip", version = "0.0.5" } # Async Runtime and Networking async-channel = "2.5.0" -async-compression = { version = "0.4.19" } +async-compression = { version = "0.4.37" } async-recursion = "1.1.1" async-trait = "0.1.89" axum = "0.8.8" @@ -121,7 +121,7 @@ tokio-util = { version = "0.7.18", features = ["io", "compat"] } tonic = { version = "0.14.2", features = ["gzip"] } tonic-prost = { version = "0.14.2" } tonic-prost-build = { version = "0.14.2" } -tower = { version = "0.5.2", features = ["timeout"] } +tower = { version = "0.5.3", features = ["timeout"] } tower-http = { version = "0.6.8", features = ["cors"] } # Serialization and Data Formats @@ -148,8 +148,8 @@ chacha20poly1305 = { version = "0.11.0-rc.2" } crc-fast = "1.6.0" hmac = { version = "0.13.0-rc.3" } jsonwebtoken = { version = "10.2.0", features = ["aws_lc_rs"] } -pbkdf2 = "0.13.0-rc.6" -rsa = { version = "0.10.0-rc.11" } +pbkdf2 = "0.13.0-rc.7" +rsa = { version = "0.10.0-rc.12" } rustls = { version = "0.23.36", default-features = false, features = ["aws-lc-rs", "logging", "tls12", "prefer-post-quantum", "std"] } rustls-pemfile = "2.2.0" rustls-pki-types = "1.13.2" @@ -161,7 +161,7 @@ zeroize = { version = "1.8.2", features = ["derive"] } # Time and Date chrono = { version = "0.4.42", features = ["serde"] } humantime = "2.3.0" -time = { version = "0.3.44", features = ["std", "parsing", "formatting", "macros", "serde"] } +time = { version = "0.3.45", features = ["std", "parsing", "formatting", "macros", "serde"] } # Utilities and Tools anyhow = "1.0.100" @@ -182,7 +182,7 @@ const-str = { version = "1.0.0", features = ["std", "proc"] } convert_case = "0.10.0" criterion = { version = "0.8", features = ["html_reports"] } crossbeam-queue = "0.3.12" -datafusion = "51.0.0" +datafusion = "52.0.0" derive_builder = "0.20.2" dunce = "1.0.5" enumset = "1.1.10" @@ -190,8 +190,8 @@ faster-hex = "0.10.0" flate2 = "1.1.8" flexi_logger = { version = "0.31.7", features = ["trc", "dont_minimize_extra_stacks", "compress", "kv", "json"] } glob = "0.3.3" -google-cloud-storage = "1.5.0" -google-cloud-auth = "1.3.0" +google-cloud-storage = "1.6.0" +google-cloud-auth = "1.4.0" hashbrown = { version = "0.16.1", features = ["serde", "rayon"] } heed = { version = "0.22.0" } hex-simd = "0.8.0" @@ -200,7 +200,7 @@ ipnetwork = { version = "0.21.1", features = ["serde"] } lazy_static = "1.5.0" libc = "0.2.180" libsystemd = "0.7.2" -local-ip-address = "0.6.8" +local-ip-address = "0.6.9" lz4 = "1.28.1" matchit = "0.9.1" md-5 = "0.11.0-rc.3" @@ -223,7 +223,7 @@ rayon = "1.11.0" reed-solomon-simd = { version = "3.1.0" } regex = { version = "1.12.2" } rumqttc = { version = "0.25.1" } -rust-embed = { version = "8.9.0" } +rust-embed = { version = "8.11.0" } rustc-hash = { version = "2.1.1" } s3s = { version = "0.13.0-alpha.1", features = ["minio"] } serial_test = "3.3.1" @@ -254,7 +254,7 @@ walkdir = "2.5.0" wildmatch = { version = "2.6.1", features = ["serde"] } windows = { version = "0.62.2" } xxhash-rust = { version = "0.8.15", features = ["xxh64", "xxh3"] } -zip = "7.0.0" +zip = "7.1.0" zstd = "0.13.3" # Observability and Metrics @@ -270,7 +270,7 @@ opentelemetry-stdout = { version = "0.31.0" } libunftp = "0.21.0" russh = { version = "0.56.0", features = ["aws-lc-rs", "rsa"], default-features = false } russh-sftp = "2.1.1" -ssh-key = { version = "0.7.0-rc.4", features = ["std", "rsa", "ed25519"] } +ssh-key = { version = "0.7.0-rc.5", features = ["std", "rsa", "ed25519"] } suppaftp = { version = "7.1.0", features = ["tokio", "tokio-rustls", "rustls"] } rcgen = "0.14.6" From 6a63fba5c261909ffc189f0815c2ab3e1b4f6512 Mon Sep 17 00:00:00 2001 From: houseme Date: Thu, 15 Jan 2026 10:51:14 +0800 Subject: [PATCH 16/22] chore(deps): bump crc-fast, chrono, aws-smithy-types, ssh-key (#1513) --- Cargo.lock | 8076 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 8 +- 2 files changed, 4042 insertions(+), 4042 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5fab6754..918171c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli", + "gimli", ] [[package]] @@ -23,8 +23,8 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common 0.1.7", - "generic-array 0.14.7", + "crypto-common 0.1.7", + "generic-array 0.14.7", ] [[package]] @@ -33,8 +33,8 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67a578e7d4edaef88aeb9cdd81556f4a62266ce26601317c006a79e8bc58b5af" dependencies = [ - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", ] [[package]] @@ -43,9 +43,9 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -54,10 +54,10 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd9e1c818b25efb32214df89b0ec22f01aa397aaeb718d1022bf0635a3bfd1a8" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "zeroize", ] [[package]] @@ -66,12 +66,12 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" dependencies = [ - "aead 0.5.2", - "aes 0.8.4", - "cipher 0.4.4", - "ctr 0.9.2", - "ghash 0.5.1", - "subtle", + "aead 0.5.2", + "aes 0.8.4", + "cipher 0.4.4", + "ctr 0.9.2", + "ghash 0.5.1", + "subtle", ] [[package]] @@ -80,13 +80,13 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f5c07f414d7dc0755870f84c7900425360288d24e0eae4836f9dee19a30fa5f" dependencies = [ - "aead 0.6.0-rc.5", - "aes 0.9.0-rc.2", - "cipher 0.5.0-rc.3", - "ctr 0.10.0-rc.2", - "ghash 0.6.0-rc.3", - "subtle", - "zeroize", + "aead 0.6.0-rc.5", + "aes 0.9.0-rc.2", + "cipher 0.5.0-rc.3", + "ctr 0.10.0-rc.2", + "ghash 0.6.0-rc.3", + "subtle", + "zeroize", ] [[package]] @@ -95,12 +95,12 @@ version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ - "cfg-if", - "const-random", - "getrandom 0.3.4", - "once_cell", - "version_check", - "zerocopy", + "cfg-if", + "const-random", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", ] [[package]] @@ -109,7 +109,7 @@ version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -118,7 +118,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" dependencies = [ - "equator", + "equator", ] [[package]] @@ -133,7 +133,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" dependencies = [ - "alloc-no-stdlib", + "alloc-no-stdlib", ] [[package]] @@ -142,7 +142,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" dependencies = [ - "cc", + "cc", ] [[package]] @@ -157,7 +157,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" dependencies = [ - "libc", + "libc", ] [[package]] @@ -172,13 +172,13 @@ version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "is_terminal_polyfill", - "utf8parse", + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", ] [[package]] @@ -193,7 +193,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ - "utf8parse", + "utf8parse", ] [[package]] @@ -202,7 +202,7 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -211,9 +211,9 @@ version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ - "anstyle", - "once_cell_polyfill", - "windows-sys 0.61.2", + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", ] [[package]] @@ -228,7 +228,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" dependencies = [ - "object 0.32.2", + "object 0.32.2", ] [[package]] @@ -237,7 +237,7 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e" dependencies = [ - "rustversion", + "rustversion", ] [[package]] @@ -246,10 +246,10 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" dependencies = [ - "base64ct", - "blake2 0.10.6", - "cpufeatures", - "password-hash 0.5.0", + "base64ct", + "blake2 0.10.6", + "cpufeatures", + "password-hash 0.5.0", ] [[package]] @@ -258,10 +258,10 @@ version = "0.6.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26e88a084142953a0415c47ddf4081eddf9a6d310012bbe92e9827d03e447f0" dependencies = [ - "base64ct", - "blake2 0.11.0-rc.3", - "cpufeatures", - "password-hash 0.6.0-rc.8", + "base64ct", + "blake2 0.11.0-rc.3", + "cpufeatures", + "password-hash 0.6.0-rc.8", ] [[package]] @@ -282,19 +282,19 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e" dependencies = [ - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-csv", - "arrow-data", - "arrow-ipc", - "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema", - "arrow-select", - "arrow-string", + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-csv", + "arrow-data", + "arrow-ipc", + "arrow-json", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", ] [[package]] @@ -303,12 +303,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "num-traits", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "num-traits", ] [[package]] @@ -317,17 +317,17 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c" dependencies = [ - "ahash", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "chrono", - "chrono-tz", - "half", - "hashbrown 0.16.1", - "num-complex", - "num-integer", - "num-traits", + "ahash", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "chrono-tz", + "half", + "hashbrown 0.16.1", + "num-complex", + "num-integer", + "num-traits", ] [[package]] @@ -336,10 +336,10 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56" dependencies = [ - "bytes", - "half", - "num-bigint", - "num-traits", + "bytes", + "half", + "num-bigint", + "num-traits", ] [[package]] @@ -348,20 +348,20 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-ord", - "arrow-schema", - "arrow-select", - "atoi", - "base64", - "chrono", - "comfy-table", - "half", - "lexical-core", - "num-traits", - "ryu", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-ord", + "arrow-schema", + "arrow-select", + "atoi", + "base64", + "chrono", + "comfy-table", + "half", + "lexical-core", + "num-traits", + "ryu", ] [[package]] @@ -370,13 +370,13 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e4100b729fe656f2e4fb32bc5884f14acf9118d4ad532b7b33c1132e4dce896" dependencies = [ - "arrow-array", - "arrow-cast", - "arrow-schema", - "chrono", - "csv", - "csv-core", - "regex", + "arrow-array", + "arrow-cast", + "arrow-schema", + "chrono", + "csv", + "csv-core", + "regex", ] [[package]] @@ -385,11 +385,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597" dependencies = [ - "arrow-buffer", - "arrow-schema", - "half", - "num-integer", - "num-traits", + "arrow-buffer", + "arrow-schema", + "half", + "num-integer", + "num-traits", ] [[package]] @@ -398,14 +398,14 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3ca63edd2073fcb42ba112f8ae165df1de935627ead6e203d07c99445f2081" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "flatbuffers", - "lz4_flex", - "zstd", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "flatbuffers", + "lz4_flex", + "zstd", ] [[package]] @@ -414,22 +414,22 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a36b2332559d3310ebe3e173f75b29989b4412df4029a26a30cc3f7da0869297" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-schema", - "chrono", - "half", - "indexmap 2.13.0", - "itoa", - "lexical-core", - "memchr", - "num-traits", - "ryu", - "serde_core", - "serde_json", - "simdutf8", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-schema", + "chrono", + "half", + "indexmap 2.13.0", + "itoa", + "lexical-core", + "memchr", + "num-traits", + "ryu", + "serde_core", + "serde_json", + "simdutf8", ] [[package]] @@ -438,11 +438,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", ] [[package]] @@ -451,11 +451,11 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "half", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", ] [[package]] @@ -464,8 +464,8 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c" dependencies = [ - "serde_core", - "serde_json", + "serde_core", + "serde_json", ] [[package]] @@ -474,12 +474,12 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "num-traits", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num-traits", ] [[package]] @@ -488,15 +488,15 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", - "memchr", - "num-traits", - "regex", - "regex-syntax", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num-traits", + "regex", + "regex-syntax", ] [[package]] @@ -505,14 +505,14 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", - "displaydoc", - "nom 7.1.3", - "num-traits", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs-derive", + "asn1-rs-impl", + "displaydoc", + "nom 7.1.3", + "num-traits", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -521,10 +521,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -533,9 +533,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -544,14 +544,14 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5" dependencies = [ - "filetime", - "futures-core", - "libc", - "portable-atomic", - "rustc-hash", - "tokio", - "tokio-stream", - "xattr", + "filetime", + "futures-core", + "libc", + "portable-atomic", + "rustc-hash", + "tokio", + "tokio-stream", + "xattr", ] [[package]] @@ -560,10 +560,10 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" dependencies = [ - "concurrent-queue", - "event-listener-strategy", - "futures-core", - "pin-project-lite", + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", ] [[package]] @@ -572,10 +572,10 @@ version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d10e4f991a553474232bc0a31799f6d24b034a84c0971d80d2e2f78b2e576e40" dependencies = [ - "compression-codecs", - "compression-core", - "pin-project-lite", - "tokio", + "compression-codecs", + "compression-core", + "pin-project-lite", + "tokio", ] [[package]] @@ -584,9 +584,9 @@ version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ - "event-listener", - "event-listener-strategy", - "pin-project-lite", + "event-listener", + "event-listener-strategy", + "pin-project-lite", ] [[package]] @@ -595,9 +595,9 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -606,9 +606,9 @@ version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -617,7 +617,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -632,9 +632,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99e1aca718ea7b89985790c94aad72d77533063fe00bc497bb79a7c2dae6a661" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -649,28 +649,28 @@ version = "1.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sdk-sso", - "aws-sdk-ssooidc", - "aws-sdk-sts", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "hex", - "http 1.4.0", - "ring", - "time", - "tokio", - "tracing", - "url", - "zeroize", + "aws-credential-types", + "aws-runtime", + "aws-sdk-sso", + "aws-sdk-ssooidc", + "aws-sdk-sts", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "hex", + "http 1.4.0", + "ring", + "time", + "tokio", + "tracing", + "url", + "zeroize", ] [[package]] @@ -679,33 +679,33 @@ version = "1.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "zeroize", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "zeroize", ] [[package]] name = "aws-lc-rs" -version = "1.15.2" +version = "1.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" +checksum = "e84ce723ab67259cfeb9877c6a639ee9eb7a27b28123abd71db7f0d5d0cc9d86" dependencies = [ - "aws-lc-sys", - "untrusted 0.7.1", - "zeroize", + "aws-lc-sys", + "untrusted 0.7.1", + "zeroize", ] [[package]] name = "aws-lc-sys" -version = "0.35.0" +version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" +checksum = "43a442ece363113bd4bd4c8b18977a7798dd4d3c3383f34fb61936960e8f4ad8" dependencies = [ - "cc", - "cmake", - "dunce", - "fs_extra", + "cc", + "cmake", + "dunce", + "fs_extra", ] [[package]] @@ -714,23 +714,23 @@ version = "1.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d81b5b2898f6798ad58f484856768bca817e3cd9de0974c24ae0f1113fe88f1b" dependencies = [ - "aws-credential-types", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "tracing", - "uuid", + "aws-credential-types", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "tracing", + "uuid", ] [[package]] @@ -739,32 +739,32 @@ version = "1.119.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d65fddc3844f902dfe1864acb8494db5f9342015ee3ab7890270d36fbd2e01c" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-sigv4", - "aws-smithy-async", - "aws-smithy-checksums", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "bytes", - "fastrand", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "lru", - "percent-encoding", - "regex-lite", - "sha2 0.10.9", - "tracing", - "url", + "aws-credential-types", + "aws-runtime", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-checksums", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "bytes", + "fastrand", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "lru", + "percent-encoding", + "regex-lite", + "sha2 0.10.9", + "tracing", + "url", ] [[package]] @@ -773,20 +773,20 @@ version = "1.91.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -795,20 +795,20 @@ version = "1.93.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-types", - "bytes", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -817,21 +817,21 @@ version = "1.95.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164" dependencies = [ - "aws-credential-types", - "aws-runtime", - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-json", - "aws-smithy-query", - "aws-smithy-runtime", - "aws-smithy-runtime-api", - "aws-smithy-types", - "aws-smithy-xml", - "aws-types", - "fastrand", - "http 0.2.12", - "regex-lite", - "tracing", + "aws-credential-types", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-query", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "fastrand", + "http 0.2.12", + "regex-lite", + "tracing", ] [[package]] @@ -840,26 +840,26 @@ version = "1.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c" dependencies = [ - "aws-credential-types", - "aws-smithy-eventstream", - "aws-smithy-http", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "crypto-bigint 0.5.5", - "form_urlencoded", - "hex", - "hmac 0.12.1", - "http 0.2.12", - "http 1.4.0", - "p256 0.11.1", - "percent-encoding", - "ring", - "sha2 0.10.9", - "subtle", - "time", - "tracing", - "zeroize", + "aws-credential-types", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "crypto-bigint 0.5.5", + "form_urlencoded", + "hex", + "hmac 0.12.1", + "http 0.2.12", + "http 1.4.0", + "p256 0.11.1", + "percent-encoding", + "ring", + "sha2 0.10.9", + "subtle", + "time", + "tracing", + "zeroize", ] [[package]] @@ -868,29 +868,29 @@ version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c" dependencies = [ - "futures-util", - "pin-project-lite", - "tokio", + "futures-util", + "pin-project-lite", + "tokio", ] [[package]] name = "aws-smithy-checksums" -version = "0.63.12" +version = "0.63.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87294a084b43d649d967efe58aa1f9e0adc260e13a6938eb904c0ae9b45824ae" +checksum = "23374b9170cbbcc6f5df8dc5ebb9b6c5c28a3c8f599f0e8b8b10eb6f4a5c6e74" dependencies = [ - "aws-smithy-http", - "aws-smithy-types", - "bytes", - "crc-fast", - "hex", - "http 0.2.12", - "http-body 0.4.6", - "md-5 0.10.6", - "pin-project-lite", - "sha1 0.10.6", - "sha2 0.10.9", - "tracing", + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "crc-fast", + "hex", + "http 0.2.12", + "http-body 0.4.6", + "md-5 0.10.6", + "pin-project-lite", + "sha1 0.10.6", + "sha2 0.10.9", + "tracing", ] [[package]] @@ -899,9 +899,9 @@ version = "0.60.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc12f8b310e38cad85cf3bef45ad236f470717393c613266ce0a89512286b650" dependencies = [ - "aws-smithy-types", - "bytes", - "crc32fast", + "aws-smithy-types", + "bytes", + "crc32fast", ] [[package]] @@ -910,20 +910,20 @@ version = "0.62.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b" dependencies = [ - "aws-smithy-eventstream", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "bytes-utils", - "futures-core", - "futures-util", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "percent-encoding", - "pin-project-lite", - "pin-utils", - "tracing", + "aws-smithy-eventstream", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "bytes-utils", + "futures-core", + "futures-util", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tracing", ] [[package]] @@ -932,22 +932,22 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a" dependencies = [ - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "h2", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower", - "tracing", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "h2", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower", + "tracing", ] [[package]] @@ -956,16 +956,16 @@ version = "0.61.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551" dependencies = [ - "aws-smithy-types", + "aws-smithy-types", ] [[package]] name = "aws-smithy-observability" -version = "0.1.5" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f616c3f2260612fe44cede278bafa18e73e6479c4e393e2c4518cf2a9a228a" +checksum = "ef1fcbefc7ece1d70dcce29e490f269695dfca2d2bacdeaf9e5c3f799e4e6a42" dependencies = [ - "aws-smithy-runtime-api", + "aws-smithy-runtime-api", ] [[package]] @@ -974,75 +974,75 @@ version = "0.60.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d" dependencies = [ - "aws-smithy-types", - "urlencoding", + "aws-smithy-types", + "urlencoding", ] [[package]] name = "aws-smithy-runtime" -version = "1.9.5" +version = "1.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a392db6c583ea4a912538afb86b7be7c5d8887d91604f50eb55c262ee1b4a5f5" +checksum = "bb5b6167fcdf47399024e81ac08e795180c576a20e4d4ce67949f9a88ae37dc1" dependencies = [ - "aws-smithy-async", - "aws-smithy-http", - "aws-smithy-http-client", - "aws-smithy-observability", - "aws-smithy-runtime-api", - "aws-smithy-types", - "bytes", - "fastrand", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "pin-project-lite", - "pin-utils", - "tokio", - "tracing", + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-http-client", + "aws-smithy-observability", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "fastrand", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "pin-project-lite", + "pin-utils", + "tokio", + "tracing", ] [[package]] name = "aws-smithy-runtime-api" -version = "1.9.3" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab0d43d899f9e508300e587bf582ba54c27a452dd0a9ea294690669138ae14a2" +checksum = "efce7aaaf59ad53c5412f14fc19b2d5c6ab2c3ec688d272fd31f76ec12f44fb0" dependencies = [ - "aws-smithy-async", - "aws-smithy-types", - "bytes", - "http 0.2.12", - "http 1.4.0", - "pin-project-lite", - "tokio", - "tracing", - "zeroize", + "aws-smithy-async", + "aws-smithy-types", + "bytes", + "http 0.2.12", + "http 1.4.0", + "pin-project-lite", + "tokio", + "tracing", + "zeroize", ] [[package]] name = "aws-smithy-types" -version = "1.3.5" +version = "1.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "905cb13a9895626d49cf2ced759b062d913834c7482c38e49557eac4e6193f01" +checksum = "65f172bcb02424eb94425db8aed1b6d583b5104d4d5ddddf22402c661a320048" dependencies = [ - "base64-simd", - "bytes", - "bytes-utils", - "futures-core", - "http 0.2.12", - "http 1.4.0", - "http-body 0.4.6", - "http-body 1.0.1", - "http-body-util", - "itoa", - "num-integer", - "pin-project-lite", - "pin-utils", - "ryu", - "serde", - "time", - "tokio", - "tokio-util", + "base64-simd", + "bytes", + "bytes-utils", + "futures-core", + "http 0.2.12", + "http 1.4.0", + "http-body 0.4.6", + "http-body 1.0.1", + "http-body-util", + "itoa", + "num-integer", + "pin-project-lite", + "pin-utils", + "ryu", + "serde", + "time", + "tokio", + "tokio-util", ] [[package]] @@ -1051,7 +1051,7 @@ version = "0.60.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57" dependencies = [ - "xmlparser", + "xmlparser", ] [[package]] @@ -1060,12 +1060,12 @@ version = "1.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164" dependencies = [ - "aws-credential-types", - "aws-smithy-async", - "aws-smithy-runtime-api", - "aws-smithy-types", - "rustc_version", - "tracing", + "aws-credential-types", + "aws-smithy-async", + "aws-smithy-runtime-api", + "aws-smithy-types", + "rustc_version", + "tracing", ] [[package]] @@ -1074,31 +1074,31 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ - "axum-core", - "bytes", - "form_urlencoded", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "itoa", - "matchit 0.8.4", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "serde_core", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tower", - "tower-layer", - "tower-service", - "tracing", + "axum-core", + "bytes", + "form_urlencoded", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit 0.8.4", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "serde_core", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1107,17 +1107,17 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "sync_wrapper", - "tower-layer", - "tower-service", - "tracing", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -1126,20 +1126,20 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1df331683d982a0b9492b38127151e6453639cd34926eb9c07d4cd8c6d22bfc" dependencies = [ - "arc-swap", - "bytes", - "either", - "fs-err", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", + "arc-swap", + "bytes", + "either", + "fs-err", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "hyper-util", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", ] [[package]] @@ -1148,13 +1148,13 @@ version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object 0.37.3", - "rustc-demangle", - "windows-link 0.2.1", + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object 0.37.3", + "rustc-demangle", + "windows-link 0.2.1", ] [[package]] @@ -1187,8 +1187,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -1203,9 +1203,9 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2" dependencies = [ - "blowfish", - "pbkdf2 0.12.2", - "sha2 0.10.9", + "blowfish", + "pbkdf2 0.12.2", + "sha2 0.10.9", ] [[package]] @@ -1214,11 +1214,11 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" dependencies = [ - "autocfg", - "libm", - "num-bigint", - "num-integer", - "num-traits", + "autocfg", + "libm", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -1227,7 +1227,7 @@ version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1242,7 +1242,7 @@ version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1251,7 +1251,7 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -1260,7 +1260,7 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "679065eb2b85a078ace42411e657bef3a6afe93a40d1b9cb04e39ca303cc3f36" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -1269,14 +1269,14 @@ version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" dependencies = [ - "arrayref", - "arrayvec", - "cc", - "cfg-if", - "constant_time_eq 0.4.2", - "cpufeatures", - "memmap2", - "rayon-core", + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq 0.4.2", + "cpufeatures", + "memmap2", + "rayon-core", ] [[package]] @@ -1285,7 +1285,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1294,8 +1294,8 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f" dependencies = [ - "hybrid-array", - "zeroize", + "hybrid-array", + "zeroize", ] [[package]] @@ -1304,7 +1304,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.7", ] [[package]] @@ -1313,8 +1313,8 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" dependencies = [ - "byteorder", - "cipher 0.4.4", + "byteorder", + "cipher 0.4.4", ] [[package]] @@ -1323,9 +1323,9 @@ version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", ] [[package]] @@ -1334,8 +1334,8 @@ version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] @@ -1362,7 +1362,7 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -1371,8 +1371,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" dependencies = [ - "bytes", - "either", + "bytes", + "either", ] [[package]] @@ -1387,7 +1387,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289" dependencies = [ - "bytes", + "bytes", ] [[package]] @@ -1396,7 +1396,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" dependencies = [ - "libbz2-rs-sys", + "libbz2-rs-sys", ] [[package]] @@ -1405,7 +1405,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -1414,8 +1414,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -1424,12 +1424,12 @@ version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9" dependencies = [ - "camino", - "cargo-platform", - "semver", - "serde", - "serde_json", - "thiserror 2.0.17", + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.17", ] [[package]] @@ -1444,7 +1444,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -1453,10 +1453,10 @@ version = "1.2.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3" dependencies = [ - "find-msvc-tools", - "jobserver", - "libc", - "shlex", + "find-msvc-tools", + "jobserver", + "libc", + "shlex", ] [[package]] @@ -1477,9 +1477,9 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" dependencies = [ - "cfg-if", - "cipher 0.4.4", - "cpufeatures", + "cfg-if", + "cipher 0.4.4", + "cpufeatures", ] [[package]] @@ -1488,11 +1488,11 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f895fb33c1ad22da4bc79d37c0bddff8aee2ba4575705345eb73b8ffbc386074" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.3", - "cpufeatures", - "rand_core 0.10.0-rc-3", - "zeroize", + "cfg-if", + "cipher 0.5.0-rc.3", + "cpufeatures", + "rand_core 0.10.0-rc-3", + "zeroize", ] [[package]] @@ -1501,24 +1501,24 @@ version = "0.11.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c662d31454533832974f2b2b3fcbd552ed3cde94c95e614a5039d297dd97076f" dependencies = [ - "aead 0.6.0-rc.5", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "poly1305 0.9.0-rc.3", + "aead 0.6.0-rc.5", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "poly1305 0.9.0-rc.3", ] [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" dependencies = [ - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "wasm-bindgen", - "windows-link 0.2.1", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link 0.2.1", ] [[package]] @@ -1527,8 +1527,8 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" dependencies = [ - "chrono", - "phf 0.12.1", + "chrono", + "phf 0.12.1", ] [[package]] @@ -1537,9 +1537,9 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ - "ciborium-io", - "ciborium-ll", - "serde", + "ciborium-io", + "ciborium-ll", + "serde", ] [[package]] @@ -1554,8 +1554,8 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ - "ciborium-io", - "half", + "ciborium-io", + "half", ] [[package]] @@ -1564,8 +1564,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common 0.1.7", - "inout 0.1.4", + "crypto-common 0.1.7", + "inout 0.1.4", ] [[package]] @@ -1574,10 +1574,10 @@ version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ - "block-buffer 0.11.0", - "crypto-common 0.2.0-rc.9", - "inout 0.2.2", - "zeroize", + "block-buffer 0.11.0", + "crypto-common 0.2.0-rc.9", + "inout 0.2.2", + "zeroize", ] [[package]] @@ -1586,8 +1586,8 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" dependencies = [ - "clap_builder", - "clap_derive", + "clap_builder", + "clap_derive", ] [[package]] @@ -1596,10 +1596,10 @@ version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim 0.11.1", + "anstream", + "anstyle", + "clap_lex", + "strsim 0.11.1", ] [[package]] @@ -1608,10 +1608,10 @@ version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1626,14 +1626,14 @@ version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" dependencies = [ - "cc", + "cc", ] [[package]] name = "cmov" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c11ed919bd3bae4af5ab56372b627dfc32622aba6cec36906e8ab46746037c9d" +checksum = "360a5d5b750cd7fb97d5ead6e6e0ef0b288d3c2464a189f04f38670e268842ed" [[package]] name = "colorchoice" @@ -1647,8 +1647,8 @@ version = "7.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" dependencies = [ - "unicode-segmentation", - "unicode-width", + "unicode-segmentation", + "unicode-width", ] [[package]] @@ -1657,14 +1657,14 @@ version = "0.4.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a" dependencies = [ - "brotli", - "bzip2", - "compression-core", - "flate2", - "liblzma", - "memchr", - "zstd", - "zstd-safe", + "brotli", + "bzip2", + "compression-core", + "flate2", + "liblzma", + "memchr", + "zstd", + "zstd-safe", ] [[package]] @@ -1679,7 +1679,7 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1700,7 +1700,7 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" dependencies = [ - "const-random-macro", + "const-random-macro", ] [[package]] @@ -1709,9 +1709,9 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.17", - "once_cell", - "tiny-keccak", + "getrandom 0.2.17", + "once_cell", + "tiny-keccak", ] [[package]] @@ -1720,7 +1720,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93e19f68b180ebff43d6d42005c4b5f046c65fcac28369ba8b3beaad633f9ec0" dependencies = [ - "const-str-proc-macro", + "const-str-proc-macro", ] [[package]] @@ -1729,9 +1729,9 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d3e0f24ee268386bd3ab4e04fc60df9a818ad801b5ffe592f388a6acc5053fb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -1740,7 +1740,7 @@ version = "0.2.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" dependencies = [ - "const_format_proc_macros", + "const_format_proc_macros", ] [[package]] @@ -1749,9 +1749,9 @@ version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" dependencies = [ - "proc-macro2", - "quote", - "unicode-xid", + "proc-macro2", + "quote", + "unicode-xid", ] [[package]] @@ -1772,7 +1772,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" dependencies = [ - "unicode-segmentation", + "unicode-segmentation", ] [[package]] @@ -1781,8 +1781,8 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1791,8 +1791,8 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -1807,9 +1807,9 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0940496e5c83c54f3b753d5317daec82e8edac71c33aaa1f666d76f518de2444" dependencies = [ - "hax-lib", - "pastey 0.1.1", - "rand 0.9.2", + "hax-lib", + "pastey 0.1.1", + "rand 0.9.2", ] [[package]] @@ -1818,7 +1818,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1827,7 +1827,7 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ - "libc", + "libc", ] [[package]] @@ -1836,7 +1836,7 @@ version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" dependencies = [ - "crc-catalog", + "crc-catalog", ] [[package]] @@ -1847,15 +1847,14 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "crc-fast" -version = "1.6.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ddc2d09feefeee8bd78101665bd8645637828fa9317f9f292496dbbd8c65ff3" +checksum = "2fd92aca2c6001b1bf5ba0ff84ee74ec8501b52bbef0cac80bf25a6c1d87a83d" dependencies = [ - "crc", - "digest 0.10.7", - "rand 0.9.2", - "regex", - "rustversion", + "crc", + "digest 0.10.7", + "rustversion", + "spin 0.10.0", ] [[package]] @@ -1864,7 +1863,7 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" dependencies = [ - "rustc_version", + "rustc_version", ] [[package]] @@ -1873,7 +1872,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -1882,23 +1881,23 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf" dependencies = [ - "alloca", - "anes", - "cast", - "ciborium", - "clap", - "criterion-plot", - "itertools 0.13.0", - "num-traits", - "oorandom", - "page_size", - "plotters", - "rayon", - "regex", - "serde", - "serde_json", - "tinytemplate", - "walkdir", + "alloca", + "anes", + "cast", + "ciborium", + "clap", + "criterion-plot", + "itertools 0.13.0", + "num-traits", + "oorandom", + "page_size", + "plotters", + "rayon", + "regex", + "serde", + "serde_json", + "tinytemplate", + "walkdir", ] [[package]] @@ -1907,8 +1906,8 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4" dependencies = [ - "cast", - "itertools 0.13.0", + "cast", + "itertools 0.13.0", ] [[package]] @@ -1917,7 +1916,7 @@ version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1926,8 +1925,8 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] @@ -1936,7 +1935,7 @@ version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1945,7 +1944,7 @@ version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ - "crossbeam-utils", + "crossbeam-utils", ] [[package]] @@ -1966,10 +1965,10 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -1978,10 +1977,10 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ - "generic-array 0.14.7", - "rand_core 0.6.4", - "subtle", - "zeroize", + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] @@ -1990,11 +1989,11 @@ version = "0.7.0-rc.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37387ceb32048ff590f2cbd24d8b05fffe63c3f69a5cfa089d4f722ca4385a19" dependencies = [ - "ctutils", - "num-traits", - "rand_core 0.10.0-rc-3", - "serdect", - "zeroize", + "ctutils", + "num-traits", + "rand_core 0.10.0-rc-3", + "serdect", + "zeroize", ] [[package]] @@ -2003,8 +2002,8 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ - "generic-array 0.14.7", - "typenum", + "generic-array 0.14.7", + "typenum", ] [[package]] @@ -2013,9 +2012,9 @@ version = "0.2.0-rc.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41b8986f836d4aeb30ccf4c9d3bd562fd716074cfd7fc4a2948359fbd21ed809" dependencies = [ - "getrandom 0.4.0-rc.0", - "hybrid-array", - "rand_core 0.10.0-rc-3", + "getrandom 0.4.0-rc.0", + "hybrid-array", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2024,9 +2023,9 @@ version = "0.7.0-pre.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e79c98a281f9441200b24e3151407a629bfbe720399186e50516da939195e482" dependencies = [ - "crypto-bigint 0.7.0-rc.18", - "libm", - "rand_core 0.10.0-rc-3", + "crypto-bigint 0.7.0-rc.18", + "libm", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -2035,10 +2034,10 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" dependencies = [ - "csv-core", - "itoa", - "ryu", - "serde_core", + "csv-core", + "itoa", + "ryu", + "serde_core", ] [[package]] @@ -2047,7 +2046,7 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -2056,7 +2055,7 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -2065,7 +2064,7 @@ version = "0.10.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0ec605a95e78815a4c4b8040217d56d5a1ab37043851ee9e7e65b89afa00e3" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -2074,7 +2073,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c67c81499f542d1dd38c6a2a2fe825f4dd4bca5162965dd2eea0c8119873d3c" dependencies = [ - "cmov", + "cmov", ] [[package]] @@ -2083,14 +2082,14 @@ version = "4.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.10.7", - "fiat-crypto 0.2.9", - "rustc_version", - "subtle", - "zeroize", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.10.7", + "fiat-crypto 0.2.9", + "rustc_version", + "subtle", + "zeroize", ] [[package]] @@ -2099,13 +2098,13 @@ version = "5.0.0-pre.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ae8b2fe5e4995d7fd08a7604e794dc569a65ed19659f5939d529813ed816d38" dependencies = [ - "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.11.0-rc.5", - "fiat-crypto 0.3.0", - "rustc_version", - "subtle", + "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.11.0-rc.5", + "fiat-crypto 0.3.0", + "rustc_version", + "subtle", ] [[package]] @@ -2114,9 +2113,9 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -2125,8 +2124,8 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", + "darling_core 0.14.4", + "darling_macro 0.14.4", ] [[package]] @@ -2135,8 +2134,8 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core 0.20.11", - "darling_macro 0.20.11", + "darling_core 0.20.11", + "darling_macro 0.20.11", ] [[package]] @@ -2145,8 +2144,8 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" dependencies = [ - "darling_core 0.21.3", - "darling_macro 0.21.3", + "darling_core 0.21.3", + "darling_macro 0.21.3", ] [[package]] @@ -2155,8 +2154,8 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" dependencies = [ - "darling_core 0.23.0", - "darling_macro 0.23.0", + "darling_core 0.23.0", + "darling_macro 0.23.0", ] [[package]] @@ -2165,12 +2164,12 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.10.0", + "syn 1.0.109", ] [[package]] @@ -2179,12 +2178,12 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2193,12 +2192,12 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2207,11 +2206,11 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" dependencies = [ - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.114", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.114", ] [[package]] @@ -2220,9 +2219,9 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" dependencies = [ - "darling_core 0.14.4", - "quote", - "syn 1.0.109", + "darling_core 0.14.4", + "quote", + "syn 1.0.109", ] [[package]] @@ -2231,9 +2230,9 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core 0.20.11", - "quote", - "syn 2.0.114", + "darling_core 0.20.11", + "quote", + "syn 2.0.114", ] [[package]] @@ -2242,9 +2241,9 @@ version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" dependencies = [ - "darling_core 0.21.3", - "quote", - "syn 2.0.114", + "darling_core 0.21.3", + "quote", + "syn 2.0.114", ] [[package]] @@ -2253,9 +2252,9 @@ version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" dependencies = [ - "darling_core 0.23.0", - "quote", - "syn 2.0.114", + "darling_core 0.23.0", + "quote", + "syn 2.0.114", ] [[package]] @@ -2264,12 +2263,12 @@ version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" dependencies = [ - "cfg-if", - "crossbeam-utils", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core", + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", ] [[package]] @@ -2284,53 +2283,53 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f02e9a7e70f214e5282db11c8effba173f4e25a00977e520c6b811817e3a082b" dependencies = [ - "arrow", - "arrow-schema", - "async-trait", - "bytes", - "bzip2", - "chrono", - "datafusion-catalog", - "datafusion-catalog-listing", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-datasource-arrow", - "datafusion-datasource-csv", - "datafusion-datasource-json", - "datafusion-datasource-parquet", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-nested", - "datafusion-functions-table", - "datafusion-functions-window", - "datafusion-optimizer", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-optimizer", - "datafusion-physical-plan", - "datafusion-session", - "datafusion-sql", - "flate2", - "futures", - "itertools 0.14.0", - "liblzma", - "log", - "object_store", - "parking_lot", - "parquet", - "rand 0.9.2", - "regex", - "sqlparser", - "tempfile", - "tokio", - "url", - "uuid", - "zstd", + "arrow", + "arrow-schema", + "async-trait", + "bytes", + "bzip2", + "chrono", + "datafusion-catalog", + "datafusion-catalog-listing", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-datasource-arrow", + "datafusion-datasource-csv", + "datafusion-datasource-json", + "datafusion-datasource-parquet", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-nested", + "datafusion-functions-table", + "datafusion-functions-window", + "datafusion-optimizer", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-optimizer", + "datafusion-physical-plan", + "datafusion-session", + "datafusion-sql", + "flate2", + "futures", + "itertools 0.14.0", + "liblzma", + "log", + "object_store", + "parking_lot", + "parquet", + "rand 0.9.2", + "regex", + "sqlparser", + "tempfile", + "tokio", + "url", + "uuid", + "zstd", ] [[package]] @@ -2339,23 +2338,23 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3e91b2603f906cf8cb8be84ba4e34f9d8fe6dbdfdd6916d55f22317074d1fdf" dependencies = [ - "arrow", - "async-trait", - "dashmap", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "tokio", + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "tokio", ] [[package]] @@ -2364,21 +2363,21 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "919d20cdebddee4d8dca651aa0291a44c8104824d1ac288996a325c319ce31ba" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "futures", - "itertools 0.14.0", - "log", - "object_store", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "futures", + "itertools 0.14.0", + "log", + "object_store", ] [[package]] @@ -2387,22 +2386,22 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31ff2c4e95be40ad954de93862167b165a6fb49248bb882dea8aef4f888bc767" dependencies = [ - "ahash", - "arrow", - "arrow-ipc", - "chrono", - "half", - "hashbrown 0.16.1", - "indexmap 2.13.0", - "libc", - "log", - "object_store", - "parquet", - "paste", - "recursive", - "sqlparser", - "tokio", - "web-time", + "ahash", + "arrow", + "arrow-ipc", + "chrono", + "half", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "libc", + "log", + "object_store", + "parquet", + "paste", + "recursive", + "sqlparser", + "tokio", + "web-time", ] [[package]] @@ -2411,9 +2410,9 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dd9f820fe58c2600b6c33a14432228dbaaf233b96c83a1fd61f16d073d5c3c5" dependencies = [ - "futures", - "log", - "tokio", + "futures", + "log", + "tokio", ] [[package]] @@ -2422,33 +2421,33 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "86b32b7b12645805d20b70aba6ba846cd262d7b073f7f617640c3294af108d44" dependencies = [ - "arrow", - "async-compression", - "async-trait", - "bytes", - "bzip2", - "chrono", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "flate2", - "futures", - "glob", - "itertools 0.14.0", - "liblzma", - "log", - "object_store", - "rand 0.9.2", - "tokio", - "tokio-util", - "url", - "zstd", + "arrow", + "async-compression", + "async-trait", + "bytes", + "bzip2", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "flate2", + "futures", + "glob", + "itertools 0.14.0", + "liblzma", + "log", + "object_store", + "rand 0.9.2", + "tokio", + "tokio-util", + "url", + "zstd", ] [[package]] @@ -2457,22 +2456,22 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597695c8ebb723ee927b286139d43a3fbed6de7ad9210bd1a9fed5c721ac6fb1" dependencies = [ - "arrow", - "arrow-ipc", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "itertools 0.14.0", - "object_store", - "tokio", + "arrow", + "arrow-ipc", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "object_store", + "tokio", ] [[package]] @@ -2481,21 +2480,21 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bb493d07d8da6d00a89ea9cc3e74a56795076d9faed5ac30284bd9ef37929e9" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "regex", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "regex", + "tokio", ] [[package]] @@ -2504,20 +2503,20 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e9806521c4d3632f53b9a664041813c267c670232efa1452ef29faee71c3749" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-session", - "futures", - "object_store", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "tokio", ] [[package]] @@ -2526,28 +2525,28 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6a3ccd48d5034f8461f522114d0e46dfb3a9f0ce01a4d53a721024ace95d60d" dependencies = [ - "arrow", - "async-trait", - "bytes", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-datasource", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr", - "datafusion-physical-expr-adapter", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "datafusion-session", - "futures", - "itertools 0.14.0", - "log", - "object_store", - "parking_lot", - "parquet", - "tokio", + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "tokio", ] [[package]] @@ -2562,19 +2561,19 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccbc5e469b35d87c0b115327be83d68356ef9154684d32566315b5c071577e23" dependencies = [ - "arrow", - "async-trait", - "chrono", - "dashmap", - "datafusion-common", - "datafusion-expr", - "futures", - "log", - "object_store", - "parking_lot", - "rand 0.9.2", - "tempfile", - "url", + "arrow", + "async-trait", + "chrono", + "dashmap", + "datafusion-common", + "datafusion-expr", + "futures", + "log", + "object_store", + "parking_lot", + "rand 0.9.2", + "tempfile", + "url", ] [[package]] @@ -2583,21 +2582,21 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81ed3c02a3faf4e09356d5a314471703f440f0a6a14ca6addaf6cfb44ab14de5" dependencies = [ - "arrow", - "async-trait", - "chrono", - "datafusion-common", - "datafusion-doc", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", - "recursive", - "serde_json", - "sqlparser", + "arrow", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", + "recursive", + "serde_json", + "sqlparser", ] [[package]] @@ -2606,11 +2605,11 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1567e60d21c372ca766dc9dde98efabe2b06d98f008d988fed00d93546bf5be7" dependencies = [ - "arrow", - "datafusion-common", - "indexmap 2.13.0", - "itertools 0.14.0", - "paste", + "arrow", + "datafusion-common", + "indexmap 2.13.0", + "itertools 0.14.0", + "paste", ] [[package]] @@ -2619,29 +2618,29 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4593538abd95c27eeeb2f86b7ad827cce07d0c474eae9b122f4f9675f8c20ad" dependencies = [ - "arrow", - "arrow-buffer", - "base64", - "blake2 0.10.6", - "blake3", - "chrono", - "chrono-tz", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-macros", - "hex", - "itertools 0.14.0", - "log", - "md-5 0.10.6", - "num-traits", - "rand 0.9.2", - "regex", - "sha2 0.10.9", - "unicode-segmentation", - "uuid", + "arrow", + "arrow-buffer", + "base64", + "blake2 0.10.6", + "blake3", + "chrono", + "chrono-tz", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-macros", + "hex", + "itertools 0.14.0", + "log", + "md-5 0.10.6", + "num-traits", + "rand 0.9.2", + "regex", + "sha2 0.10.9", + "unicode-segmentation", + "uuid", ] [[package]] @@ -2650,19 +2649,19 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f81cdf609f43cd26156934fd81beb7215d60dda40a776c2e1b83d73df69434f2" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "half", - "log", - "paste", + "ahash", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "half", + "log", + "paste", ] [[package]] @@ -2671,11 +2670,11 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9173f1bcea2ede4a5c23630a48469f06c9db9a408eb5fd140d1ff9a5e0c40ebf" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr-common", - "datafusion-physical-expr-common", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr-common", + "datafusion-physical-expr-common", ] [[package]] @@ -2684,21 +2683,21 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d0b9f32e7735a3b94ae8b9596d89080dc63dd139029a91133be370da099490d" dependencies = [ - "arrow", - "arrow-ord", - "datafusion-common", - "datafusion-doc", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions", - "datafusion-functions-aggregate", - "datafusion-functions-aggregate-common", - "datafusion-macros", - "datafusion-physical-expr-common", - "itertools 0.14.0", - "log", - "paste", + "arrow", + "arrow-ord", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr-common", + "itertools 0.14.0", + "log", + "paste", ] [[package]] @@ -2707,14 +2706,14 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57a29e8a6201b3b9fb2be17d88e287c6d427948d64220cd5ea72ced614a1aee5" dependencies = [ - "arrow", - "async-trait", - "datafusion-catalog", - "datafusion-common", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", - "paste", + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", + "paste", ] [[package]] @@ -2723,16 +2722,16 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd412754964a31c515e5a814e5ce0edaf30f0ea975f3691e800eff115ee76dfb" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-doc", - "datafusion-expr", - "datafusion-functions-window-common", - "datafusion-macros", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "log", - "paste", + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-expr", + "datafusion-functions-window-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "log", + "paste", ] [[package]] @@ -2741,8 +2740,8 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d49be73a5ac0797398927a543118bd68e58e80bf95ebdabc77336bcd9c38a711" dependencies = [ - "datafusion-common", - "datafusion-physical-expr-common", + "datafusion-common", + "datafusion-physical-expr-common", ] [[package]] @@ -2751,9 +2750,9 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "439ff5489dcac4d34ed7a49a93310c3345018c4469e34726fa471cdda725346d" dependencies = [ - "datafusion-doc", - "quote", - "syn 2.0.114", + "datafusion-doc", + "quote", + "syn 2.0.114", ] [[package]] @@ -2762,18 +2761,18 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a80bb7de8ff5a9948799bc7749c292eac5c629385cdb582893ef2d80b6e718c4" dependencies = [ - "arrow", - "chrono", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "recursive", - "regex", - "regex-syntax", + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "recursive", + "regex", + "regex-syntax", ] [[package]] @@ -2782,22 +2781,22 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83480008f66691a0047c5a88990bd76b7c1117dd8a49ca79959e214948b81f0a" dependencies = [ - "ahash", - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-functions-aggregate-common", - "datafusion-physical-expr-common", - "half", - "hashbrown 0.16.1", - "indexmap 2.13.0", - "itertools 0.14.0", - "parking_lot", - "paste", - "petgraph", - "recursive", - "tokio", + "ahash", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr-common", + "half", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "itertools 0.14.0", + "parking_lot", + "paste", + "petgraph", + "recursive", + "tokio", ] [[package]] @@ -2806,13 +2805,13 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b438306446646b359666a658cc29d5494b1e9873bc7a57707689760666fc82c" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-expr", - "datafusion-functions", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "itertools 0.14.0", + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-functions", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "itertools 0.14.0", ] [[package]] @@ -2821,15 +2820,15 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95b1fbf739038e0b313473588331c5bf79985d1b842b9937c1f10b170665cae1" dependencies = [ - "ahash", - "arrow", - "chrono", - "datafusion-common", - "datafusion-expr-common", - "hashbrown 0.16.1", - "indexmap 2.13.0", - "itertools 0.14.0", - "parking_lot", + "ahash", + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr-common", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "itertools 0.14.0", + "parking_lot", ] [[package]] @@ -2838,17 +2837,17 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc4cd3a170faa0f1de04bd4365ccfe309056746dd802ed276e8787ccb8e8a0d4" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "datafusion-pruning", - "itertools 0.14.0", - "recursive", + "arrow", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "itertools 0.14.0", + "recursive", ] [[package]] @@ -2857,29 +2856,29 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a616a72b4ddf550652b36d5a7c0386eac4accea3ffc6c29a7b16c45f237e9882" dependencies = [ - "ahash", - "arrow", - "arrow-ord", - "arrow-schema", - "async-trait", - "datafusion-common", - "datafusion-common-runtime", - "datafusion-execution", - "datafusion-expr", - "datafusion-functions", - "datafusion-functions-aggregate-common", - "datafusion-functions-window-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "futures", - "half", - "hashbrown 0.16.1", - "indexmap 2.13.0", - "itertools 0.14.0", - "log", - "parking_lot", - "pin-project-lite", - "tokio", + "ahash", + "arrow", + "arrow-ord", + "arrow-schema", + "async-trait", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "futures", + "half", + "hashbrown 0.16.1", + "indexmap 2.13.0", + "itertools 0.14.0", + "log", + "parking_lot", + "pin-project-lite", + "tokio", ] [[package]] @@ -2888,15 +2887,15 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bf4b50be3ab65650452993eda4baf81edb245fb039b8714476b0f4c8801a527" dependencies = [ - "arrow", - "datafusion-common", - "datafusion-datasource", - "datafusion-expr-common", - "datafusion-physical-expr", - "datafusion-physical-expr-common", - "datafusion-physical-plan", - "itertools 0.14.0", - "log", + "arrow", + "datafusion-common", + "datafusion-datasource", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "itertools 0.14.0", + "log", ] [[package]] @@ -2905,12 +2904,12 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66e080e2c105284460580c18e751b2133cc306df298181e4349b5b134632811a" dependencies = [ - "async-trait", - "datafusion-common", - "datafusion-execution", - "datafusion-expr", - "datafusion-physical-plan", - "parking_lot", + "async-trait", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", ] [[package]] @@ -2919,16 +2918,16 @@ version = "52.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dac502db772ff9bffc2ceae321963091982e8d5f5dfcb877e8dc66fc9a093cc" dependencies = [ - "arrow", - "bigdecimal", - "chrono", - "datafusion-common", - "datafusion-expr", - "indexmap 2.13.0", - "log", - "recursive", - "regex", - "sqlparser", + "arrow", + "bigdecimal", + "chrono", + "datafusion-common", + "datafusion-expr", + "indexmap 2.13.0", + "log", + "recursive", + "regex", + "sqlparser", ] [[package]] @@ -2937,7 +2936,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ - "uuid", + "uuid", ] [[package]] @@ -2952,9 +2951,9 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -2963,8 +2962,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ - "const-oid 0.9.6", - "zeroize", + "const-oid 0.9.6", + "zeroize", ] [[package]] @@ -2973,9 +2972,9 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ - "const-oid 0.9.6", - "pem-rfc7468 0.7.0", - "zeroize", + "const-oid 0.9.6", + "pem-rfc7468 0.7.0", + "zeroize", ] [[package]] @@ -2984,9 +2983,9 @@ version = "0.8.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02c1d73e9668ea6b6a28172aa55f3ebec38507131ce179051c8033b5c6037653" dependencies = [ - "const-oid 0.10.2", - "pem-rfc7468 1.0.0", - "zeroize", + "const-oid 0.10.2", + "pem-rfc7468 1.0.0", + "zeroize", ] [[package]] @@ -2995,12 +2994,12 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs", - "displaydoc", - "nom 7.1.3", - "num-bigint", - "num-traits", - "rusticata-macros", + "asn1-rs", + "displaydoc", + "nom 7.1.3", + "num-bigint", + "num-traits", + "rusticata-macros", ] [[package]] @@ -3009,8 +3008,8 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" dependencies = [ - "powerfmt", - "serde_core", + "powerfmt", + "serde_core", ] [[package]] @@ -3019,7 +3018,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" dependencies = [ - "derive_builder_macro 0.12.0", + "derive_builder_macro 0.12.0", ] [[package]] @@ -3028,7 +3027,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" dependencies = [ - "derive_builder_macro 0.20.2", + "derive_builder_macro 0.20.2", ] [[package]] @@ -3037,10 +3036,10 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" dependencies = [ - "darling 0.14.4", - "proc-macro2", - "quote", - "syn 1.0.109", + "darling 0.14.4", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -3049,10 +3048,10 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3061,8 +3060,8 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" dependencies = [ - "derive_builder_core 0.12.0", - "syn 1.0.109", + "derive_builder_core 0.12.0", + "syn 1.0.109", ] [[package]] @@ -3071,8 +3070,8 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ - "derive_builder_core 0.20.2", - "syn 2.0.114", + "derive_builder_core 0.20.2", + "syn 2.0.114", ] [[package]] @@ -3081,7 +3080,7 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ - "derive_more-impl", + "derive_more-impl", ] [[package]] @@ -3090,12 +3089,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ - "convert_case", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.114", - "unicode-xid", + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.114", + "unicode-xid", ] [[package]] @@ -3104,7 +3103,7 @@ version = "0.9.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "512ca722eff02fa73c43e5136f440c46f861d41f9dd7761c1f2817a5ca5d9ad7" dependencies = [ - "cipher 0.5.0-rc.3", + "cipher 0.5.0-rc.3", ] [[package]] @@ -3119,10 +3118,10 @@ version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer 0.10.4", - "const-oid 0.9.6", - "crypto-common 0.1.7", - "subtle", + "block-buffer 0.10.4", + "const-oid 0.9.6", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -3131,10 +3130,10 @@ version = "0.11.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebf9423bafb058e4142194330c52273c343f8a5beb7176d052f0e73b17dd35b9" dependencies = [ - "block-buffer 0.11.0", - "const-oid 0.10.2", - "crypto-common 0.2.0-rc.9", - "subtle", + "block-buffer 0.11.0", + "const-oid 0.10.2", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -3143,7 +3142,7 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" dependencies = [ - "dirs-sys", + "dirs-sys", ] [[package]] @@ -3152,10 +3151,10 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" dependencies = [ - "libc", - "option-ext", - "redox_users", - "windows-sys 0.61.2", + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", ] [[package]] @@ -3164,9 +3163,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3181,7 +3180,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9" dependencies = [ - "phf 0.11.3", + "phf 0.11.3", ] [[package]] @@ -3200,38 +3199,38 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" name = "e2e_test" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "aws-config", - "aws-sdk-s3", - "base64", - "bytes", - "chrono", - "flatbuffers", - "futures", - "md5 0.8.0", - "rand 0.10.0-rc.6", - "rcgen", - "reqwest", - "rmp-serde", - "rustfs-common", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-protos", - "rustls", - "rustls-pemfile", - "serde", - "serde_json", - "serial_test", - "suppaftp", - "tokio", - "tonic", - "tracing", - "tracing-subscriber", - "url", - "uuid", + "anyhow", + "async-trait", + "aws-config", + "aws-sdk-s3", + "base64", + "bytes", + "chrono", + "flatbuffers", + "futures", + "md5 0.8.0", + "rand 0.10.0-rc.6", + "rcgen", + "reqwest", + "rmp-serde", + "rustfs-common", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-protos", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serial_test", + "suppaftp", + "tokio", + "tonic", + "tracing", + "tracing-subscriber", + "url", + "uuid", ] [[package]] @@ -3240,10 +3239,10 @@ version = "0.14.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" dependencies = [ - "der 0.6.1", - "elliptic-curve 0.12.3", - "rfc6979 0.3.1", - "signature 1.6.4", + "der 0.6.1", + "elliptic-curve 0.12.3", + "rfc6979 0.3.1", + "signature 1.6.4", ] [[package]] @@ -3252,12 +3251,12 @@ version = "0.16.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" dependencies = [ - "der 0.7.10", - "digest 0.10.7", - "elliptic-curve 0.13.8", - "rfc6979 0.4.0", - "signature 2.2.0", - "spki 0.7.3", + "der 0.7.10", + "digest 0.10.7", + "elliptic-curve 0.13.8", + "rfc6979 0.4.0", + "signature 2.2.0", + "spki 0.7.3", ] [[package]] @@ -3266,8 +3265,8 @@ version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ - "pkcs8 0.10.2", - "signature 2.2.0", + "pkcs8 0.10.2", + "signature 2.2.0", ] [[package]] @@ -3276,7 +3275,7 @@ version = "3.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "594435fe09e345ee388e4e8422072ff7dfeca8729389fbd997b3f5504c44cd47" dependencies = [ - "signature 3.0.0-rc.6", + "signature 3.0.0-rc.6", ] [[package]] @@ -3285,13 +3284,13 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ - "curve25519-dalek 4.1.3", - "ed25519 2.2.3", - "rand_core 0.6.4", - "serde", - "sha2 0.10.9", - "subtle", - "zeroize", + "curve25519-dalek 4.1.3", + "ed25519 2.2.3", + "rand_core 0.6.4", + "serde", + "sha2 0.10.9", + "subtle", + "zeroize", ] [[package]] @@ -3300,10 +3299,10 @@ version = "3.0.0-pre.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4b9f613e0c236c699bf70d39f825594d9b03aadfd8dd856ea40685f782a4ef2" dependencies = [ - "curve25519-dalek 5.0.0-pre.4", - "ed25519 3.0.0-rc.2", - "sha2 0.11.0-rc.3", - "subtle", + "curve25519-dalek 5.0.0-pre.4", + "ed25519 3.0.0-rc.2", + "sha2 0.11.0-rc.3", + "subtle", ] [[package]] @@ -3318,18 +3317,18 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" dependencies = [ - "base16ct 0.1.1", - "crypto-bigint 0.4.9", - "der 0.6.1", - "digest 0.10.7", - "ff 0.12.1", - "generic-array 0.14.7", - "group 0.12.1", - "pkcs8 0.9.0", - "rand_core 0.6.4", - "sec1 0.3.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "crypto-bigint 0.4.9", + "der 0.6.1", + "digest 0.10.7", + "ff 0.12.1", + "generic-array 0.14.7", + "group 0.12.1", + "pkcs8 0.9.0", + "rand_core 0.6.4", + "sec1 0.3.0", + "subtle", + "zeroize", ] [[package]] @@ -3338,19 +3337,19 @@ version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ - "base16ct 0.2.0", - "crypto-bigint 0.5.5", - "digest 0.10.7", - "ff 0.13.1", - "generic-array 0.14.7", - "group 0.13.0", - "hkdf", - "pem-rfc7468 0.7.0", - "pkcs8 0.10.2", - "rand_core 0.6.4", - "sec1 0.7.3", - "subtle", - "zeroize", + "base16ct 0.2.0", + "crypto-bigint 0.5.5", + "digest 0.10.7", + "ff 0.13.1", + "generic-array 0.14.7", + "group 0.13.0", + "hkdf", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.2", + "rand_core 0.6.4", + "sec1 0.7.3", + "subtle", + "zeroize", ] [[package]] @@ -3359,7 +3358,7 @@ version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -3368,10 +3367,10 @@ version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.114", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3380,7 +3379,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25b07a8dfbbbfc0064c0a6bdf9edcf966de6b1c33ce344bdeca3b41615452634" dependencies = [ - "enumset_derive", + "enumset_derive", ] [[package]] @@ -3389,10 +3388,10 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f43e744e4ea338060faee68ed933e46e722fb7f3617e722a5772d7e856d8b3ce" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3401,7 +3400,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "log", + "log", ] [[package]] @@ -3410,8 +3409,8 @@ version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ - "env_filter", - "log", + "env_filter", + "log", ] [[package]] @@ -3420,7 +3419,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" dependencies = [ - "equator-macro", + "equator-macro", ] [[package]] @@ -3429,9 +3428,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3446,7 +3445,7 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -3455,9 +3454,9 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" dependencies = [ - "serde", - "serde_core", - "typeid", + "serde", + "serde_core", + "typeid", ] [[package]] @@ -3466,8 +3465,8 @@ version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ - "libc", - "windows-sys 0.61.2", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -3476,9 +3475,9 @@ version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", + "concurrent-queue", + "parking", + "pin-project-lite", ] [[package]] @@ -3487,8 +3486,8 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener", - "pin-project-lite", + "event-listener", + "pin-project-lite", ] [[package]] @@ -3497,8 +3496,8 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73" dependencies = [ - "heapless", - "serde", + "heapless", + "serde", ] [[package]] @@ -3513,8 +3512,8 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3523,8 +3522,8 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ - "rand_core 0.6.4", - "subtle", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -3545,10 +3544,10 @@ version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.60.2", + "cfg-if", + "libc", + "libredox", + "windows-sys 0.60.2", ] [[package]] @@ -3563,10 +3562,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" dependencies = [ - "cc", - "lazy_static", - "libc", - "winapi", + "cc", + "lazy_static", + "libc", + "winapi", ] [[package]] @@ -3581,8 +3580,8 @@ version = "25.12.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" dependencies = [ - "bitflags 2.10.0", - "rustc_version", + "bitflags 2.10.0", + "rustc_version", ] [[package]] @@ -3591,9 +3590,9 @@ version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369" dependencies = [ - "crc32fast", - "miniz_oxide", - "zlib-rs", + "crc32fast", + "miniz_oxide", + "zlib-rs", ] [[package]] @@ -3602,21 +3601,21 @@ version = "0.31.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31e5335674a3a259527f97e9176a3767dcc9b220b8e29d643daeb2d6c72caf8b" dependencies = [ - "chrono", - "crossbeam-channel", - "crossbeam-queue", - "flate2", - "log", - "notify-debouncer-mini", - "nu-ansi-term", - "regex", - "serde", - "serde_derive", - "serde_json", - "thiserror 2.0.17", - "toml", - "tracing", - "tracing-subscriber", + "chrono", + "crossbeam-channel", + "crossbeam-queue", + "flate2", + "log", + "notify-debouncer-mini", + "nu-ansi-term", + "regex", + "serde", + "serde_derive", + "serde_json", + "thiserror 2.0.17", + "toml", + "tracing", + "tracing-subscriber", ] [[package]] @@ -3625,9 +3624,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ - "futures-core", - "futures-sink", - "spin 0.9.8", + "futures-core", + "futures-sink", + "spin 0.9.8", ] [[package]] @@ -3636,10 +3635,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf5efcf77a4da27927d3ab0509dec5b0954bb3bc59da5a1de9e52642ebd4cdf9" dependencies = [ - "ahash", - "num_cpus", - "parking_lot", - "seize", + "ahash", + "num_cpus", + "parking_lot", + "seize", ] [[package]] @@ -3666,7 +3665,7 @@ version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ - "percent-encoding", + "percent-encoding", ] [[package]] @@ -3675,8 +3674,8 @@ version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf68cef89750956493a66a10f512b9e58d9db21f2a573c079c0bdf1207a54a7" dependencies = [ - "autocfg", - "tokio", + "autocfg", + "tokio", ] [[package]] @@ -3691,7 +3690,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" dependencies = [ - "libc", + "libc", ] [[package]] @@ -3700,13 +3699,13 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] @@ -3715,8 +3714,8 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ - "futures-core", - "futures-sink", + "futures-core", + "futures-sink", ] [[package]] @@ -3731,9 +3730,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ - "futures-core", - "futures-task", - "futures-util", + "futures-core", + "futures-task", + "futures-util", ] [[package]] @@ -3748,11 +3747,11 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ - "fastrand", - "futures-core", - "futures-io", - "parking", - "pin-project-lite", + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", ] [[package]] @@ -3761,9 +3760,9 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3784,16 +3783,16 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", ] [[package]] @@ -3802,9 +3801,9 @@ version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ - "typenum", - "version_check", - "zeroize", + "typenum", + "version_check", + "zeroize", ] [[package]] @@ -3813,9 +3812,9 @@ version = "1.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542" dependencies = [ - "generic-array 0.14.7", - "rustversion", - "typenum", + "generic-array 0.14.7", + "rustversion", + "typenum", ] [[package]] @@ -3824,11 +3823,11 @@ version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", ] [[package]] @@ -3837,12 +3836,12 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "r-efi", - "wasip2", - "wasm-bindgen", + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", ] [[package]] @@ -3851,11 +3850,11 @@ version = "0.4.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b99f0d993a2b9b97b9a201193aa8ad21305cde06a3be9a7e1f8f4201e5cc27e" dependencies = [ - "cfg-if", - "libc", - "r-efi", - "rand_core 0.10.0-rc-3", - "wasip2", + "cfg-if", + "libc", + "r-efi", + "rand_core 0.10.0-rc-3", + "wasip2", ] [[package]] @@ -3864,10 +3863,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912" dependencies = [ - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -3876,8 +3875,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" dependencies = [ - "opaque-debug", - "polyval 0.6.2", + "opaque-debug", + "polyval 0.6.2", ] [[package]] @@ -3886,7 +3885,7 @@ version = "0.6.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "333de57ed9494a40df4bbb866752b100819dde0d18f2264c48f5a08a85fe673d" dependencies = [ - "polyval 0.7.0-rc.3", + "polyval 0.7.0-rc.3", ] [[package]] @@ -3907,20 +3906,20 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34f8aadacd3195fc3b08f2a5d582f2401c60d9f1598574acfcfb6228de25db29" dependencies = [ - "async-trait", - "base64", - "bytes", - "google-cloud-gax", - "http 1.4.0", - "reqwest", - "rustc_version", - "rustls", - "rustls-pki-types", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", + "async-trait", + "base64", + "bytes", + "google-cloud-gax", + "http 1.4.0", + "reqwest", + "rustc_version", + "rustls", + "rustls-pki-types", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", ] [[package]] @@ -3929,18 +3928,18 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b218292363f2e2d6ab8d6da4118acf91cc044439c442d2d6809b581e0728b377" dependencies = [ - "base64", - "bytes", - "futures", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "pin-project", - "rand 0.9.2", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", + "base64", + "bytes", + "futures", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "pin-project", + "rand 0.9.2", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", ] [[package]] @@ -3949,32 +3948,32 @@ version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78125fa0347492177131d30c010e57ddce9bba1504c33be135f5853a9105c277" dependencies = [ - "bytes", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-rpc", - "google-cloud-wkt", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "opentelemetry-semantic-conventions", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "rustc_version", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tonic-prost", - "tower", - "tracing", + "bytes", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-rpc", + "google-cloud-wkt", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "opentelemetry-semantic-conventions", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "rustc_version", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tonic-prost", + "tower", + "tracing", ] [[package]] @@ -3983,18 +3982,18 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84b431125034e0928e41e8c117bcbc40b0b55b55464b2e964b26e1ffcb15323" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-type", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-type", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4003,18 +4002,18 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d0612f4062f42b141b4d050d1a8a2f860e907a548bde28cb82d4fdf0eb346a3" dependencies = [ - "async-trait", - "bytes", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-rpc", - "google-cloud-wkt", - "lazy_static", - "reqwest", - "serde", - "serde_json", - "serde_with", - "tracing", + "async-trait", + "bytes", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-rpc", + "google-cloud-wkt", + "lazy_static", + "reqwest", + "serde", + "serde_json", + "serde_with", + "tracing", ] [[package]] @@ -4023,12 +4022,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49747b7b684b804a2d1040c2cdb21238b3d568a41ab9e36c423554509112f61d" dependencies = [ - "google-cloud-gax", - "google-cloud-longrunning", - "google-cloud-rpc", - "google-cloud-wkt", - "serde", - "tokio", + "google-cloud-gax", + "google-cloud-longrunning", + "google-cloud-rpc", + "google-cloud-wkt", + "serde", + "tokio", ] [[package]] @@ -4037,11 +4036,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd10e97751ca894f9dad6be69fcef1cb72f5bc187329e0254817778fc8235030" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4050,44 +4049,44 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6abde5d51a4728f47b8f7781d7bf86ab51e310b42ec7c7c96578f1d03da938e4" dependencies = [ - "async-trait", - "base64", - "bytes", - "chrono", - "crc32c", - "futures", - "google-cloud-auth", - "google-cloud-gax", - "google-cloud-gax-internal", - "google-cloud-iam-v1", - "google-cloud-longrunning", - "google-cloud-lro", - "google-cloud-rpc", - "google-cloud-type", - "google-cloud-wkt", - "hex", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "lazy_static", - "md5 0.8.0", - "mime", - "percent-encoding", - "pin-project", - "prost 0.14.3", - "prost-types", - "reqwest", - "serde", - "serde_json", - "serde_with", - "sha2 0.10.9", - "thiserror 2.0.17", - "tokio", - "tokio-stream", - "tonic", - "tracing", - "url", - "uuid", + "async-trait", + "base64", + "bytes", + "chrono", + "crc32c", + "futures", + "google-cloud-auth", + "google-cloud-gax", + "google-cloud-gax-internal", + "google-cloud-iam-v1", + "google-cloud-longrunning", + "google-cloud-lro", + "google-cloud-rpc", + "google-cloud-type", + "google-cloud-wkt", + "hex", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "lazy_static", + "md5 0.8.0", + "mime", + "percent-encoding", + "pin-project", + "prost 0.14.3", + "prost-types", + "reqwest", + "serde", + "serde_json", + "serde_with", + "sha2 0.10.9", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tonic", + "tracing", + "url", + "uuid", ] [[package]] @@ -4096,11 +4095,11 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9390ac2f3f9882ff42956b25ea65b9f546c8dd44c131726d75a96bf744ec75f6" dependencies = [ - "bytes", - "google-cloud-wkt", - "serde", - "serde_json", - "serde_with", + "bytes", + "google-cloud-wkt", + "serde", + "serde_json", + "serde_with", ] [[package]] @@ -4109,14 +4108,14 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6f270e404be7ce76a3260abe0c3c71492ab2599ccd877f3253f3dd552f48cc9" dependencies = [ - "base64", - "bytes", - "serde", - "serde_json", - "serde_with", - "thiserror 2.0.17", - "time", - "url", + "base64", + "bytes", + "serde", + "serde_json", + "serde_with", + "thiserror 2.0.17", + "time", + "url", ] [[package]] @@ -4125,9 +4124,9 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" dependencies = [ - "ff 0.12.1", - "rand_core 0.6.4", - "subtle", + "ff 0.12.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4136,9 +4135,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ - "ff 0.13.1", - "rand_core 0.6.4", - "subtle", + "ff 0.13.1", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -4147,17 +4146,17 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.4.0", - "indexmap 2.13.0", - "slab", - "tokio", - "tokio-util", - "tracing", + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.4.0", + "indexmap 2.13.0", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -4166,10 +4165,10 @@ version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" dependencies = [ - "cfg-if", - "crunchy", - "num-traits", - "zerocopy", + "cfg-if", + "crunchy", + "num-traits", + "zerocopy", ] [[package]] @@ -4178,7 +4177,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" dependencies = [ - "byteorder", + "byteorder", ] [[package]] @@ -4199,9 +4198,9 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.1.5", + "allocator-api2", + "equivalent", + "foldhash 0.1.5", ] [[package]] @@ -4210,12 +4209,12 @@ version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.2.0", - "rayon", - "serde", - "serde_core", + "allocator-api2", + "equivalent", + "foldhash 0.2.0", + "rayon", + "serde", + "serde_core", ] [[package]] @@ -4224,9 +4223,9 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74d9ba66d1739c68e0219b2b2238b5c4145f491ebf181b9c6ab561a19352ae86" dependencies = [ - "hax-lib-macros", - "num-bigint", - "num-traits", + "hax-lib-macros", + "num-bigint", + "num-traits", ] [[package]] @@ -4235,11 +4234,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24ba777a231a58d1bce1d68313fa6b6afcc7966adef23d60f45b8a2b9b688bf1" dependencies = [ - "hax-lib-macros-types", - "proc-macro-error2", - "proc-macro2", - "quote", - "syn 2.0.114", + "hax-lib-macros-types", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -4248,11 +4247,11 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "867e19177d7425140b417cd27c2e05320e727ee682e98368f88b7194e80ad515" dependencies = [ - "proc-macro2", - "quote", - "serde", - "serde_json", - "uuid", + "proc-macro2", + "quote", + "serde", + "serde_json", + "uuid", ] [[package]] @@ -4261,8 +4260,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" dependencies = [ - "hash32", - "stable_deref_trait", + "hash32", + "stable_deref_trait", ] [[package]] @@ -4277,17 +4276,17 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a56c94661ddfb51aa9cdfbf102cfcc340aa69267f95ebccc4af08d7c530d393" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "heed-traits", - "heed-types", - "libc", - "lmdb-master-sys", - "once_cell", - "page_size", - "serde", - "synchronoise", - "url", + "bitflags 2.10.0", + "byteorder", + "heed-traits", + "heed-types", + "libc", + "lmdb-master-sys", + "once_cell", + "page_size", + "serde", + "synchronoise", + "url", ] [[package]] @@ -4302,11 +4301,11 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c255bdf46e07fb840d120a36dcc81f385140d7191c76a7391672675c01a55d" dependencies = [ - "bincode", - "byteorder", - "heed-traits", - "serde", - "serde_json", + "bincode", + "byteorder", + "heed-traits", + "serde", + "serde_json", ] [[package]] @@ -4333,8 +4332,8 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f7685beb53fc20efc2605f32f5d51e9ba18b8ef237961d1760169d2290d3bee" dependencies = [ - "outref", - "vsimd", + "outref", + "vsimd", ] [[package]] @@ -4349,7 +4348,7 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ - "hmac 0.12.1", + "hmac 0.12.1", ] [[package]] @@ -4358,7 +4357,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "digest 0.10.7", + "digest 0.10.7", ] [[package]] @@ -4367,7 +4366,7 @@ version = "0.13.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1c597ac7d6cc8143e30e83ef70915e7f883b18d8bec2e2b2bce47f5bbb06d57" dependencies = [ - "digest 0.11.0-rc.5", + "digest 0.11.0-rc.5", ] [[package]] @@ -4376,7 +4375,7 @@ version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -4385,9 +4384,9 @@ version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ - "bytes", - "fnv", - "itoa", + "bytes", + "fnv", + "itoa", ] [[package]] @@ -4396,8 +4395,8 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ - "bytes", - "itoa", + "bytes", + "itoa", ] [[package]] @@ -4406,9 +4405,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ - "bytes", - "http 0.2.12", - "pin-project-lite", + "bytes", + "http 0.2.12", + "pin-project-lite", ] [[package]] @@ -4417,8 +4416,8 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ - "bytes", - "http 1.4.0", + "bytes", + "http 1.4.0", ] [[package]] @@ -4427,11 +4426,11 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ - "bytes", - "futures-core", - "http 1.4.0", - "http-body 1.0.1", - "pin-project-lite", + "bytes", + "futures-core", + "http 1.4.0", + "http-body 1.0.1", + "pin-project-lite", ] [[package]] @@ -4458,8 +4457,8 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0" dependencies = [ - "typenum", - "zeroize", + "typenum", + "zeroize", ] [[package]] @@ -4468,21 +4467,21 @@ version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "pin-utils", - "smallvec", - "tokio", - "want", + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", ] [[package]] @@ -4491,17 +4490,17 @@ version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "http 1.4.0", - "hyper", - "hyper-util", - "log", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", + "http 1.4.0", + "hyper", + "hyper-util", + "log", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", ] [[package]] @@ -4510,11 +4509,11 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" dependencies = [ - "hyper", - "hyper-util", - "pin-project-lite", - "tokio", - "tower-service", + "hyper", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", ] [[package]] @@ -4523,24 +4522,24 @@ version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ - "base64", - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2", - "system-configuration", - "tokio", - "tower-service", - "tracing", - "windows-registry", + "base64", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", ] [[package]] @@ -4549,13 +4548,13 @@ version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core 0.62.2", + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", ] [[package]] @@ -4564,7 +4563,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "cc", + "cc", ] [[package]] @@ -4573,11 +4572,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", ] [[package]] @@ -4586,11 +4585,11 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", ] [[package]] @@ -4599,12 +4598,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", ] [[package]] @@ -4619,12 +4618,12 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "zerotrie", - "zerovec", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", ] [[package]] @@ -4639,13 +4638,13 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" dependencies = [ - "displaydoc", - "icu_locale_core", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", ] [[package]] @@ -4660,9 +4659,9 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", + "idna_adapter", + "smallvec", + "utf8_iter", ] [[package]] @@ -4671,8 +4670,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "icu_normalizer", - "icu_properties", + "icu_normalizer", + "icu_properties", ] [[package]] @@ -4681,9 +4680,9 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", + "autocfg", + "hashbrown 0.12.3", + "serde", ] [[package]] @@ -4692,10 +4691,10 @@ version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ - "equivalent", - "hashbrown 0.16.1", - "serde", - "serde_core", + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", ] [[package]] @@ -4704,16 +4703,16 @@ version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88" dependencies = [ - "ahash", - "indexmap 2.13.0", - "is-terminal", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.26.0", - "rgb", - "str_stack", + "ahash", + "indexmap 2.13.0", + "is-terminal", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.26.0", + "rgb", + "str_stack", ] [[package]] @@ -4722,20 +4721,20 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d35223c50fdd26419a4ccea2c73be68bd2b29a3d7d6123ffe101c17f4c20a52a" dependencies = [ - "ahash", - "clap", - "crossbeam-channel", - "crossbeam-utils", - "dashmap", - "env_logger", - "indexmap 2.13.0", - "itoa", - "log", - "num-format", - "once_cell", - "quick-xml 0.38.4", - "rgb", - "str_stack", + "ahash", + "clap", + "crossbeam-channel", + "crossbeam-utils", + "dashmap", + "env_logger", + "indexmap 2.13.0", + "itoa", + "log", + "num-format", + "once_cell", + "quick-xml 0.38.4", + "rgb", + "str_stack", ] [[package]] @@ -4744,9 +4743,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" dependencies = [ - "bitflags 2.10.0", - "inotify-sys", - "libc", + "bitflags 2.10.0", + "inotify-sys", + "libc", ] [[package]] @@ -4755,7 +4754,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" dependencies = [ - "libc", + "libc", ] [[package]] @@ -4764,8 +4763,8 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "block-padding", - "generic-array 0.14.7", + "block-padding", + "generic-array 0.14.7", ] [[package]] @@ -4774,7 +4773,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ - "hybrid-array", + "hybrid-array", ] [[package]] @@ -4789,29 +4788,29 @@ version = "0.6.16+upstream-0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe44f2bbd99fcb302e246e2d6bcf51aeda346d02a365f80296a07a8c711b6da6" dependencies = [ - "argon2 0.5.3", - "bcrypt-pbkdf", - "digest 0.11.0-rc.5", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "hex", - "hmac 0.12.1", - "num-bigint-dig", - "p256 0.13.2", - "p384", - "p521", - "rand_core 0.6.4", - "rsa", - "sec1 0.7.3", - "sha1 0.10.6", - "sha1 0.11.0-rc.3", - "sha2 0.10.9", - "signature 2.2.0", - "signature 3.0.0-rc.6", - "ssh-cipher 0.2.0", - "ssh-encoding 0.2.0", - "subtle", - "zeroize", + "argon2 0.5.3", + "bcrypt-pbkdf", + "digest 0.11.0-rc.5", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "hex", + "hmac 0.12.1", + "num-bigint-dig", + "p256 0.13.2", + "p384", + "p521", + "rand_core 0.6.4", + "rsa", + "sec1 0.7.3", + "sha1 0.10.6", + "sha1 0.11.0-rc.3", + "sha2 0.10.9", + "signature 2.2.0", + "signature 3.0.0-rc.6", + "ssh-cipher 0.2.0", + "ssh-encoding 0.2.0", + "subtle", + "zeroize", ] [[package]] @@ -4826,7 +4825,7 @@ version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf370abdafd54d13e54a620e8c3e1145f28e46cc9d704bc6d94414559df41763" dependencies = [ - "serde", + "serde", ] [[package]] @@ -4835,8 +4834,8 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -4845,9 +4844,9 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.61.2", + "hermit-abi", + "libc", + "windows-sys 0.61.2", ] [[package]] @@ -4868,7 +4867,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ - "either", + "either", ] [[package]] @@ -4877,7 +4876,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ - "either", + "either", ] [[package]] @@ -4892,15 +4891,15 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74ff642505c7ce8d31c0d43ec0e235c6fd4585d9b8172d8f9dd04d36590200b5" dependencies = [ - "anyhow", - "libc", - "mappings", - "once_cell", - "pprof_util", - "tempfile", - "tikv-jemalloc-ctl", - "tokio", - "tracing", + "anyhow", + "libc", + "mappings", + "once_cell", + "pprof_util", + "tempfile", + "tikv-jemalloc-ctl", + "tokio", + "tracing", ] [[package]] @@ -4909,18 +4908,18 @@ version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ - "getrandom 0.3.4", - "libc", + "getrandom 0.3.4", + "libc", ] [[package]] name = "js-sys" -version = "0.3.83" +version = "0.3.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" +checksum = "992dc2f5318945507d390b324ab307c7e7ef69da0002cd14f178a5f37e289dc5" dependencies = [ - "once_cell", - "wasm-bindgen", + "once_cell", + "wasm-bindgen", ] [[package]] @@ -4929,15 +4928,15 @@ version = "10.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e" dependencies = [ - "aws-lc-rs", - "base64", - "getrandom 0.2.17", - "js-sys", - "pem", - "serde", - "serde_json", - "signature 2.2.0", - "simple_asn1", + "aws-lc-rs", + "base64", + "getrandom 0.2.17", + "js-sys", + "pem", + "serde", + "serde_json", + "signature 2.2.0", + "simple_asn1", ] [[package]] @@ -4946,8 +4945,8 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" dependencies = [ - "kqueue-sys", - "libc", + "kqueue-sys", + "libc", ] [[package]] @@ -4956,8 +4955,8 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" dependencies = [ - "bitflags 1.3.2", - "libc", + "bitflags 1.3.2", + "libc", ] [[package]] @@ -4966,9 +4965,9 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5c13b6857ade4c8ee05c3c3dc97d2ab5415d691213825b90d3211c425c1f907" dependencies = [ - "lazy-regex-proc_macros", - "once_cell", - "regex", + "lazy-regex-proc_macros", + "once_cell", + "regex", ] [[package]] @@ -4977,10 +4976,10 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a95c68db5d41694cea563c86a4ba4dc02141c16ef64814108cb23def4d5438" dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.114", + "proc-macro2", + "quote", + "regex", + "syn 2.0.114", ] [[package]] @@ -4989,7 +4988,7 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin 0.9.8", ] [[package]] @@ -4998,11 +4997,11 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" dependencies = [ - "lexical-parse-float", - "lexical-parse-integer", - "lexical-util", - "lexical-write-float", - "lexical-write-integer", + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", ] [[package]] @@ -5011,8 +5010,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" dependencies = [ - "lexical-parse-integer", - "lexical-util", + "lexical-parse-integer", + "lexical-util", ] [[package]] @@ -5021,7 +5020,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5036,8 +5035,8 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" dependencies = [ - "lexical-util", - "lexical-write-integer", + "lexical-util", + "lexical-write-integer", ] [[package]] @@ -5046,7 +5045,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" dependencies = [ - "lexical-util", + "lexical-util", ] [[package]] @@ -5067,8 +5066,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc9ee7ef66569dd7516454fe26de4e401c0c62073929803486b96744594b9632" dependencies = [ - "core-models", - "hax-lib", + "core-models", + "hax-lib", ] [[package]] @@ -5077,14 +5076,14 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bb6a88086bf11bd2ec90926c749c4a427f2e59841437dbdede8cde8a96334ab" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-secrets", - "libcrux-sha3", - "libcrux-traits", - "rand 0.9.2", - "tls_codec", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-secrets", + "libcrux-sha3", + "libcrux-traits", + "rand 0.9.2", + "tls_codec", ] [[package]] @@ -5093,7 +5092,7 @@ version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db82d058aa76ea315a3b2092f69dfbd67ddb0e462038a206e1dcd73f058c0778" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5102,7 +5101,7 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e4dbbf6bc9f2bc0f20dc3bea3e5c99adff3bdccf6d2a40488963da69e2ec307" dependencies = [ - "hax-lib", + "hax-lib", ] [[package]] @@ -5111,10 +5110,10 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2400bec764d1c75b8a496d5747cffe32f1fb864a12577f0aca2f55a92021c962" dependencies = [ - "hax-lib", - "libcrux-intrinsics", - "libcrux-platform", - "libcrux-traits", + "hax-lib", + "libcrux-intrinsics", + "libcrux-platform", + "libcrux-traits", ] [[package]] @@ -5123,8 +5122,8 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9adfd58e79d860f6b9e40e35127bfae9e5bd3ade33201d1347459011a2add034" dependencies = [ - "libcrux-secrets", - "rand 0.9.2", + "libcrux-secrets", + "rand 0.9.2", ] [[package]] @@ -5133,8 +5132,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ - "cfg-if", - "windows-link 0.2.1", + "cfg-if", + "windows-link 0.2.1", ] [[package]] @@ -5143,7 +5142,7 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648" dependencies = [ - "liblzma-sys", + "liblzma-sys", ] [[package]] @@ -5152,9 +5151,9 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736" dependencies = [ - "cc", - "libc", - "pkg-config", + "cc", + "libc", + "pkg-config", ] [[package]] @@ -5169,8 +5168,8 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5179,9 +5178,9 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" dependencies = [ - "bitflags 2.10.0", - "libc", - "redox_syscall 0.7.0", + "bitflags 2.10.0", + "libc", + "redox_syscall 0.7.0", ] [[package]] @@ -5190,16 +5189,16 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19c97a761fc86953c5b885422b22c891dbf5bcb9dcc99d0110d6ce4c052759f0" dependencies = [ - "hmac 0.12.1", - "libc", - "log", - "nix 0.29.0", - "nom 8.0.0", - "once_cell", - "serde", - "sha2 0.10.9", - "thiserror 2.0.17", - "uuid", + "hmac 0.12.1", + "libc", + "log", + "nix 0.29.0", + "nom 8.0.0", + "once_cell", + "serde", + "sha2 0.10.9", + "thiserror 2.0.17", + "uuid", ] [[package]] @@ -5208,33 +5207,33 @@ version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8270fae0f77279620962f533153fa727a9cf9485dbb79d47eed3086d42b17264" dependencies = [ - "async-trait", - "bitflags 2.10.0", - "bytes", - "chrono", - "dashmap", - "derive_more", - "futures-util", - "getrandom 0.3.4", - "lazy_static", - "libc", - "md-5 0.10.6", - "moka", - "nix 0.29.0", - "prometheus", - "proxy-protocol", - "rustls", - "rustls-pemfile", - "slog", - "slog-stdlog", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-util", - "tracing", - "tracing-attributes", - "uuid", - "x509-parser 0.17.0", + "async-trait", + "bitflags 2.10.0", + "bytes", + "chrono", + "dashmap", + "derive_more", + "futures-util", + "getrandom 0.3.4", + "lazy_static", + "libc", + "md-5 0.10.6", + "moka", + "nix 0.29.0", + "prometheus", + "proxy-protocol", + "rustls", + "rustls-pemfile", + "slog", + "slog-stdlog", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-util", + "tracing", + "tracing-attributes", + "uuid", + "x509-parser 0.17.0", ] [[package]] @@ -5261,9 +5260,9 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "864808e0b19fb6dd3b70ba94ee671b82fce17554cf80aeb0a155c65bb08027df" dependencies = [ - "cc", - "doxygen-rs", - "libc", + "cc", + "doxygen-rs", + "libc", ] [[package]] @@ -5272,9 +5271,9 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92488bc8a0f99ee9f23577bdd06526d49657df8bd70504c61f812337cdad01ab" dependencies = [ - "libc", - "neli", - "windows-sys 0.61.2", + "libc", + "neli", + "windows-sys 0.61.2", ] [[package]] @@ -5283,7 +5282,7 @@ version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "scopeguard", + "scopeguard", ] [[package]] @@ -5292,8 +5291,8 @@ version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" dependencies = [ - "serde_core", - "value-bag", + "serde_core", + "value-bag", ] [[package]] @@ -5302,7 +5301,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.15.5", ] [[package]] @@ -5317,7 +5316,7 @@ version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ - "lz4-sys", + "lz4-sys", ] [[package]] @@ -5326,8 +5325,8 @@ version = "1.11.1+lz4-1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -5336,17 +5335,17 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab6473172471198271ff72e9379150e9dfd70d8e533e0752a27e515b48dd375e" dependencies = [ - "twox-hash", + "twox-hash", ] [[package]] name = "lzma-rust2" -version = "0.15.3" +version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fa48f5024824ecd3e8282cc948bd46fbd095aed5a98939de0594601a59b4e2b" +checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69" dependencies = [ - "crc", - "sha2 0.10.9", + "crc", + "sha2 0.10.9", ] [[package]] @@ -5355,11 +5354,11 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db4d277bb50d4508057e7bddd7fcd19ef4a4cc38051b6a5a36868d75ae2cbeb9" dependencies = [ - "anyhow", - "libc", - "once_cell", - "pprof_util", - "tracing", + "anyhow", + "libc", + "once_cell", + "pprof_util", + "tracing", ] [[package]] @@ -5368,7 +5367,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" dependencies = [ - "regex-automata", + "regex-automata", ] [[package]] @@ -5389,8 +5388,8 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ - "cfg-if", - "digest 0.10.7", + "cfg-if", + "digest 0.10.7", ] [[package]] @@ -5399,8 +5398,8 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64dd2c9099caf8e29b629305199dddb1c6d981562b62c089afea54b0b4b5c333" dependencies = [ - "cfg-if", - "digest 0.11.0-rc.5", + "cfg-if", + "digest 0.11.0-rc.5", ] [[package]] @@ -5427,7 +5426,7 @@ version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5436,7 +5435,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" dependencies = [ - "autocfg", + "autocfg", ] [[package]] @@ -5445,8 +5444,8 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" dependencies = [ - "ahash", - "portable-atomic", + "ahash", + "portable-atomic", ] [[package]] @@ -5455,7 +5454,7 @@ version = "0.1.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" dependencies = [ - "libmimalloc-sys", + "libmimalloc-sys", ] [[package]] @@ -5470,8 +5469,8 @@ version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ - "mime", - "unicase", + "mime", + "unicase", ] [[package]] @@ -5486,8 +5485,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ - "adler2", - "simd-adler32", + "adler2", + "simd-adler32", ] [[package]] @@ -5496,10 +5495,10 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ - "libc", - "log", - "wasi", - "windows-sys 0.61.2", + "libc", + "log", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -5508,18 +5507,18 @@ version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3dec6bd31b08944e08b58fd99373893a6c17054d6f3ea5006cc894f4f4eee2a" dependencies = [ - "async-lock", - "crossbeam-channel", - "crossbeam-epoch", - "crossbeam-utils", - "equivalent", - "event-listener", - "futures-util", - "parking_lot", - "portable-atomic", - "smallvec", - "tagptr", - "uuid", + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "event-listener", + "futures-util", + "parking_lot", + "portable-atomic", + "smallvec", + "tagptr", + "uuid", ] [[package]] @@ -5534,14 +5533,14 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e23bebbf3e157c402c4d5ee113233e5e0610cc27453b2f07eefce649c7365dcc" dependencies = [ - "bitflags 2.10.0", - "byteorder", - "derive_builder 0.20.2", - "getset", - "libc", - "log", - "neli-proc-macros", - "parking_lot", + "bitflags 2.10.0", + "byteorder", + "derive_builder 0.20.2", + "getset", + "libc", + "log", + "neli-proc-macros", + "parking_lot", ] [[package]] @@ -5550,11 +5549,11 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609" dependencies = [ - "either", - "proc-macro2", - "quote", - "serde", - "syn 2.0.114", + "either", + "proc-macro2", + "quote", + "serde", + "syn 2.0.114", ] [[package]] @@ -5563,8 +5562,8 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d29a01b9f018d6b7b277fef6c79fdbd9bf17bb2d1e298238055cafab49baa5ee" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -5573,9 +5572,9 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc", + "bitflags 1.3.2", + "cfg-if", + "libc", ] [[package]] @@ -5584,11 +5583,11 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", - "memoffset", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", + "memoffset", ] [[package]] @@ -5597,10 +5596,10 @@ version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 2.10.0", - "cfg-if", - "cfg_aliases", - "libc", + "bitflags 2.10.0", + "cfg-if", + "cfg_aliases", + "libc", ] [[package]] @@ -5609,8 +5608,8 @@ version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "memchr", - "minimal-lexical", + "memchr", + "minimal-lexical", ] [[package]] @@ -5619,7 +5618,7 @@ version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5628,16 +5627,16 @@ version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" dependencies = [ - "bitflags 2.10.0", - "fsevent-sys", - "inotify", - "kqueue", - "libc", - "log", - "mio", - "notify-types", - "walkdir", - "windows-sys 0.60.2", + "bitflags 2.10.0", + "fsevent-sys", + "inotify", + "kqueue", + "libc", + "log", + "mio", + "notify-types", + "walkdir", + "windows-sys 0.60.2", ] [[package]] @@ -5646,10 +5645,10 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a689eb4262184d9a1727f9087cd03883ea716682ab03ed24efec57d7716dccb8" dependencies = [ - "log", - "notify", - "notify-types", - "tempfile", + "log", + "notify", + "notify-types", + "tempfile", ] [[package]] @@ -5664,7 +5663,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" dependencies = [ - "winapi", + "winapi", ] [[package]] @@ -5673,7 +5672,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -5682,12 +5681,12 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ - "num-bigint", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", ] [[package]] @@ -5696,9 +5695,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "num-integer", - "num-traits", - "rand 0.8.5", + "num-integer", + "num-traits", + "rand 0.8.5", ] [[package]] @@ -5707,14 +5706,14 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" dependencies = [ - "lazy_static", - "libm", - "num-integer", - "num-iter", - "num-traits", - "rand 0.8.5", - "serde", - "smallvec", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.5", + "serde", + "smallvec", ] [[package]] @@ -5723,7 +5722,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5738,8 +5737,8 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec", - "itoa", + "arrayvec", + "itoa", ] [[package]] @@ -5748,7 +5747,7 @@ version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -5757,9 +5756,9 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "autocfg", - "num-integer", - "num-traits", + "autocfg", + "num-integer", + "num-traits", ] [[package]] @@ -5768,9 +5767,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "num-bigint", - "num-integer", - "num-traits", + "num-bigint", + "num-integer", + "num-traits", ] [[package]] @@ -5779,8 +5778,8 @@ version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "autocfg", - "libm", + "autocfg", + "libm", ] [[package]] @@ -5789,8 +5788,8 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi", - "libc", + "hermit-abi", + "libc", ] [[package]] @@ -5799,7 +5798,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ - "libc", + "libc", ] [[package]] @@ -5814,12 +5813,12 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d5c6c0ef9702176a570f06ad94f3198bc29c524c8b498f1b9346e1b1bdcbb3a" dependencies = [ - "bitflags 2.10.0", - "libloading", - "nvml-wrapper-sys", - "static_assertions", - "thiserror 1.0.69", - "wrapcenum-derive", + "bitflags 2.10.0", + "libloading", + "nvml-wrapper-sys", + "static_assertions", + "thiserror 1.0.69", + "wrapcenum-derive", ] [[package]] @@ -5828,7 +5827,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd23dbe2eb8d8335d2bce0299e0a07d6a63c089243d626ca75b770a962ff49e6" dependencies = [ - "libloading", + "libloading", ] [[package]] @@ -5837,7 +5836,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -5846,8 +5845,8 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15" dependencies = [ - "libc", - "objc2-core-foundation", + "libc", + "objc2-core-foundation", ] [[package]] @@ -5856,7 +5855,7 @@ version = "0.32.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5865,7 +5864,7 @@ version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -5874,22 +5873,22 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740" dependencies = [ - "async-trait", - "bytes", - "chrono", - "futures", - "http 1.4.0", - "humantime", - "itertools 0.14.0", - "parking_lot", - "percent-encoding", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "walkdir", - "wasm-bindgen-futures", - "web-time", + "async-trait", + "bytes", + "chrono", + "futures", + "http 1.4.0", + "humantime", + "itertools 0.14.0", + "parking_lot", + "percent-encoding", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "walkdir", + "wasm-bindgen-futures", + "web-time", ] [[package]] @@ -5898,7 +5897,7 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs", + "asn1-rs", ] [[package]] @@ -5937,12 +5936,12 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0" dependencies = [ - "futures-core", - "futures-sink", - "js-sys", - "pin-project-lite", - "thiserror 2.0.17", - "tracing", + "futures-core", + "futures-sink", + "js-sys", + "pin-project-lite", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -5951,12 +5950,12 @@ version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2" dependencies = [ - "opentelemetry", - "tracing", - "tracing-core", - "tracing-log", - "tracing-opentelemetry", - "tracing-subscriber", + "opentelemetry", + "tracing", + "tracing-core", + "tracing-log", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] @@ -5965,11 +5964,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d" dependencies = [ - "async-trait", - "bytes", - "http 1.4.0", - "opentelemetry", - "reqwest", + "async-trait", + "bytes", + "http 1.4.0", + "opentelemetry", + "reqwest", ] [[package]] @@ -5978,16 +5977,16 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf" dependencies = [ - "flate2", - "http 1.4.0", - "opentelemetry", - "opentelemetry-http", - "opentelemetry-proto", - "opentelemetry_sdk", - "prost 0.14.3", - "reqwest", - "thiserror 2.0.17", - "tracing", + "flate2", + "http 1.4.0", + "opentelemetry", + "opentelemetry-http", + "opentelemetry-proto", + "opentelemetry_sdk", + "prost 0.14.3", + "reqwest", + "thiserror 2.0.17", + "tracing", ] [[package]] @@ -5996,11 +5995,11 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f" dependencies = [ - "opentelemetry", - "opentelemetry_sdk", - "prost 0.14.3", - "tonic", - "tonic-prost", + "opentelemetry", + "opentelemetry_sdk", + "prost 0.14.3", + "tonic", + "tonic-prost", ] [[package]] @@ -6015,9 +6014,9 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc8887887e169414f637b18751487cce4e095be787d23fad13c454e2fb1b3811" dependencies = [ - "chrono", - "opentelemetry", - "opentelemetry_sdk", + "chrono", + "opentelemetry", + "opentelemetry_sdk", ] [[package]] @@ -6026,15 +6025,15 @@ version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd" dependencies = [ - "futures-channel", - "futures-executor", - "futures-util", - "opentelemetry", - "percent-encoding", - "rand 0.9.2", - "thiserror 2.0.17", - "tokio", - "tokio-stream", + "futures-channel", + "futures-executor", + "futures-util", + "opentelemetry", + "percent-encoding", + "rand 0.9.2", + "thiserror 2.0.17", + "tokio", + "tokio-stream", ] [[package]] @@ -6049,7 +6048,7 @@ version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -6064,9 +6063,9 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ - "ecdsa 0.14.8", - "elliptic-curve 0.12.3", - "sha2 0.10.9", + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.9", ] [[package]] @@ -6075,10 +6074,10 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6087,10 +6086,10 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "sha2 0.10.9", ] [[package]] @@ -6099,12 +6098,12 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" dependencies = [ - "base16ct 0.2.0", - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "rand_core 0.6.4", - "sha2 0.10.9", + "base16ct 0.2.0", + "ecdsa 0.16.9", + "elliptic-curve 0.13.8", + "primeorder", + "rand_core 0.6.4", + "sha2 0.10.9", ] [[package]] @@ -6113,8 +6112,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" dependencies = [ - "libc", - "winapi", + "libc", + "winapi", ] [[package]] @@ -6123,17 +6122,17 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595" dependencies = [ - "byteorder", - "bytes", - "delegate", - "futures", - "log", - "rand 0.8.5", - "sha2 0.10.9", - "thiserror 1.0.69", - "tokio", - "windows 0.62.2", - "windows-strings 0.5.1", + "byteorder", + "bytes", + "delegate", + "futures", + "log", + "rand 0.8.5", + "sha2 0.10.9", + "thiserror 1.0.69", + "tokio", + "windows 0.62.2", + "windows-strings 0.5.1", ] [[package]] @@ -6148,8 +6147,8 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ - "lock_api", - "parking_lot_core", + "lock_api", + "parking_lot_core", ] [[package]] @@ -6158,11 +6157,11 @@ version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.5.18", - "smallvec", - "windows-link 0.2.1", + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link 0.2.1", ] [[package]] @@ -6171,35 +6170,35 @@ version = "57.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854" dependencies = [ - "ahash", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-ipc", - "arrow-schema", - "arrow-select", - "base64", - "brotli", - "bytes", - "chrono", - "flate2", - "futures", - "half", - "hashbrown 0.16.1", - "lz4_flex", - "num-bigint", - "num-integer", - "num-traits", - "object_store", - "paste", - "seq-macro", - "simdutf8", - "snap", - "thrift", - "tokio", - "twox-hash", - "zstd", + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "base64", + "brotli", + "bytes", + "chrono", + "flate2", + "futures", + "half", + "hashbrown 0.16.1", + "lz4_flex", + "num-bigint", + "num-integer", + "num-traits", + "object_store", + "paste", + "seq-macro", + "simdutf8", + "snap", + "thrift", + "tokio", + "twox-hash", + "zstd", ] [[package]] @@ -6208,9 +6207,9 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ - "base64ct", - "rand_core 0.6.4", - "subtle", + "base64ct", + "rand_core 0.6.4", + "subtle", ] [[package]] @@ -6219,8 +6218,8 @@ version = "0.6.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f77af9403a6489b7b51f552693bd48d8e81a710c92d3d77648b203558578762d" dependencies = [ - "getrandom 0.4.0-rc.0", - "phc", + "getrandom 0.4.0-rc.0", + "phc", ] [[package]] @@ -6247,7 +6246,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5" dependencies = [ - "path-dedot", + "path-dedot", ] [[package]] @@ -6262,7 +6261,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397" dependencies = [ - "once_cell", + "once_cell", ] [[package]] @@ -6271,8 +6270,8 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ - "digest 0.10.7", - "hmac 0.12.1", + "digest 0.10.7", + "hmac 0.12.1", ] [[package]] @@ -6281,8 +6280,8 @@ version = "0.13.0-rc.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eedc1683fe7216d6ce1294e870b994b4418660ad692d55297f631be0b6300666" dependencies = [ - "digest 0.11.0-rc.5", - "hmac 0.13.0-rc.3", + "digest 0.11.0-rc.5", + "hmac 0.13.0-rc.3", ] [[package]] @@ -6291,8 +6290,8 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", - "serde_core", + "base64", + "serde_core", ] [[package]] @@ -6301,7 +6300,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6310,7 +6309,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" dependencies = [ - "base64ct", + "base64ct", ] [[package]] @@ -6325,10 +6324,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" dependencies = [ - "fixedbitset", - "hashbrown 0.15.5", - "indexmap 2.13.0", - "serde", + "fixedbitset", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "serde", ] [[package]] @@ -6337,9 +6336,9 @@ version = "0.6.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71d390c5fe8d102c2c18ff39f1e72b9ad5996de282c2d831b0312f56910f5508" dependencies = [ - "base64ct", - "getrandom 0.4.0-rc.0", - "subtle", + "base64ct", + "getrandom 0.4.0-rc.0", + "subtle", ] [[package]] @@ -6348,8 +6347,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "phf_macros", - "phf_shared 0.11.3", + "phf_macros", + "phf_shared 0.11.3", ] [[package]] @@ -6358,7 +6357,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ - "phf_shared 0.12.1", + "phf_shared 0.12.1", ] [[package]] @@ -6367,8 +6366,8 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared 0.11.3", - "rand 0.8.5", + "phf_shared 0.11.3", + "rand 0.8.5", ] [[package]] @@ -6377,11 +6376,11 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ - "phf_generator", - "phf_shared 0.11.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "phf_generator", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6390,7 +6389,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6399,7 +6398,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" dependencies = [ - "siphasher", + "siphasher", ] [[package]] @@ -6408,7 +6407,7 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ - "pin-project-internal", + "pin-project-internal", ] [[package]] @@ -6417,9 +6416,9 @@ version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6440,8 +6439,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6450,13 +6449,13 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6" dependencies = [ - "aes 0.8.4", - "cbc", - "der 0.7.10", - "pbkdf2 0.12.2", - "scrypt", - "sha2 0.10.9", - "spki 0.7.3", + "aes 0.8.4", + "cbc", + "der 0.7.10", + "pbkdf2 0.12.2", + "scrypt", + "sha2 0.10.9", + "spki 0.7.3", ] [[package]] @@ -6465,8 +6464,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" dependencies = [ - "der 0.6.1", - "spki 0.6.0", + "der 0.6.1", + "spki 0.6.0", ] [[package]] @@ -6475,10 +6474,10 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der 0.7.10", - "pkcs5", - "rand_core 0.6.4", - "spki 0.7.3", + "der 0.7.10", + "pkcs5", + "rand_core 0.6.4", + "spki 0.7.3", ] [[package]] @@ -6487,8 +6486,8 @@ version = "0.11.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77089aec8290d0b7bb01b671b091095cf1937670725af4fd73d47249f03b12c0" dependencies = [ - "der 0.8.0-rc.10", - "spki 0.8.0-rc.4", + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", ] [[package]] @@ -6503,11 +6502,11 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" dependencies = [ - "num-traits", - "plotters-backend", - "plotters-svg", - "wasm-bindgen", - "web-sys", + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -6522,7 +6521,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" dependencies = [ - "plotters-backend", + "plotters-backend", ] [[package]] @@ -6537,9 +6536,9 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" dependencies = [ - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6548,9 +6547,9 @@ version = "0.9.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c0749ae91cfe6e68c77c4d48802d9720ee06aed3f7100a38975fb0962d50bc" dependencies = [ - "cpufeatures", - "universal-hash 0.6.0-rc.4", - "zeroize", + "cpufeatures", + "universal-hash 0.6.0-rc.4", + "zeroize", ] [[package]] @@ -6559,10 +6558,10 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ - "cfg-if", - "cpufeatures", - "opaque-debug", - "universal-hash 0.5.1", + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash 0.5.1", ] [[package]] @@ -6571,9 +6570,9 @@ version = "0.7.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ad60831c19edda4b20878a676595c357e93a9b4e6dca2ba98d75b01066b317b" dependencies = [ - "cfg-if", - "cpufeatures", - "universal-hash 0.6.0-rc.4", + "cfg-if", + "cpufeatures", + "universal-hash 0.6.0-rc.4", ] [[package]] @@ -6588,7 +6587,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" dependencies = [ - "zerovec", + "zerovec", ] [[package]] @@ -6609,22 +6608,22 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187" dependencies = [ - "aligned-vec", - "backtrace", - "cfg-if", - "findshlibs", - "inferno 0.11.21", - "libc", - "log", - "nix 0.26.4", - "once_cell", - "protobuf", - "protobuf-codegen", - "smallvec", - "spin 0.10.0", - "symbolic-demangle", - "tempfile", - "thiserror 2.0.17", + "aligned-vec", + "backtrace", + "cfg-if", + "findshlibs", + "inferno 0.11.21", + "libc", + "log", + "nix 0.26.4", + "once_cell", + "protobuf", + "protobuf-codegen", + "smallvec", + "spin 0.10.0", + "symbolic-demangle", + "tempfile", + "thiserror 2.0.17", ] [[package]] @@ -6633,13 +6632,13 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4429d44e5e2c8a69399fc0070379201eed018e3df61e04eb7432811df073c224" dependencies = [ - "anyhow", - "backtrace", - "flate2", - "inferno 0.12.4", - "num", - "paste", - "prost 0.13.5", + "anyhow", + "backtrace", + "flate2", + "inferno 0.12.4", + "num", + "paste", + "prost 0.13.5", ] [[package]] @@ -6648,7 +6647,7 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy", + "zerocopy", ] [[package]] @@ -6657,8 +6656,8 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ - "diff", - "yansi", + "diff", + "yansi", ] [[package]] @@ -6667,8 +6666,8 @@ version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ - "proc-macro2", - "syn 2.0.114", + "proc-macro2", + "syn 2.0.114", ] [[package]] @@ -6677,7 +6676,7 @@ version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ - "elliptic-curve 0.13.8", + "elliptic-curve 0.13.8", ] [[package]] @@ -6686,8 +6685,8 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" dependencies = [ - "proc-macro2", - "quote", + "proc-macro2", + "quote", ] [[package]] @@ -6696,10 +6695,10 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" dependencies = [ - "proc-macro-error-attr2", - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6708,7 +6707,7 @@ version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -6717,12 +6716,12 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" dependencies = [ - "cfg-if", - "fnv", - "lazy_static", - "memchr", - "parking_lot", - "thiserror 2.0.17", + "cfg-if", + "fnv", + "lazy_static", + "memchr", + "parking_lot", + "thiserror 2.0.17", ] [[package]] @@ -6731,8 +6730,8 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ - "bytes", - "prost-derive 0.13.5", + "bytes", + "prost-derive 0.13.5", ] [[package]] @@ -6741,8 +6740,8 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" dependencies = [ - "bytes", - "prost-derive 0.14.3", + "bytes", + "prost-derive 0.14.3", ] [[package]] @@ -6751,19 +6750,19 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" dependencies = [ - "heck", - "itertools 0.14.0", - "log", - "multimap", - "petgraph", - "prettyplease", - "prost 0.14.3", - "prost-types", - "pulldown-cmark", - "pulldown-cmark-to-cmark", - "regex", - "syn 2.0.114", - "tempfile", + "heck", + "itertools 0.14.0", + "log", + "multimap", + "petgraph", + "prettyplease", + "prost 0.14.3", + "prost-types", + "pulldown-cmark", + "pulldown-cmark-to-cmark", + "regex", + "syn 2.0.114", + "tempfile", ] [[package]] @@ -6772,11 +6771,11 @@ version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6785,11 +6784,11 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.114", + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -6798,7 +6797,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" dependencies = [ - "prost 0.14.3", + "prost 0.14.3", ] [[package]] @@ -6807,9 +6806,9 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" dependencies = [ - "once_cell", - "protobuf-support", - "thiserror 1.0.69", + "once_cell", + "protobuf-support", + "thiserror 1.0.69", ] [[package]] @@ -6818,13 +6817,13 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace" dependencies = [ - "anyhow", - "once_cell", - "protobuf", - "protobuf-parse", - "regex", - "tempfile", - "thiserror 1.0.69", + "anyhow", + "once_cell", + "protobuf", + "protobuf-parse", + "regex", + "tempfile", + "thiserror 1.0.69", ] [[package]] @@ -6833,14 +6832,14 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973" dependencies = [ - "anyhow", - "indexmap 2.13.0", - "log", - "protobuf", - "protobuf-support", - "tempfile", - "thiserror 1.0.69", - "which", + "anyhow", + "indexmap 2.13.0", + "log", + "protobuf", + "protobuf-support", + "tempfile", + "thiserror 1.0.69", + "which", ] [[package]] @@ -6849,7 +6848,7 @@ version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" dependencies = [ - "thiserror 1.0.69", + "thiserror 1.0.69", ] [[package]] @@ -6858,8 +6857,8 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e50c72c21c738f5c5f350cc33640aee30bf7cd20f9d9da20ed41bce2671d532" dependencies = [ - "bytes", - "snafu 0.6.10", + "bytes", + "snafu 0.6.10", ] [[package]] @@ -6868,8 +6867,8 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" dependencies = [ - "ar_archive_writer", - "cc", + "ar_archive_writer", + "cc", ] [[package]] @@ -6878,9 +6877,9 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0" dependencies = [ - "bitflags 2.10.0", - "memchr", - "unicase", + "bitflags 2.10.0", + "memchr", + "unicase", ] [[package]] @@ -6889,7 +6888,7 @@ version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90" dependencies = [ - "pulldown-cmark", + "pulldown-cmark", ] [[package]] @@ -6898,7 +6897,7 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6907,8 +6906,8 @@ version = "0.37.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" dependencies = [ - "memchr", - "serde", + "memchr", + "serde", ] [[package]] @@ -6917,7 +6916,7 @@ version = "0.38.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -6926,9 +6925,9 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2e3bf4aa9d243beeb01a7b3bc30b77cfe2c44e24ec02d751a7104a53c2c49a1" dependencies = [ - "memchr", - "serde", - "tokio", + "memchr", + "serde", + "tokio", ] [[package]] @@ -6937,18 +6936,18 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror 2.0.17", - "tokio", - "tracing", - "web-time", + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror 2.0.17", + "tokio", + "tracing", + "web-time", ] [[package]] @@ -6957,19 +6956,19 @@ version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" dependencies = [ - "bytes", - "getrandom 0.3.4", - "lru-slab", - "rand 0.9.2", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.17", - "tinyvec", - "tracing", - "web-time", + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.2", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.17", + "tinyvec", + "tracing", + "web-time", ] [[package]] @@ -6978,12 +6977,12 @@ version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.60.2", + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", ] [[package]] @@ -6992,7 +6991,7 @@ version = "1.0.43" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" dependencies = [ - "proc-macro2", + "proc-macro2", ] [[package]] @@ -7007,9 +7006,9 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", ] [[package]] @@ -7018,8 +7017,8 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.5", + "rand_chacha 0.9.0", + "rand_core 0.9.5", ] [[package]] @@ -7028,10 +7027,10 @@ version = "0.10.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bccc05ac8fad6ee391f3cc6725171817eed960345e2fb42ad229d486c1ca2d98" dependencies = [ - "chacha20 0.10.0-rc.6", - "getrandom 0.4.0-rc.0", - "rand_core 0.10.0-rc-3", - "serde", + "chacha20 0.10.0-rc.6", + "getrandom 0.4.0-rc.0", + "rand_core 0.10.0-rc-3", + "serde", ] [[package]] @@ -7040,8 +7039,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", + "ppv-lite86", + "rand_core 0.6.4", ] [[package]] @@ -7050,8 +7049,8 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ - "ppv-lite86", - "rand_core 0.9.5", + "ppv-lite86", + "rand_core 0.9.5", ] [[package]] @@ -7060,7 +7059,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.17", + "getrandom 0.2.17", ] [[package]] @@ -7069,7 +7068,7 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ - "getrandom 0.3.4", + "getrandom 0.3.4", ] [[package]] @@ -7084,8 +7083,8 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ - "either", - "rayon-core", + "either", + "rayon-core", ] [[package]] @@ -7094,8 +7093,8 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ - "crossbeam-deque", - "crossbeam-utils", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] @@ -7104,12 +7103,12 @@ version = "0.14.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ec0a99f2de91c3cddc84b37e7db80e4d96b743e05607f647eb236fc0455907f" dependencies = [ - "pem", - "ring", - "rustls-pki-types", - "time", - "x509-parser 0.18.0", - "yasna", + "pem", + "ring", + "rustls-pki-types", + "time", + "x509-parser 0.18.0", + "yasna", ] [[package]] @@ -7124,8 +7123,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" dependencies = [ - "recursive-proc-macro-impl", - "stacker", + "recursive-proc-macro-impl", + "stacker", ] [[package]] @@ -7134,8 +7133,8 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" dependencies = [ - "quote", - "syn 2.0.114", + "quote", + "syn 2.0.114", ] [[package]] @@ -7144,7 +7143,7 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7153,7 +7152,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.10.0", ] [[package]] @@ -7162,9 +7161,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.17", - "libredox", - "thiserror 2.0.17", + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.17", ] [[package]] @@ -7173,10 +7172,10 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cffef0520d30fbd4151fb20e262947ae47fb0ab276a744a19b6398438105a072" dependencies = [ - "cpufeatures", - "fixedbitset", - "once_cell", - "readme-rustdocifier", + "cpufeatures", + "fixedbitset", + "once_cell", + "readme-rustdocifier", ] [[package]] @@ -7185,7 +7184,7 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ - "ref-cast-impl", + "ref-cast-impl", ] [[package]] @@ -7194,9 +7193,9 @@ version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -7205,10 +7204,10 @@ version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", ] [[package]] @@ -7217,9 +7216,9 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] @@ -7240,45 +7239,45 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", - "bytes", - "encoding_rs", - "futures-channel", - "futures-core", - "futures-util", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "js-sys", - "log", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-http", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots", + "base64", + "bytes", + "encoding_rs", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-native-certs", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", ] [[package]] @@ -7287,9 +7286,9 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" dependencies = [ - "crypto-bigint 0.4.9", - "hmac 0.12.1", - "zeroize", + "crypto-bigint 0.4.9", + "hmac 0.12.1", + "zeroize", ] [[package]] @@ -7298,8 +7297,8 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "hmac 0.12.1", - "subtle", + "hmac 0.12.1", + "subtle", ] [[package]] @@ -7308,7 +7307,7 @@ version = "0.8.52" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" dependencies = [ - "bytemuck", + "bytemuck", ] [[package]] @@ -7317,12 +7316,12 @@ version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.17", - "libc", - "untrusted 0.9.0", - "windows-sys 0.52.0", + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", ] [[package]] @@ -7331,20 +7330,20 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528d42f8176e6e5e71ea69182b17d1d0a19a6b3b894b564678b74cd7cab13cfa" dependencies = [ - "async-trait", - "base64", - "chrono", - "futures", - "pastey 0.2.1", - "pin-project-lite", - "rmcp-macros", - "schemars 1.2.0", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tokio-util", - "tracing", + "async-trait", + "base64", + "chrono", + "futures", + "pastey 0.2.1", + "pin-project-lite", + "rmcp-macros", + "schemars 1.2.0", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -7353,11 +7352,11 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3f81daaa494eb8e985c9462f7d6ce1ab05e5299f48aafd76cdd3d8b060e6f59" dependencies = [ - "darling 0.23.0", - "proc-macro2", - "quote", - "serde_json", - "syn 2.0.114", + "darling 0.23.0", + "proc-macro2", + "quote", + "serde_json", + "syn 2.0.114", ] [[package]] @@ -7366,7 +7365,7 @@ version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c" dependencies = [ - "num-traits", + "num-traits", ] [[package]] @@ -7375,8 +7374,8 @@ version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155" dependencies = [ - "rmp", - "serde", + "rmp", + "serde", ] [[package]] @@ -7385,17 +7384,17 @@ version = "0.10.0-rc.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9a2b1eacbc34fbaf77f6f1db1385518446008d49b9f9f59dc9d1340fce4ca9e" dependencies = [ - "const-oid 0.10.2", - "crypto-bigint 0.7.0-rc.18", - "crypto-primes", - "digest 0.11.0-rc.5", - "pkcs1", - "pkcs8 0.11.0-rc.8", - "rand_core 0.10.0-rc-3", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "spki 0.8.0-rc.4", - "zeroize", + "const-oid 0.10.2", + "crypto-bigint 0.7.0-rc.18", + "crypto-primes", + "digest 0.11.0-rc.5", + "pkcs1", + "pkcs8 0.11.0-rc.8", + "rand_core 0.10.0-rc-3", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "spki 0.8.0-rc.4", + "zeroize", ] [[package]] @@ -7404,19 +7403,19 @@ version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0feff8d882bff0b2fddaf99355a10336d43dd3ed44204f85ece28cf9626ab519" dependencies = [ - "bytes", - "fixedbitset", - "flume", - "futures-util", - "log", - "rustls-native-certs", - "rustls-pemfile", - "rustls-webpki 0.102.8", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", + "bytes", + "fixedbitset", + "flume", + "futures-util", + "log", + "rustls-native-certs", + "rustls-pemfile", + "rustls-webpki 0.102.8", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", ] [[package]] @@ -7425,59 +7424,59 @@ version = "0.56.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdbb7dcdd62c17ac911307ff693f55b3ec6712004d2d66ffdb8c0fa00269fd66" dependencies = [ - "aes 0.8.4", - "aws-lc-rs", - "bitflags 2.10.0", - "block-padding", - "byteorder", - "bytes", - "cbc", - "ctr 0.9.2", - "curve25519-dalek 4.1.3", - "data-encoding", - "delegate", - "der 0.7.10", - "digest 0.10.7", - "ecdsa 0.16.9", - "ed25519-dalek 2.2.0", - "elliptic-curve 0.13.8", - "enum_dispatch", - "futures", - "generic-array 1.3.5", - "getrandom 0.2.17", - "hex-literal", - "hmac 0.12.1", - "home", - "inout 0.1.4", - "internal-russh-forked-ssh-key", - "libcrux-ml-kem", - "log", - "md5 0.7.0", - "num-bigint", - "p256 0.13.2", - "p384", - "p521", - "pageant", - "pbkdf2 0.12.2", - "pkcs1", - "pkcs5", - "pkcs8 0.10.2", - "rand 0.8.5", - "rand_core 0.6.4", - "rsa", - "russh-cryptovec", - "russh-util", - "sec1 0.7.3", - "sha1 0.10.6", - "sha2 0.10.9", - "signature 2.2.0", - "spki 0.7.3", - "ssh-encoding 0.2.0", - "subtle", - "thiserror 1.0.69", - "tokio", - "typenum", - "zeroize", + "aes 0.8.4", + "aws-lc-rs", + "bitflags 2.10.0", + "block-padding", + "byteorder", + "bytes", + "cbc", + "ctr 0.9.2", + "curve25519-dalek 4.1.3", + "data-encoding", + "delegate", + "der 0.7.10", + "digest 0.10.7", + "ecdsa 0.16.9", + "ed25519-dalek 2.2.0", + "elliptic-curve 0.13.8", + "enum_dispatch", + "futures", + "generic-array 1.3.5", + "getrandom 0.2.17", + "hex-literal", + "hmac 0.12.1", + "home", + "inout 0.1.4", + "internal-russh-forked-ssh-key", + "libcrux-ml-kem", + "log", + "md5 0.7.0", + "num-bigint", + "p256 0.13.2", + "p384", + "p521", + "pageant", + "pbkdf2 0.12.2", + "pkcs1", + "pkcs5", + "pkcs8 0.10.2", + "rand 0.8.5", + "rand_core 0.6.4", + "rsa", + "russh-cryptovec", + "russh-util", + "sec1 0.7.3", + "sha1 0.10.6", + "sha2 0.10.9", + "signature 2.2.0", + "spki 0.7.3", + "ssh-encoding 0.2.0", + "subtle", + "thiserror 1.0.69", + "tokio", + "typenum", + "zeroize", ] [[package]] @@ -7486,11 +7485,11 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf" dependencies = [ - "libc", - "log", - "nix 0.29.0", - "ssh-encoding 0.2.0", - "winapi", + "libc", + "log", + "nix 0.29.0", + "ssh-encoding 0.2.0", + "winapi", ] [[package]] @@ -7499,15 +7498,15 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3bb94393cafad0530145b8f626d8687f1ee1dedb93d7ba7740d6ae81868b13b5" dependencies = [ - "bitflags 2.10.0", - "bytes", - "chrono", - "flurry", - "log", - "serde", - "thiserror 2.0.17", - "tokio", - "tokio-util", + "bitflags 2.10.0", + "bytes", + "chrono", + "flurry", + "log", + "serde", + "thiserror 2.0.17", + "tokio", + "tokio-util", ] [[package]] @@ -7516,10 +7515,10 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6" dependencies = [ - "chrono", - "tokio", - "wasm-bindgen", - "wasm-bindgen-futures", + "chrono", + "tokio", + "wasm-bindgen", + "wasm-bindgen-futures", ] [[package]] @@ -7528,9 +7527,9 @@ version = "8.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27" dependencies = [ - "rust-embed-impl", - "rust-embed-utils", - "walkdir", + "rust-embed-impl", + "rust-embed-utils", + "walkdir", ] [[package]] @@ -7539,12 +7538,12 @@ version = "8.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa" dependencies = [ - "proc-macro2", - "quote", - "rust-embed-utils", - "shellexpand", - "syn 2.0.114", - "walkdir", + "proc-macro2", + "quote", + "rust-embed-utils", + "shellexpand", + "syn 2.0.114", + "walkdir", ] [[package]] @@ -7553,8 +7552,8 @@ version = "8.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1" dependencies = [ - "sha2 0.10.9", - "walkdir", + "sha2 0.10.9", + "walkdir", ] [[package]] @@ -7575,712 +7574,712 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver", + "semver", ] [[package]] name = "rustfs" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-trait", - "atoi", - "atomic_enum", - "axum", - "axum-server", - "base64", - "base64-simd", - "bytes", - "chrono", - "clap", - "const-str", - "datafusion", - "flatbuffers", - "futures", - "futures-util", - "hex-simd", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "jemalloc_pprof", - "libc", - "libsystemd", - "libunftp", - "matchit 0.9.1", - "md5 0.8.0", - "metrics", - "mimalloc", - "mime_guess", - "moka", - "pin-project-lite", - "pprof", - "reqwest", - "rmp-serde", - "russh", - "russh-sftp", - "rust-embed", - "rustfs-ahm", - "rustfs-appauth", - "rustfs-audit", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-iam", - "rustfs-kms", - "rustfs-lock", - "rustfs-madmin", - "rustfs-notify", - "rustfs-obs", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-s3select-api", - "rustfs-s3select-query", - "rustfs-targets", - "rustfs-utils", - "rustfs-zip", - "rustls", - "rustls-pemfile", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "serial_test", - "shadow-rs", - "socket2", - "ssh-key", - "subtle", - "sysinfo", - "thiserror 2.0.17", - "tikv-jemalloc-ctl", - "tikv-jemallocator", - "time", - "tokio", - "tokio-rustls", - "tokio-stream", - "tokio-util", - "tonic", - "tower", - "tower-http", - "tracing", - "url", - "urlencoding", - "uuid", - "zip", + "astral-tokio-tar", + "async-trait", + "atoi", + "atomic_enum", + "axum", + "axum-server", + "base64", + "base64-simd", + "bytes", + "chrono", + "clap", + "const-str", + "datafusion", + "flatbuffers", + "futures", + "futures-util", + "hex-simd", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-util", + "jemalloc_pprof", + "libc", + "libsystemd", + "libunftp", + "matchit 0.9.1", + "md5 0.8.0", + "metrics", + "mimalloc", + "mime_guess", + "moka", + "pin-project-lite", + "pprof", + "reqwest", + "rmp-serde", + "russh", + "russh-sftp", + "rust-embed", + "rustfs-ahm", + "rustfs-appauth", + "rustfs-audit", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-iam", + "rustfs-kms", + "rustfs-lock", + "rustfs-madmin", + "rustfs-notify", + "rustfs-obs", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-s3select-api", + "rustfs-s3select-query", + "rustfs-targets", + "rustfs-utils", + "rustfs-zip", + "rustls", + "rustls-pemfile", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "serial_test", + "shadow-rs", + "socket2", + "ssh-key", + "subtle", + "sysinfo", + "thiserror 2.0.17", + "tikv-jemalloc-ctl", + "tikv-jemallocator", + "time", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", + "tonic", + "tower", + "tower-http", + "tracing", + "url", + "urlencoding", + "uuid", + "zip", ] [[package]] name = "rustfs-ahm" version = "0.0.5" dependencies = [ - "anyhow", - "async-trait", - "chrono", - "futures", - "heed", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-common", - "rustfs-config", - "rustfs-ecstore", - "rustfs-filemeta", - "rustfs-madmin", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "serial_test", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", - "tracing-subscriber", - "uuid", - "walkdir", + "anyhow", + "async-trait", + "chrono", + "futures", + "heed", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-common", + "rustfs-config", + "rustfs-ecstore", + "rustfs-filemeta", + "rustfs-madmin", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "serial_test", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", + "tracing-subscriber", + "uuid", + "walkdir", ] [[package]] name = "rustfs-appauth" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "rsa", - "serde", - "serde_json", + "base64-simd", + "rand 0.10.0-rc.6", + "rsa", + "serde", + "serde_json", ] [[package]] name = "rustfs-audit" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "const-str", - "futures", - "hashbrown 0.16.1", - "metrics", - "rumqttc", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "serde", - "serde_json", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", + "async-trait", + "chrono", + "const-str", + "futures", + "hashbrown 0.16.1", + "metrics", + "rumqttc", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "serde", + "serde_json", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", ] [[package]] name = "rustfs-checksums" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "crc-fast", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pretty_assertions", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", + "base64-simd", + "bytes", + "crc-fast", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pretty_assertions", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", ] [[package]] name = "rustfs-common" version = "0.0.5" dependencies = [ - "async-trait", - "chrono", - "path-clean", - "rmp-serde", - "rustfs-filemeta", - "rustfs-madmin", - "s3s", - "serde", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "chrono", + "path-clean", + "rmp-serde", + "rustfs-filemeta", + "rustfs-madmin", + "s3s", + "serde", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-config" version = "0.0.5" dependencies = [ - "const-str", + "const-str", ] [[package]] name = "rustfs-credentials" version = "0.0.5" dependencies = [ - "base64-simd", - "rand 0.10.0-rc.6", - "serde", - "serde_json", - "time", + "base64-simd", + "rand 0.10.0-rc.6", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-crypto" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "argon2 0.6.0-rc.5", - "cfg-if", - "chacha20poly1305", - "jsonwebtoken", - "pbkdf2 0.13.0-rc.7", - "rand 0.10.0-rc.6", - "serde_json", - "sha2 0.11.0-rc.3", - "test-case", - "thiserror 2.0.17", - "time", + "aes-gcm 0.11.0-rc.2", + "argon2 0.6.0-rc.5", + "cfg-if", + "chacha20poly1305", + "jsonwebtoken", + "pbkdf2 0.13.0-rc.7", + "rand 0.10.0-rc.6", + "serde_json", + "sha2 0.11.0-rc.3", + "test-case", + "thiserror 2.0.17", + "time", ] [[package]] name = "rustfs-ecstore" version = "0.0.5" dependencies = [ - "async-channel", - "async-recursion", - "async-trait", - "aws-config", - "aws-credential-types", - "aws-sdk-s3", - "aws-smithy-types", - "base64", - "base64-simd", - "byteorder", - "bytes", - "bytesize", - "chrono", - "criterion", - "dunce", - "enumset", - "faster-hex", - "flatbuffers", - "futures", - "glob", - "google-cloud-auth", - "google-cloud-storage", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "hyper-rustls", - "hyper-util", - "lazy_static", - "md-5 0.11.0-rc.3", - "moka", - "num_cpus", - "parking_lot", - "path-absolutize", - "pin-project-lite", - "quick-xml 0.39.0", - "rand 0.10.0-rc.6", - "reed-solomon-simd", - "regex", - "reqwest", - "rmp", - "rmp-serde", - "rustfs-checksums", - "rustfs-common", - "rustfs-config", - "rustfs-credentials", - "rustfs-filemeta", - "rustfs-lock", - "rustfs-madmin", - "rustfs-policy", - "rustfs-protos", - "rustfs-rio", - "rustfs-signer", - "rustfs-utils", - "rustfs-workers", - "rustls", - "s3s", - "serde", - "serde_json", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "shadow-rs", - "smallvec", - "temp-env", - "tempfile", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tonic", - "tower", - "tracing", - "tracing-subscriber", - "url", - "urlencoding", - "uuid", - "xxhash-rust", + "async-channel", + "async-recursion", + "async-trait", + "aws-config", + "aws-credential-types", + "aws-sdk-s3", + "aws-smithy-types", + "base64", + "base64-simd", + "byteorder", + "bytes", + "bytesize", + "chrono", + "criterion", + "dunce", + "enumset", + "faster-hex", + "flatbuffers", + "futures", + "glob", + "google-cloud-auth", + "google-cloud-storage", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "hyper-rustls", + "hyper-util", + "lazy_static", + "md-5 0.11.0-rc.3", + "moka", + "num_cpus", + "parking_lot", + "path-absolutize", + "pin-project-lite", + "quick-xml 0.39.0", + "rand 0.10.0-rc.6", + "reed-solomon-simd", + "regex", + "reqwest", + "rmp", + "rmp-serde", + "rustfs-checksums", + "rustfs-common", + "rustfs-config", + "rustfs-credentials", + "rustfs-filemeta", + "rustfs-lock", + "rustfs-madmin", + "rustfs-policy", + "rustfs-protos", + "rustfs-rio", + "rustfs-signer", + "rustfs-utils", + "rustfs-workers", + "rustls", + "s3s", + "serde", + "serde_json", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "shadow-rs", + "smallvec", + "temp-env", + "tempfile", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tonic", + "tower", + "tracing", + "tracing-subscriber", + "url", + "urlencoding", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-filemeta" version = "0.0.5" dependencies = [ - "byteorder", - "bytes", - "crc-fast", - "criterion", - "regex", - "rmp", - "rmp-serde", - "rustfs-utils", - "s3s", - "serde", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", - "uuid", - "xxhash-rust", + "byteorder", + "bytes", + "crc-fast", + "criterion", + "regex", + "rmp", + "rmp-serde", + "rustfs-utils", + "s3s", + "serde", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", + "uuid", + "xxhash-rust", ] [[package]] name = "rustfs-iam" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "base64-simd", - "futures", - "jsonwebtoken", - "pollster", - "rand 0.10.0-rc.6", - "rustfs-credentials", - "rustfs-crypto", - "rustfs-ecstore", - "rustfs-madmin", - "rustfs-policy", - "rustfs-utils", - "serde", - "serde_json", - "thiserror 2.0.17", - "time", - "tokio", - "tokio-util", - "tracing", + "arc-swap", + "async-trait", + "base64-simd", + "futures", + "jsonwebtoken", + "pollster", + "rand 0.10.0-rc.6", + "rustfs-credentials", + "rustfs-crypto", + "rustfs-ecstore", + "rustfs-madmin", + "rustfs-policy", + "rustfs-utils", + "serde", + "serde_json", + "thiserror 2.0.17", + "time", + "tokio", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-kms" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "async-trait", - "base64", - "chacha20poly1305", - "chrono", - "md5 0.8.0", - "moka", - "rand 0.10.0-rc.6", - "reqwest", - "serde", - "serde_json", - "sha2 0.11.0-rc.3", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "uuid", - "vaultrs", - "zeroize", + "aes-gcm 0.11.0-rc.2", + "async-trait", + "base64", + "chacha20poly1305", + "chrono", + "md5 0.8.0", + "moka", + "rand 0.10.0-rc.6", + "reqwest", + "serde", + "serde_json", + "sha2 0.11.0-rc.3", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "uuid", + "vaultrs", + "zeroize", ] [[package]] name = "rustfs-lock" version = "0.0.5" dependencies = [ - "async-trait", - "crossbeam-queue", - "futures", - "parking_lot", - "serde", - "serde_json", - "smallvec", - "smartstring", - "thiserror 2.0.17", - "tokio", - "tonic", - "tracing", - "uuid", + "async-trait", + "crossbeam-queue", + "futures", + "parking_lot", + "serde", + "serde_json", + "smallvec", + "smartstring", + "thiserror 2.0.17", + "tokio", + "tonic", + "tracing", + "uuid", ] [[package]] name = "rustfs-madmin" version = "0.0.5" dependencies = [ - "chrono", - "humantime", - "hyper", - "serde", - "serde_json", - "time", + "chrono", + "humantime", + "hyper", + "serde", + "serde_json", + "time", ] [[package]] name = "rustfs-mcp" version = "0.0.5" dependencies = [ - "anyhow", - "aws-sdk-s3", - "clap", - "mime_guess", - "rmcp", - "schemars 1.2.0", - "serde", - "serde_json", - "tokio", - "tracing", - "tracing-subscriber", + "anyhow", + "aws-sdk-s3", + "clap", + "mime_guess", + "rmcp", + "schemars 1.2.0", + "serde", + "serde_json", + "tokio", + "tracing", + "tracing-subscriber", ] [[package]] name = "rustfs-notify" version = "0.0.5" dependencies = [ - "arc-swap", - "async-trait", - "axum", - "chrono", - "form_urlencoded", - "futures", - "hashbrown 0.16.1", - "quick-xml 0.39.0", - "rayon", - "rumqttc", - "rustc-hash", - "rustfs-config", - "rustfs-ecstore", - "rustfs-targets", - "rustfs-utils", - "serde", - "serde_json", - "starshard", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-subscriber", - "url", - "wildmatch", + "arc-swap", + "async-trait", + "axum", + "chrono", + "form_urlencoded", + "futures", + "hashbrown 0.16.1", + "quick-xml 0.39.0", + "rayon", + "rumqttc", + "rustc-hash", + "rustfs-config", + "rustfs-ecstore", + "rustfs-targets", + "rustfs-utils", + "serde", + "serde_json", + "starshard", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-subscriber", + "url", + "wildmatch", ] [[package]] name = "rustfs-obs" version = "0.0.5" dependencies = [ - "flexi_logger", - "metrics", - "nu-ansi-term", - "nvml-wrapper", - "opentelemetry", - "opentelemetry-appender-tracing", - "opentelemetry-otlp", - "opentelemetry-semantic-conventions", - "opentelemetry-stdout", - "opentelemetry_sdk", - "rustfs-config", - "rustfs-utils", - "serde", - "smallvec", - "sysinfo", - "thiserror 2.0.17", - "tokio", - "tracing", - "tracing-appender", - "tracing-error", - "tracing-opentelemetry", - "tracing-subscriber", + "flexi_logger", + "metrics", + "nu-ansi-term", + "nvml-wrapper", + "opentelemetry", + "opentelemetry-appender-tracing", + "opentelemetry-otlp", + "opentelemetry-semantic-conventions", + "opentelemetry-stdout", + "opentelemetry_sdk", + "rustfs-config", + "rustfs-utils", + "serde", + "smallvec", + "sysinfo", + "thiserror 2.0.17", + "tokio", + "tracing", + "tracing-appender", + "tracing-error", + "tracing-opentelemetry", + "tracing-subscriber", ] [[package]] name = "rustfs-policy" version = "0.0.5" dependencies = [ - "async-trait", - "base64-simd", - "chrono", - "futures", - "ipnetwork", - "jsonwebtoken", - "moka", - "pollster", - "regex", - "reqwest", - "rustfs-config", - "rustfs-credentials", - "rustfs-crypto", - "serde", - "serde_json", - "strum", - "temp-env", - "test-case", - "thiserror 2.0.17", - "time", - "tokio", - "tracing", + "async-trait", + "base64-simd", + "chrono", + "futures", + "ipnetwork", + "jsonwebtoken", + "moka", + "pollster", + "regex", + "reqwest", + "rustfs-config", + "rustfs-credentials", + "rustfs-crypto", + "serde", + "serde_json", + "strum", + "temp-env", + "test-case", + "thiserror 2.0.17", + "time", + "tokio", + "tracing", ] [[package]] name = "rustfs-protos" version = "0.0.5" dependencies = [ - "flatbuffers", - "prost 0.14.3", - "rustfs-common", - "tonic", - "tonic-prost", - "tonic-prost-build", - "tracing", + "flatbuffers", + "prost 0.14.3", + "rustfs-common", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tracing", ] [[package]] name = "rustfs-rio" version = "0.0.5" dependencies = [ - "aes-gcm 0.11.0-rc.2", - "base64", - "bytes", - "crc-fast", - "faster-hex", - "futures", - "hex-simd", - "http 1.4.0", - "md-5 0.11.0-rc.3", - "pin-project-lite", - "rand 0.10.0-rc.6", - "reqwest", - "rustfs-config", - "rustfs-utils", - "s3s", - "serde", - "serde_json", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "thiserror 2.0.17", - "tokio", - "tokio-test", - "tokio-util", - "tracing", + "aes-gcm 0.11.0-rc.2", + "base64", + "bytes", + "crc-fast", + "faster-hex", + "futures", + "hex-simd", + "http 1.4.0", + "md-5 0.11.0-rc.3", + "pin-project-lite", + "rand 0.10.0-rc.6", + "reqwest", + "rustfs-config", + "rustfs-utils", + "s3s", + "serde", + "serde_json", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "thiserror 2.0.17", + "tokio", + "tokio-test", + "tokio-util", + "tracing", ] [[package]] name = "rustfs-s3select-api" version = "0.0.5" dependencies = [ - "async-trait", - "bytes", - "chrono", - "datafusion", - "futures", - "futures-core", - "http 1.4.0", - "object_store", - "parking_lot", - "pin-project-lite", - "rustfs-common", - "rustfs-ecstore", - "s3s", - "snafu 0.8.9", - "tokio", - "tokio-util", - "tracing", - "transform-stream", - "url", + "async-trait", + "bytes", + "chrono", + "datafusion", + "futures", + "futures-core", + "http 1.4.0", + "object_store", + "parking_lot", + "pin-project-lite", + "rustfs-common", + "rustfs-ecstore", + "s3s", + "snafu 0.8.9", + "tokio", + "tokio-util", + "tracing", + "transform-stream", + "url", ] [[package]] name = "rustfs-s3select-query" version = "0.0.5" dependencies = [ - "async-recursion", - "async-trait", - "datafusion", - "derive_builder 0.20.2", - "futures", - "parking_lot", - "rustfs-s3select-api", - "s3s", - "snafu 0.8.9", - "tokio", - "tracing", + "async-recursion", + "async-trait", + "datafusion", + "derive_builder 0.20.2", + "futures", + "parking_lot", + "rustfs-s3select-api", + "s3s", + "snafu 0.8.9", + "tokio", + "tracing", ] [[package]] name = "rustfs-signer" version = "0.0.5" dependencies = [ - "base64-simd", - "bytes", - "http 1.4.0", - "hyper", - "rustfs-utils", - "s3s", - "serde_urlencoded", - "time", - "tracing", + "base64-simd", + "bytes", + "http 1.4.0", + "hyper", + "rustfs-utils", + "s3s", + "serde_urlencoded", + "time", + "tracing", ] [[package]] name = "rustfs-targets" version = "0.0.5" dependencies = [ - "async-trait", - "reqwest", - "rumqttc", - "rustfs-config", - "rustfs-utils", - "serde", - "serde_json", - "snap", - "thiserror 2.0.17", - "tokio", - "tracing", - "url", - "urlencoding", - "uuid", + "async-trait", + "reqwest", + "rumqttc", + "rustfs-config", + "rustfs-utils", + "serde", + "serde_json", + "snap", + "thiserror 2.0.17", + "tokio", + "tracing", + "url", + "urlencoding", + "uuid", ] [[package]] name = "rustfs-utils" version = "0.0.5" dependencies = [ - "base64-simd", - "blake3", - "brotli", - "bytes", - "convert_case", - "crc-fast", - "flate2", - "futures", - "hashbrown 0.16.1", - "hex-simd", - "highway", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "hyper", - "libc", - "local-ip-address", - "lz4", - "md-5 0.11.0-rc.3", - "netif", - "nix 0.30.1", - "rand 0.10.0-rc.6", - "regex", - "rustfs-config", - "rustls", - "rustls-pemfile", - "rustls-pki-types", - "s3s", - "serde", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "siphasher", - "snap", - "sysinfo", - "tempfile", - "thiserror 2.0.17", - "tokio", - "tracing", - "transform-stream", - "url", - "windows 0.62.2", - "zstd", + "base64-simd", + "blake3", + "brotli", + "bytes", + "convert_case", + "crc-fast", + "flate2", + "futures", + "hashbrown 0.16.1", + "hex-simd", + "highway", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "hyper", + "libc", + "local-ip-address", + "lz4", + "md-5 0.11.0-rc.3", + "netif", + "nix 0.30.1", + "rand 0.10.0-rc.6", + "regex", + "rustfs-config", + "rustls", + "rustls-pemfile", + "rustls-pki-types", + "s3s", + "serde", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "siphasher", + "snap", + "sysinfo", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tracing", + "transform-stream", + "url", + "windows 0.62.2", + "zstd", ] [[package]] name = "rustfs-workers" version = "0.0.5" dependencies = [ - "tokio", - "tracing", + "tokio", + "tracing", ] [[package]] name = "rustfs-zip" version = "0.0.5" dependencies = [ - "astral-tokio-tar", - "async-compression", - "tokio", - "tokio-stream", + "astral-tokio-tar", + "async-compression", + "tokio", + "tokio-stream", ] [[package]] @@ -8289,7 +8288,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom 7.1.3", + "nom 7.1.3", ] [[package]] @@ -8298,18 +8297,18 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "759a090a17ce545d1adcffcc48207d5136c8984d8153bd8247b1ad4a71e49f5f" dependencies = [ - "anyhow", - "async-trait", - "bytes", - "http 1.4.0", - "reqwest", - "rustify_derive", - "serde", - "serde_json", - "serde_urlencoded", - "thiserror 1.0.69", - "tracing", - "url", + "anyhow", + "async-trait", + "bytes", + "http 1.4.0", + "reqwest", + "rustify_derive", + "serde", + "serde_json", + "serde_urlencoded", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -8318,12 +8317,12 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f07d43b2dbdbd99aaed648192098f0f413b762f0f352667153934ef3955f1793" dependencies = [ - "proc-macro2", - "quote", - "regex", - "serde_urlencoded", - "syn 1.0.109", - "synstructure 0.12.6", + "proc-macro2", + "quote", + "regex", + "serde_urlencoded", + "syn 1.0.109", + "synstructure 0.12.6", ] [[package]] @@ -8332,11 +8331,11 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] @@ -8345,11 +8344,11 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ - "bitflags 2.10.0", - "errno", - "libc", - "linux-raw-sys 0.11.0", - "windows-sys 0.61.2", + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.2", ] [[package]] @@ -8358,14 +8357,14 @@ version = "0.23.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" dependencies = [ - "aws-lc-rs", - "log", - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki 0.103.8", - "subtle", - "zeroize", + "aws-lc-rs", + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki 0.103.8", + "subtle", + "zeroize", ] [[package]] @@ -8374,10 +8373,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", - "security-framework", + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", ] [[package]] @@ -8386,7 +8385,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -8395,8 +8394,8 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" dependencies = [ - "web-time", - "zeroize", + "web-time", + "zeroize", ] [[package]] @@ -8405,9 +8404,9 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8416,10 +8415,10 @@ version = "0.103.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" dependencies = [ - "aws-lc-rs", - "ring", - "rustls-pki-types", - "untrusted 0.9.0", + "aws-lc-rs", + "ring", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] @@ -8440,48 +8439,48 @@ version = "0.13.0-alpha.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6ea18014c794952beba5e5faf4663be467b591d45b4834916aad4bbcd2b5c27" dependencies = [ - "arrayvec", - "async-trait", - "atoi", - "base64-simd", - "bytes", - "bytestring", - "cfg-if", - "chrono", - "const-str", - "crc-fast", - "futures", - "hex-simd", - "hmac 0.13.0-rc.3", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "httparse", - "hyper", - "itoa", - "md-5 0.11.0-rc.3", - "memchr", - "mime", - "nom 8.0.0", - "numeric_cast", - "pin-project-lite", - "quick-xml 0.37.5", - "serde", - "serde_urlencoded", - "sha1 0.11.0-rc.3", - "sha2 0.11.0-rc.3", - "smallvec", - "std-next", - "subtle", - "sync_wrapper", - "thiserror 2.0.17", - "time", - "tokio", - "tower", - "tracing", - "transform-stream", - "urlencoding", - "zeroize", + "arrayvec", + "async-trait", + "atoi", + "base64-simd", + "bytes", + "bytestring", + "cfg-if", + "chrono", + "const-str", + "crc-fast", + "futures", + "hex-simd", + "hmac 0.13.0-rc.3", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "httparse", + "hyper", + "itoa", + "md-5 0.11.0-rc.3", + "memchr", + "mime", + "nom 8.0.0", + "numeric_cast", + "pin-project-lite", + "quick-xml 0.37.5", + "serde", + "serde_urlencoded", + "sha1 0.11.0-rc.3", + "sha2 0.11.0-rc.3", + "smallvec", + "std-next", + "subtle", + "sync_wrapper", + "thiserror 2.0.17", + "time", + "tokio", + "tower", + "tracing", + "transform-stream", + "urlencoding", + "zeroize", ] [[package]] @@ -8490,7 +8489,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" dependencies = [ - "cipher 0.4.4", + "cipher 0.4.4", ] [[package]] @@ -8499,7 +8498,7 @@ version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" dependencies = [ - "winapi-util", + "winapi-util", ] [[package]] @@ -8508,7 +8507,7 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc" dependencies = [ - "sdd", + "sdd", ] [[package]] @@ -8517,7 +8516,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -8526,10 +8525,10 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ - "dyn-clone", - "ref-cast", - "serde", - "serde_json", + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] @@ -8538,12 +8537,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" dependencies = [ - "chrono", - "dyn-clone", - "ref-cast", - "schemars_derive", - "serde", - "serde_json", + "chrono", + "dyn-clone", + "ref-cast", + "schemars_derive", + "serde", + "serde_json", ] [[package]] @@ -8552,10 +8551,10 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4908ad288c5035a8eb12cfdf0d49270def0a268ee162b75eeee0f85d155a7c45" dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.114", + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.114", ] [[package]] @@ -8570,9 +8569,9 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" dependencies = [ - "pbkdf2 0.12.2", - "salsa20", - "sha2 0.10.9", + "pbkdf2 0.12.2", + "salsa20", + "sha2 0.10.9", ] [[package]] @@ -8587,12 +8586,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" dependencies = [ - "base16ct 0.1.1", - "der 0.6.1", - "generic-array 0.14.7", - "pkcs8 0.9.0", - "subtle", - "zeroize", + "base16ct 0.1.1", + "der 0.6.1", + "generic-array 0.14.7", + "pkcs8 0.9.0", + "subtle", + "zeroize", ] [[package]] @@ -8601,12 +8600,12 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ - "base16ct 0.2.0", - "der 0.7.10", - "generic-array 0.14.7", - "pkcs8 0.10.2", - "subtle", - "zeroize", + "base16ct 0.2.0", + "der 0.7.10", + "generic-array 0.14.7", + "pkcs8 0.10.2", + "subtle", + "zeroize", ] [[package]] @@ -8615,8 +8614,8 @@ version = "0.8.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2568531a8ace88b848310caa98fb2115b151ef924d54aa523e659c21b9d32d71" dependencies = [ - "base16ct 1.0.0", - "hybrid-array", + "base16ct 1.0.0", + "hybrid-array", ] [[package]] @@ -8625,11 +8624,11 @@ version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.10.1", - "core-foundation-sys", - "libc", - "security-framework-sys", + "bitflags 2.10.0", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", ] [[package]] @@ -8638,8 +8637,8 @@ version = "2.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -8654,8 +8653,8 @@ version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ - "serde", - "serde_core", + "serde", + "serde_core", ] [[package]] @@ -8670,8 +8669,8 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ - "serde_core", - "serde_derive", + "serde_core", + "serde_derive", ] [[package]] @@ -8680,7 +8679,7 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ - "serde_derive", + "serde_derive", ] [[package]] @@ -8689,9 +8688,9 @@ version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8700,9 +8699,9 @@ version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8711,7 +8710,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e497af288b3b95d067a23a4f749f2861121ffcb2f6d8379310dcda040c345ed" dependencies = [ - "serde_core", + "serde_core", ] [[package]] @@ -8720,11 +8719,11 @@ version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ - "itoa", - "memchr", - "serde", - "serde_core", - "zmij", + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", ] [[package]] @@ -8733,9 +8732,9 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" dependencies = [ - "itoa", - "serde", - "serde_core", + "itoa", + "serde", + "serde_core", ] [[package]] @@ -8744,7 +8743,7 @@ version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ - "serde", + "serde", ] [[package]] @@ -8753,10 +8752,10 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", + "form_urlencoded", + "itoa", + "ryu", + "serde", ] [[package]] @@ -8765,17 +8764,17 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" dependencies = [ - "base64", - "chrono", - "hex", - "indexmap 1.9.3", - "indexmap 2.13.0", - "schemars 0.9.0", - "schemars 1.2.0", - "serde_core", - "serde_json", - "serde_with_macros", - "time", + "base64", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.0", + "serde_core", + "serde_json", + "serde_with_macros", + "time", ] [[package]] @@ -8784,10 +8783,10 @@ version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" dependencies = [ - "darling 0.21.3", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8796,8 +8795,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06" dependencies = [ - "base16ct 1.0.0", - "serde", + "base16ct 1.0.0", + "serde", ] [[package]] @@ -8806,13 +8805,13 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555" dependencies = [ - "futures-executor", - "futures-util", - "log", - "once_cell", - "parking_lot", - "scc", - "serial_test_derive", + "futures-executor", + "futures-util", + "log", + "once_cell", + "parking_lot", + "scc", + "serial_test_derive", ] [[package]] @@ -8821,9 +8820,9 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -8832,9 +8831,9 @@ version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8843,9 +8842,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa1ae819b9870cadc959a052363de870944a1646932d274a4e270f64bf79e5ef" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8854,9 +8853,9 @@ version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] @@ -8865,9 +8864,9 @@ version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.11.0-rc.5", + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.5", ] [[package]] @@ -8876,12 +8875,12 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff351910f271e7065781b6b4f0f43cb515d474d812f31176a0246d9058e47d5d" dependencies = [ - "cargo_metadata", - "const_format", - "is_debug", - "serde_json", - "time", - "tzdb", + "cargo_metadata", + "const_format", + "is_debug", + "serde_json", + "time", + "tzdb", ] [[package]] @@ -8890,7 +8889,7 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ - "lazy_static", + "lazy_static", ] [[package]] @@ -8899,7 +8898,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb" dependencies = [ - "dirs", + "dirs", ] [[package]] @@ -8914,8 +8913,8 @@ version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ - "errno", - "libc", + "errno", + "libc", ] [[package]] @@ -8924,8 +8923,8 @@ version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -8934,8 +8933,8 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ - "digest 0.10.7", - "rand_core 0.6.4", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] @@ -8944,8 +8943,8 @@ version = "3.0.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a96996ccff7dfa16f052bd995b4cecc72af22c35138738dc029f0ead6608d" dependencies = [ - "digest 0.11.0-rc.5", - "rand_core 0.10.0-rc-3", + "digest 0.11.0-rc.5", + "rand_core 0.10.0-rc-3", ] [[package]] @@ -8966,10 +8965,10 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ - "num-bigint", - "num-traits", - "thiserror 2.0.17", - "time", + "num-bigint", + "num-traits", + "thiserror 2.0.17", + "time", ] [[package]] @@ -8990,21 +8989,21 @@ version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b3b8565691b22d2bdfc066426ed48f837fc0c5f2c8cad8d9718f7f99d6995c1" dependencies = [ - "anyhow", - "erased-serde 0.3.31", - "rustversion", - "serde_core", + "anyhow", + "erased-serde 0.3.31", + "rustversion", + "serde_core", ] [[package]] name = "slog-scope" -version = "4.4.0" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" +checksum = "42b76cf645c92e7850d5a1c9205ebf2864bd32c0ab3e978e6daad51fedf7ef54" dependencies = [ - "arc-swap", - "lazy_static", - "slog", + "arc-swap", + "lazy_static", + "slog", ] [[package]] @@ -9013,9 +9012,9 @@ version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6706b2ace5bbae7291d3f8d2473e2bfab073ccd7d03670946197aec98471fa3e" dependencies = [ - "log", - "slog", - "slog-scope", + "log", + "slog", + "slog-scope", ] [[package]] @@ -9024,7 +9023,7 @@ version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" dependencies = [ - "serde", + "serde", ] [[package]] @@ -9033,9 +9032,9 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" dependencies = [ - "autocfg", - "static_assertions", - "version_check", + "autocfg", + "static_assertions", + "version_check", ] [[package]] @@ -9044,8 +9043,8 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7" dependencies = [ - "doc-comment", - "snafu-derive 0.6.10", + "doc-comment", + "snafu-derive 0.6.10", ] [[package]] @@ -9054,8 +9053,8 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2" dependencies = [ - "backtrace", - "snafu-derive 0.8.9", + "backtrace", + "snafu-derive 0.8.9", ] [[package]] @@ -9064,9 +9063,9 @@ version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -9075,10 +9074,10 @@ version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9093,8 +9092,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" dependencies = [ - "libc", - "windows-sys 0.60.2", + "libc", + "windows-sys 0.60.2", ] [[package]] @@ -9103,7 +9102,7 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9112,7 +9111,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" dependencies = [ - "lock_api", + "lock_api", ] [[package]] @@ -9121,8 +9120,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" dependencies = [ - "base64ct", - "der 0.6.1", + "base64ct", + "der 0.6.1", ] [[package]] @@ -9131,8 +9130,8 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ - "base64ct", - "der 0.7.10", + "base64ct", + "der 0.7.10", ] [[package]] @@ -9141,8 +9140,8 @@ version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80" dependencies = [ - "base64ct", - "der 0.8.0-rc.10", + "base64ct", + "der 0.8.0-rc.10", ] [[package]] @@ -9151,9 +9150,9 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f" dependencies = [ - "log", - "recursive", - "sqlparser_derive", + "log", + "recursive", + "sqlparser_derive", ] [[package]] @@ -9162,9 +9161,9 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9173,15 +9172,15 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f" dependencies = [ - "aes 0.8.4", - "aes-gcm 0.10.3", - "cbc", - "chacha20 0.9.1", - "cipher 0.4.4", - "ctr 0.9.2", - "poly1305 0.8.0", - "ssh-encoding 0.2.0", - "subtle", + "aes 0.8.4", + "aes-gcm 0.10.3", + "cbc", + "chacha20 0.9.1", + "cipher 0.4.4", + "ctr 0.9.2", + "poly1305 0.8.0", + "ssh-encoding 0.2.0", + "subtle", ] [[package]] @@ -9190,14 +9189,14 @@ version = "0.3.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88ca7fe5fcf2f30c6fcbad76c65c0aef40a09087ef9092eae072383c7d959200" dependencies = [ - "aes 0.9.0-rc.2", - "aes-gcm 0.11.0-rc.2", - "chacha20 0.10.0-rc.6", - "cipher 0.5.0-rc.3", - "des", - "poly1305 0.9.0-rc.3", - "ssh-encoding 0.3.0-rc.4", - "zeroize", + "aes 0.9.0-rc.2", + "aes-gcm 0.11.0-rc.2", + "chacha20 0.10.0-rc.6", + "cipher 0.5.0-rc.3", + "des", + "poly1305 0.9.0-rc.3", + "ssh-encoding 0.3.0-rc.4", + "zeroize", ] [[package]] @@ -9206,10 +9205,10 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15" dependencies = [ - "base64ct", - "bytes", - "pem-rfc7468 0.7.0", - "sha2 0.10.9", + "base64ct", + "bytes", + "pem-rfc7468 0.7.0", + "sha2 0.10.9", ] [[package]] @@ -9218,30 +9217,30 @@ version = "0.3.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d25a544d1b898f016dd32083ec3a926a5bff0deb6e43c691db6eb39fa11b7c9e" dependencies = [ - "base64ct", - "crypto-bigint 0.7.0-rc.18", - "digest 0.11.0-rc.5", - "pem-rfc7468 1.0.0", - "subtle", - "zeroize", + "base64ct", + "crypto-bigint 0.7.0-rc.18", + "digest 0.11.0-rc.5", + "pem-rfc7468 1.0.0", + "subtle", + "zeroize", ] [[package]] name = "ssh-key" -version = "0.7.0-rc.5" +version = "0.7.0-rc.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9919f7931e320cd6e070360fee461ee2974eff306cf23748d62dca276f78819" +checksum = "6d1b3dd9b51062c9dfd6339675bcc2bab19e91400a08cc167227e9184e99d715" dependencies = [ - "ed25519-dalek 3.0.0-pre.4", - "rand_core 0.10.0-rc-3", - "rsa", - "sec1 0.8.0-rc.11", - "sha2 0.11.0-rc.3", - "signature 3.0.0-rc.6", - "ssh-cipher 0.3.0-rc.5", - "ssh-encoding 0.3.0-rc.4", - "subtle", - "zeroize", + "ed25519-dalek 3.0.0-pre.4", + "rand_core 0.10.0-rc-3", + "rsa", + "sec1 0.8.0-rc.11", + "sha2 0.11.0-rc.3", + "signature 3.0.0-rc.6", + "ssh-cipher 0.3.0-rc.5", + "ssh-encoding 0.3.0-rc.4", + "subtle", + "zeroize", ] [[package]] @@ -9256,11 +9255,11 @@ version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" dependencies = [ - "cc", - "cfg-if", - "libc", - "psm", - "windows-sys 0.59.0", + "cc", + "cfg-if", + "libc", + "psm", + "windows-sys 0.59.0", ] [[package]] @@ -9269,11 +9268,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a88b6e011736aa3523f5962c02ba2d6c4cff35d97a0a9a3999afa6111d704a76" dependencies = [ - "hashbrown 0.16.1", - "rayon", - "rustc-hash", - "serde", - "tokio", + "hashbrown 0.16.1", + "rayon", + "rustc-hash", + "serde", + "tokio", ] [[package]] @@ -9288,8 +9287,8 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04082e93ed1a06debd9148c928234b46d2cf260bc65f44e1d1d3fa594c5beebc" dependencies = [ - "simdutf8", - "thiserror 2.0.17", + "simdutf8", + "thiserror 2.0.17", ] [[package]] @@ -9316,7 +9315,7 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ - "strum_macros", + "strum_macros", ] [[package]] @@ -9325,10 +9324,10 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn 2.0.114", + "heck", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9343,17 +9342,17 @@ version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69a15b325bbe0a1f85de3dbf988a3a14e9cd321537dffcbf6641381dd6d7586f" dependencies = [ - "async-trait", - "chrono", - "futures-lite", - "lazy-regex", - "log", - "pin-project", - "rustls", - "rustls-pki-types", - "thiserror 2.0.17", - "tokio", - "tokio-rustls", + "async-trait", + "chrono", + "futures-lite", + "lazy-regex", + "log", + "pin-project", + "rustls", + "rustls-pki-types", + "thiserror 2.0.17", + "tokio", + "tokio-rustls", ] [[package]] @@ -9368,8 +9367,8 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4b854348b15b6c441bdd27ce9053569b016a0723eab2d015b1fd8e6abe4f708" dependencies = [ - "sval", - "sval_ref", + "sval", + "sval_ref", ] [[package]] @@ -9378,7 +9377,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0bd9e8b74410ddad37c6962587c5f9801a2caadba9e11f3f916ee3f31ae4a1f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9387,9 +9386,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe17b8deb33a9441280b4266c2d257e166bafbaea6e66b4b34ca139c91766d9" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9398,9 +9397,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "854addb048a5bafb1f496c98e0ab5b9b581c3843f03ca07c034ae110d3b7c623" dependencies = [ - "itoa", - "ryu", - "sval", + "itoa", + "ryu", + "sval", ] [[package]] @@ -9409,9 +9408,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96cf068f482108ff44ae8013477cb047a1665d5f1a635ad7cf79582c1845dce9" dependencies = [ - "sval", - "sval_buffer", - "sval_ref", + "sval", + "sval_buffer", + "sval_ref", ] [[package]] @@ -9420,7 +9419,7 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed02126365ffe5ab8faa0abd9be54fbe68d03d607cd623725b0a71541f8aaa6f" dependencies = [ - "sval", + "sval", ] [[package]] @@ -9429,9 +9428,9 @@ version = "2.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a263383c6aa2076c4ef6011d3bae1b356edf6ea2613e3d8e8ebaa7b57dd707d5" dependencies = [ - "serde_core", - "sval", - "sval_nested", + "serde_core", + "sval", + "sval_nested", ] [[package]] @@ -9440,10 +9439,10 @@ version = "12.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "520cf51c674f8b93d533f80832babe413214bb766b6d7cb74ee99ad2971f8467" dependencies = [ - "debugid", - "memmap2", - "stable_deref_trait", - "uuid", + "debugid", + "memmap2", + "stable_deref_trait", + "uuid", ] [[package]] @@ -9452,9 +9451,9 @@ version = "12.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f0de2ee0ffa2641e17ba715ad51d48b9259778176517979cb38b6aa86fa7425" dependencies = [ - "cpp_demangle", - "rustc-demangle", - "symbolic-common", + "cpp_demangle", + "rustc-demangle", + "symbolic-common", ] [[package]] @@ -9463,9 +9462,9 @@ version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9474,9 +9473,9 @@ version = "2.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] @@ -9485,7 +9484,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -9494,7 +9493,7 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2" dependencies = [ - "crossbeam-queue", + "crossbeam-queue", ] [[package]] @@ -9503,10 +9502,10 @@ version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", + "proc-macro2", + "quote", + "syn 1.0.109", + "unicode-xid", ] [[package]] @@ -9515,9 +9514,9 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9526,13 +9525,13 @@ version = "0.37.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f" dependencies = [ - "libc", - "memchr", - "ntapi", - "objc2-core-foundation", - "objc2-io-kit", - "rayon", - "windows 0.61.3", + "libc", + "memchr", + "ntapi", + "objc2-core-foundation", + "objc2-io-kit", + "rayon", + "windows 0.61.3", ] [[package]] @@ -9541,9 +9540,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 2.10.0", - "core-foundation 0.9.4", - "system-configuration-sys", + "bitflags 2.10.0", + "core-foundation 0.9.4", + "system-configuration-sys", ] [[package]] @@ -9552,8 +9551,8 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ - "core-foundation-sys", - "libc", + "core-foundation-sys", + "libc", ] [[package]] @@ -9568,7 +9567,7 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96374855068f47402c3121c6eed88d29cb1de8f3ab27090e273e420bdabcf050" dependencies = [ - "parking_lot", + "parking_lot", ] [[package]] @@ -9577,11 +9576,11 @@ version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ - "fastrand", - "getrandom 0.3.4", - "once_cell", - "rustix 1.1.3", - "windows-sys 0.61.2", + "fastrand", + "getrandom 0.3.4", + "once_cell", + "rustix 1.1.3", + "windows-sys 0.61.2", ] [[package]] @@ -9590,7 +9589,7 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8" dependencies = [ - "test-case-macros", + "test-case-macros", ] [[package]] @@ -9599,10 +9598,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f" dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 2.0.114", + "cfg-if", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9611,10 +9610,10 @@ version = "3.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "test-case-core", + "proc-macro2", + "quote", + "syn 2.0.114", + "test-case-core", ] [[package]] @@ -9623,7 +9622,7 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.69", + "thiserror-impl 1.0.69", ] [[package]] @@ -9632,7 +9631,7 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.17", ] [[package]] @@ -9641,9 +9640,9 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9652,9 +9651,9 @@ version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9663,7 +9662,7 @@ version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" dependencies = [ - "cfg-if", + "cfg-if", ] [[package]] @@ -9672,9 +9671,9 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" dependencies = [ - "byteorder", - "integer-encoding", - "ordered-float", + "byteorder", + "integer-encoding", + "ordered-float", ] [[package]] @@ -9683,9 +9682,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ - "libc", - "paste", - "tikv-jemalloc-sys", + "libc", + "paste", + "tikv-jemalloc-sys", ] [[package]] @@ -9694,8 +9693,8 @@ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ - "cc", - "libc", + "cc", + "libc", ] [[package]] @@ -9704,8 +9703,8 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" dependencies = [ - "libc", - "tikv-jemalloc-sys", + "libc", + "tikv-jemalloc-sys", ] [[package]] @@ -9714,15 +9713,15 @@ version = "0.3.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd" dependencies = [ - "deranged", - "itoa", - "libc", - "num-conv", - "num_threads", - "powerfmt", - "serde_core", - "time-core", - "time-macros", + "deranged", + "itoa", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde_core", + "time-core", + "time-macros", ] [[package]] @@ -9737,8 +9736,8 @@ version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd" dependencies = [ - "num-conv", - "time-core", + "num-conv", + "time-core", ] [[package]] @@ -9747,7 +9746,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ - "crunchy", + "crunchy", ] [[package]] @@ -9756,8 +9755,8 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" dependencies = [ - "displaydoc", - "zerovec", + "displaydoc", + "zerovec", ] [[package]] @@ -9766,8 +9765,8 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" dependencies = [ - "serde", - "serde_json", + "serde", + "serde_json", ] [[package]] @@ -9776,7 +9775,7 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" dependencies = [ - "tinyvec_macros", + "tinyvec_macros", ] [[package]] @@ -9791,8 +9790,8 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" dependencies = [ - "tls_codec_derive", - "zeroize", + "tls_codec_derive", + "zeroize", ] [[package]] @@ -9801,9 +9800,9 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9812,15 +9811,15 @@ version = "1.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" dependencies = [ - "bytes", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys 0.61.2", + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", ] [[package]] @@ -9829,9 +9828,9 @@ version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9840,8 +9839,8 @@ version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "rustls", - "tokio", + "rustls", + "tokio", ] [[package]] @@ -9850,9 +9849,9 @@ version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ - "futures-core", - "pin-project-lite", - "tokio", + "futures-core", + "pin-project-lite", + "tokio", ] [[package]] @@ -9861,9 +9860,9 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545" dependencies = [ - "futures-core", - "tokio", - "tokio-stream", + "futures-core", + "tokio", + "tokio-stream", ] [[package]] @@ -9872,12 +9871,12 @@ version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", - "pin-project-lite", - "tokio", + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite", + "tokio", ] [[package]] @@ -9886,10 +9885,10 @@ version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit", + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", ] [[package]] @@ -9898,7 +9897,7 @@ version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ - "serde", + "serde", ] [[package]] @@ -9907,12 +9906,12 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.13.0", - "serde", - "serde_spanned", - "toml_datetime", - "toml_write", - "winnow", + "indexmap 2.13.0", + "serde", + "serde_spanned", + "toml_datetime", + "toml_write", + "winnow", ] [[package]] @@ -9927,30 +9926,30 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" dependencies = [ - "async-trait", - "axum", - "base64", - "bytes", - "flate2", - "h2", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "rustls-native-certs", - "socket2", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-stream", - "tower", - "tower-layer", - "tower-service", - "tracing", + "async-trait", + "axum", + "base64", + "bytes", + "flate2", + "h2", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "rustls-native-certs", + "socket2", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -9959,10 +9958,10 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3" dependencies = [ - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.114", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -9971,9 +9970,9 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" dependencies = [ - "bytes", - "prost 0.14.3", - "tonic", + "bytes", + "prost 0.14.3", + "tonic", ] [[package]] @@ -9982,14 +9981,14 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2" dependencies = [ - "prettyplease", - "proc-macro2", - "prost-build", - "prost-types", - "quote", - "syn 2.0.114", - "tempfile", - "tonic-build", + "prettyplease", + "proc-macro2", + "prost-build", + "prost-types", + "quote", + "syn 2.0.114", + "tempfile", + "tonic-build", ] [[package]] @@ -9998,17 +9997,17 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" dependencies = [ - "futures-core", - "futures-util", - "indexmap 2.13.0", - "pin-project-lite", - "slab", - "sync_wrapper", - "tokio", - "tokio-util", - "tower-layer", - "tower-service", - "tracing", + "futures-core", + "futures-util", + "indexmap 2.13.0", + "pin-project-lite", + "slab", + "sync_wrapper", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -10017,23 +10016,23 @@ version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ - "async-compression", - "bitflags 2.10.0", - "bytes", - "futures-core", - "futures-util", - "http 1.4.0", - "http-body 1.0.1", - "http-body-util", - "iri-string", - "pin-project-lite", - "tokio", - "tokio-util", - "tower", - "tower-layer", - "tower-service", - "tracing", - "uuid", + "async-compression", + "bitflags 2.10.0", + "bytes", + "futures-core", + "futures-util", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "iri-string", + "pin-project-lite", + "tokio", + "tokio-util", + "tower", + "tower-layer", + "tower-service", + "tracing", + "uuid", ] [[package]] @@ -10054,10 +10053,10 @@ version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ - "log", - "pin-project-lite", - "tracing-attributes", - "tracing-core", + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", ] [[package]] @@ -10066,10 +10065,10 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" dependencies = [ - "crossbeam-channel", - "thiserror 2.0.17", - "time", - "tracing-subscriber", + "crossbeam-channel", + "thiserror 2.0.17", + "time", + "tracing-subscriber", ] [[package]] @@ -10078,9 +10077,9 @@ version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10089,8 +10088,8 @@ version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ - "once_cell", - "valuable", + "once_cell", + "valuable", ] [[package]] @@ -10099,8 +10098,8 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" dependencies = [ - "tracing", - "tracing-subscriber", + "tracing", + "tracing-subscriber", ] [[package]] @@ -10109,9 +10108,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ - "log", - "once_cell", - "tracing-core", + "log", + "once_cell", + "tracing-core", ] [[package]] @@ -10120,14 +10119,14 @@ version = "0.32.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc" dependencies = [ - "js-sys", - "opentelemetry", - "smallvec", - "tracing", - "tracing-core", - "tracing-log", - "tracing-subscriber", - "web-time", + "js-sys", + "opentelemetry", + "smallvec", + "tracing", + "tracing-core", + "tracing-log", + "tracing-subscriber", + "web-time", ] [[package]] @@ -10136,8 +10135,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" dependencies = [ - "serde", - "tracing-core", + "serde", + "tracing-core", ] [[package]] @@ -10146,20 +10145,20 @@ version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex-automata", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "time", - "tracing", - "tracing-core", - "tracing-log", - "tracing-serde", + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "time", + "tracing", + "tracing-core", + "tracing-log", + "tracing-serde", ] [[package]] @@ -10168,7 +10167,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1a814d25437963577f6221d33a2aaa60bfb44acc3330cdc7c334644e9832022" dependencies = [ - "futures-core", + "futures-core", ] [[package]] @@ -10207,9 +10206,9 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56d4e985b6dda743ae7fd4140c28105316ffd75bc58258ee6cc12934e3eb7a0c" dependencies = [ - "iana-time-zone", - "tz-rs", - "tzdb_data", + "iana-time-zone", + "tz-rs", + "tzdb_data", ] [[package]] @@ -10218,7 +10217,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42302a846dea7ab786f42dc5f519387069045acff793e1178d9368414168fe95" dependencies = [ - "tz-rs", + "tz-rs", ] [[package]] @@ -10257,8 +10256,8 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common 0.1.7", - "subtle", + "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -10267,8 +10266,8 @@ version = "0.6.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0386f227888b17b65d3e38219a7d41185035471300855c285667811907bb1677" dependencies = [ - "crypto-common 0.2.0-rc.9", - "subtle", + "crypto-common 0.2.0-rc.9", + "subtle", ] [[package]] @@ -10289,10 +10288,10 @@ version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", + "form_urlencoded", + "idna", + "percent-encoding", + "serde", ] [[package]] @@ -10319,12 +10318,12 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" dependencies = [ - "getrandom 0.3.4", - "js-sys", - "rand 0.9.2", - "serde_core", - "uuid-macro-internal", - "wasm-bindgen", + "getrandom 0.3.4", + "js-sys", + "rand 0.9.2", + "serde_core", + "uuid-macro-internal", + "wasm-bindgen", ] [[package]] @@ -10333,9 +10332,9 @@ version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10350,8 +10349,8 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" dependencies = [ - "value-bag-serde1", - "value-bag-sval2", + "value-bag-serde1", + "value-bag-sval2", ] [[package]] @@ -10360,9 +10359,9 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16530907bfe2999a1773ca5900a65101e092c70f642f25cc23ca0c43573262c5" dependencies = [ - "erased-serde 0.4.9", - "serde_core", - "serde_fmt", + "erased-serde 0.4.9", + "serde_core", + "serde_fmt", ] [[package]] @@ -10371,13 +10370,13 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d00ae130edd690eaa877e4f40605d534790d1cf1d651e7685bd6a144521b251f" dependencies = [ - "sval", - "sval_buffer", - "sval_dynamic", - "sval_fmt", - "sval_json", - "sval_ref", - "sval_serde", + "sval", + "sval_buffer", + "sval_dynamic", + "sval_fmt", + "sval_json", + "sval_ref", + "sval_serde", ] [[package]] @@ -10386,18 +10385,18 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f81eb4d9221ca29bad43d4b6871b6d2e7656e1af2cfca624a87e5d17880d831d" dependencies = [ - "async-trait", - "bytes", - "derive_builder 0.12.0", - "http 1.4.0", - "reqwest", - "rustify", - "rustify_derive", - "serde", - "serde_json", - "thiserror 1.0.69", - "tracing", - "url", + "async-trait", + "bytes", + "derive_builder 0.12.0", + "http 1.4.0", + "reqwest", + "rustify", + "rustify_derive", + "serde", + "serde_json", + "thiserror 1.0.69", + "tracing", + "url", ] [[package]] @@ -10418,8 +10417,8 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" dependencies = [ - "same-file", - "winapi-util", + "same-file", + "winapi-util", ] [[package]] @@ -10428,7 +10427,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "try-lock", + "try-lock", ] [[package]] @@ -10443,65 +10442,66 @@ version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" dependencies = [ - "wit-bindgen", + "wit-bindgen", ] [[package]] name = "wasm-bindgen" -version = "0.2.106" +version = "0.2.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" +checksum = "1310980282a2842658e512a8bd683c962bbf9395e0544fa7bc0509343b8f7d10" dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", - "wasm-bindgen-shared", + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.56" +version = "0.4.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" +checksum = "de050049980fd9bee908eebfcdc8fa78dddb59acdbe7cbcc5b523a93c9fe0a4e" dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", + "cfg-if", + "futures-util", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.106" +version = "0.2.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" +checksum = "d83321b348310f762bebefa30cd9504f673f3b554a53755eaa93af8272d28f7b" dependencies = [ - "quote", - "wasm-bindgen-macro-support", + "quote", + "wasm-bindgen-macro-support", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.106" +version = "0.2.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" +checksum = "6971fd7d06a3063afaaf6b843a2b2b16c3d84b42f4e2ec4e0c8deafbcb179708" dependencies = [ - "bumpalo", - "proc-macro2", - "quote", - "syn 2.0.114", - "wasm-bindgen-shared", + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.114", + "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.106" +version = "0.2.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" +checksum = "54d2e1dc11b30bef0c334a34e7c7a1ed57cff1b602ad7eb6e5595e2e1e60bd62" dependencies = [ - "unicode-ident", + "unicode-ident", ] [[package]] @@ -10510,21 +10510,21 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", ] [[package]] name = "web-sys" -version = "0.3.83" +version = "0.3.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" +checksum = "b1803a5757552f43190297bc8351e32442341c064b940983d29ac94a0b957577" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10533,8 +10533,8 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" dependencies = [ - "js-sys", - "wasm-bindgen", + "js-sys", + "wasm-bindgen", ] [[package]] @@ -10543,7 +10543,7 @@ version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" dependencies = [ - "rustls-pki-types", + "rustls-pki-types", ] [[package]] @@ -10552,10 +10552,10 @@ version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.44", + "either", + "home", + "once_cell", + "rustix 0.38.44", ] [[package]] @@ -10564,7 +10564,7 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68" dependencies = [ - "serde", + "serde", ] [[package]] @@ -10573,8 +10573,8 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", ] [[package]] @@ -10589,7 +10589,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.61.2", ] [[package]] @@ -10604,11 +10604,11 @@ version = "0.61.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" dependencies = [ - "windows-collections 0.2.0", - "windows-core 0.61.2", - "windows-future 0.2.1", - "windows-link 0.1.3", - "windows-numerics 0.2.0", + "windows-collections 0.2.0", + "windows-core 0.61.2", + "windows-future 0.2.1", + "windows-link 0.1.3", + "windows-numerics 0.2.0", ] [[package]] @@ -10617,10 +10617,10 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ - "windows-collections 0.3.2", - "windows-core 0.62.2", - "windows-future 0.3.2", - "windows-numerics 0.3.1", + "windows-collections 0.3.2", + "windows-core 0.62.2", + "windows-future 0.3.2", + "windows-numerics 0.3.1", ] [[package]] @@ -10629,7 +10629,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.61.2", ] [[package]] @@ -10638,7 +10638,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-core 0.62.2", + "windows-core 0.62.2", ] [[package]] @@ -10647,11 +10647,11 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.1.3", - "windows-result 0.3.4", - "windows-strings 0.4.2", + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", ] [[package]] @@ -10660,11 +10660,11 @@ version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ - "windows-implement", - "windows-interface", - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10673,9 +10673,9 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", - "windows-threading 0.1.0", + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading 0.1.0", ] [[package]] @@ -10684,9 +10684,9 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", - "windows-threading 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", + "windows-threading 0.2.1", ] [[package]] @@ -10695,9 +10695,9 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10706,9 +10706,9 @@ version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -10729,8 +10729,8 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" dependencies = [ - "windows-core 0.61.2", - "windows-link 0.1.3", + "windows-core 0.61.2", + "windows-link 0.1.3", ] [[package]] @@ -10739,8 +10739,8 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core 0.62.2", - "windows-link 0.2.1", + "windows-core 0.62.2", + "windows-link 0.2.1", ] [[package]] @@ -10749,9 +10749,9 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", ] [[package]] @@ -10760,7 +10760,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10769,7 +10769,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10778,7 +10778,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10787,7 +10787,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10796,7 +10796,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10805,7 +10805,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.6", ] [[package]] @@ -10814,7 +10814,7 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.5", + "windows-targets 0.53.5", ] [[package]] @@ -10823,7 +10823,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10832,14 +10832,14 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -10848,15 +10848,15 @@ version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.2.1", - "windows_aarch64_gnullvm 0.53.1", - "windows_aarch64_msvc 0.53.1", - "windows_i686_gnu 0.53.1", - "windows_i686_gnullvm 0.53.1", - "windows_i686_msvc 0.53.1", - "windows_x86_64_gnu 0.53.1", - "windows_x86_64_gnullvm 0.53.1", - "windows_x86_64_msvc 0.53.1", + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] @@ -10865,7 +10865,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" dependencies = [ - "windows-link 0.1.3", + "windows-link 0.1.3", ] [[package]] @@ -10874,7 +10874,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ - "windows-link 0.2.1", + "windows-link 0.2.1", ] [[package]] @@ -10979,7 +10979,7 @@ version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" dependencies = [ - "memchr", + "memchr", ] [[package]] @@ -10994,10 +10994,10 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a76ff259533532054cfbaefb115c613203c73707017459206380f03b3b3f266e" dependencies = [ - "darling 0.20.11", - "proc-macro2", - "quote", - "syn 2.0.114", + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11012,15 +11012,15 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11029,16 +11029,16 @@ version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom 7.1.3", - "oid-registry", - "ring", - "rusticata-macros", - "thiserror 2.0.17", - "time", + "asn1-rs", + "data-encoding", + "der-parser", + "lazy_static", + "nom 7.1.3", + "oid-registry", + "ring", + "rusticata-macros", + "thiserror 2.0.17", + "time", ] [[package]] @@ -11047,8 +11047,8 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ - "libc", - "rustix 1.1.3", + "libc", + "rustix 1.1.3", ] [[package]] @@ -11075,7 +11075,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ - "time", + "time", ] [[package]] @@ -11084,9 +11084,9 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" dependencies = [ - "stable_deref_trait", - "yoke-derive", - "zerofrom", + "stable_deref_trait", + "yoke-derive", + "zerofrom", ] [[package]] @@ -11095,10 +11095,10 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11107,7 +11107,7 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" dependencies = [ - "zerocopy-derive", + "zerocopy-derive", ] [[package]] @@ -11116,9 +11116,9 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11127,7 +11127,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ - "zerofrom-derive", + "zerofrom-derive", ] [[package]] @@ -11136,10 +11136,10 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", - "synstructure 0.13.2", + "proc-macro2", + "quote", + "syn 2.0.114", + "synstructure 0.13.2", ] [[package]] @@ -11148,7 +11148,7 @@ version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ - "zeroize_derive", + "zeroize_derive", ] [[package]] @@ -11157,9 +11157,9 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11168,9 +11168,9 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" dependencies = [ - "displaydoc", - "yoke", - "zerofrom", + "displaydoc", + "yoke", + "zerofrom", ] [[package]] @@ -11179,9 +11179,9 @@ version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", + "yoke", + "zerofrom", + "zerovec-derive", ] [[package]] @@ -11190,9 +11190,9 @@ version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -11201,25 +11201,25 @@ version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9013f1222db8a6d680f13a7ccdc60a781199cd09c2fa4eff58e728bb181757fc" dependencies = [ - "aes 0.8.4", - "bzip2", - "constant_time_eq 0.3.1", - "crc32fast", - "deflate64", - "flate2", - "generic-array 0.14.7", - "getrandom 0.3.4", - "hmac 0.12.1", - "indexmap 2.13.0", - "lzma-rust2", - "memchr", - "pbkdf2 0.12.2", - "ppmd-rust", - "sha1 0.10.6", - "time", - "zeroize", - "zopfli", - "zstd", + "aes 0.8.4", + "bzip2", + "constant_time_eq 0.3.1", + "crc32fast", + "deflate64", + "flate2", + "generic-array 0.14.7", + "getrandom 0.3.4", + "hmac 0.12.1", + "indexmap 2.13.0", + "lzma-rust2", + "memchr", + "pbkdf2 0.12.2", + "ppmd-rust", + "sha1 0.10.6", + "time", + "zeroize", + "zopfli", + "zstd", ] [[package]] @@ -11240,10 +11240,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" dependencies = [ - "bumpalo", - "crc32fast", - "log", - "simd-adler32", + "bumpalo", + "crc32fast", + "log", + "simd-adler32", ] [[package]] @@ -11252,7 +11252,7 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "zstd-safe", + "zstd-safe", ] [[package]] @@ -11261,7 +11261,7 @@ version = "7.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" dependencies = [ - "zstd-sys", + "zstd-sys", ] [[package]] @@ -11270,6 +11270,6 @@ version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ - "cc", - "pkg-config", + "cc", + "pkg-config", ] diff --git a/Cargo.toml b/Cargo.toml index 2bb29725..917bbef1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -145,7 +145,7 @@ aes-gcm = { version = "0.11.0-rc.2", features = ["rand_core"] } argon2 = { version = "0.6.0-rc.5" } blake3 = { version = "1.8.3", features = ["rayon", "mmap"] } chacha20poly1305 = { version = "0.11.0-rc.2" } -crc-fast = "1.6.0" +crc-fast = "1.9.0" hmac = { version = "0.13.0-rc.3" } jsonwebtoken = { version = "10.2.0", features = ["aws_lc_rs"] } pbkdf2 = "0.13.0-rc.7" @@ -159,7 +159,7 @@ subtle = "2.6" zeroize = { version = "1.8.2", features = ["derive"] } # Time and Date -chrono = { version = "0.4.42", features = ["serde"] } +chrono = { version = "0.4.43", features = ["serde"] } humantime = "2.3.0" time = { version = "0.3.45", features = ["std", "parsing", "formatting", "macros", "serde"] } @@ -172,7 +172,7 @@ atomic_enum = "0.3.0" aws-config = { version = "1.8.12" } aws-credential-types = { version = "1.2.11" } aws-sdk-s3 = { version = "1.119.0", default-features = false, features = ["sigv4a", "default-https-client", "rt-tokio"] } -aws-smithy-types = { version = "1.3.5" } +aws-smithy-types = { version = "1.3.6" } base64 = "0.22.1" base64-simd = "0.8.0" brotli = "8.0.2" @@ -270,7 +270,7 @@ opentelemetry-stdout = { version = "0.31.0" } libunftp = "0.21.0" russh = { version = "0.56.0", features = ["aws-lc-rs", "rsa"], default-features = false } russh-sftp = "2.1.1" -ssh-key = { version = "0.7.0-rc.5", features = ["std", "rsa", "ed25519"] } +ssh-key = { version = "0.7.0-rc.6", features = ["std", "rsa", "ed25519"] } suppaftp = { version = "7.1.0", features = ["tokio", "tokio-rustls", "rustls"] } rcgen = "0.14.6" From 1e683f12efa2d86184ea130a813d6f2dcd89129e Mon Sep 17 00:00:00 2001 From: majinghe <42570491+majinghe@users.noreply.github.com> Date: Thu, 15 Jan 2026 11:29:45 +0800 Subject: [PATCH 17/22] =?UTF-8?q?fix:=20change=20health=20check=20statemen?= =?UTF-8?q?t=20to=20fix=20unhealthy=20issue=20for=20docker=20=E2=80=A6=20(?= =?UTF-8?q?#1515)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose-simple.yml | 2 +- docker-compose.yml | 4 ++-- docs/ansible/docker-compose-mnmd.yml | 2 +- docs/examples/docker/docker-comprehensive.yml | 12 ++++++------ 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docker-compose-simple.yml b/docker-compose-simple.yml index 9b409f43..ed60d261 100644 --- a/docker-compose-simple.yml +++ b/docker-compose-simple.yml @@ -40,7 +40,7 @@ services: [ "CMD", "sh", "-c", - "curl -f http://localhost:9000/health && curl -f http://localhost:9001/rustfs/console/health" + "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s diff --git a/docker-compose.yml b/docker-compose.yml index 2dd53a8c..2fcebd53 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -52,7 +52,7 @@ services: [ "CMD", "sh", "-c", - "curl -f http://localhost:9000/health && curl -f http://localhost:9001/rustfs/console/health" + "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s @@ -99,7 +99,7 @@ services: [ "CMD", "sh", "-c", - "curl -f http://localhost:9000/health && curl -f http://localhost:9001/rustfs/console/health" + "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s diff --git a/docs/ansible/docker-compose-mnmd.yml b/docs/ansible/docker-compose-mnmd.yml index 89b4cb56..fbc3159f 100644 --- a/docs/ansible/docker-compose-mnmd.yml +++ b/docs/ansible/docker-compose-mnmd.yml @@ -63,7 +63,7 @@ test: [ "CMD-SHELL", - "curl -f http://localhost:9000/health && curl -f http://localhost:9001/health || exit 1" + "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/health || exit 1" ] interval: 10s timeout: 5s diff --git a/docs/examples/docker/docker-comprehensive.yml b/docs/examples/docker/docker-comprehensive.yml index a87a0d94..7a3ddd43 100644 --- a/docs/examples/docker/docker-comprehensive.yml +++ b/docs/examples/docker/docker-comprehensive.yml @@ -15,7 +15,7 @@ services: - RUSTFS_ADDRESS=0.0.0.0:9000 - RUSTFS_CONSOLE_ADDRESS=0.0.0.0:9001 - RUSTFS_EXTERNAL_ADDRESS=:9000 - - RUSTFS_CORS_ALLOWED_ORIGINS=http://localhost:9001 + - RUSTFS_CORS_ALLOWED_ORIGINS=http://127.0.0.1:9001 - RUSTFS_CONSOLE_CORS_ALLOWED_ORIGINS=* - RUSTFS_ACCESS_KEY=admin - RUSTFS_SECRET_KEY=password @@ -25,7 +25,7 @@ services: - rustfs-network restart: unless-stopped healthcheck: - test: [ "CMD", "sh", "-c", "curl -f http://localhost:9000/health && curl -f http://localhost:9001/rustfs/console/health" ] + test: [ "CMD", "sh", "-c", "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s retries: 3 @@ -56,7 +56,7 @@ services: - rustfs-network restart: unless-stopped healthcheck: - test: [ "CMD", "sh", "-c", "curl -f http://localhost:9000/health && curl -f http://localhost:9001/rustfs/console/health" ] + test: [ "CMD", "sh", "-c", "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s retries: 3 @@ -92,7 +92,7 @@ services: - rustfs_secret_key restart: unless-stopped healthcheck: - test: [ "CMD", "sh", "-c", "curl -f http://localhost:9000/health && curl -f http://localhost:9001/rustfs/console/health" ] + test: [ "CMD", "sh", "-c", "curl -f http://127.0.0.1:9000/health && curl -f http://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s retries: 3 @@ -127,7 +127,7 @@ services: - rustfs_enterprise_secret_key restart: unless-stopped healthcheck: - test: [ "CMD", "sh", "-c", "curl -f http://localhost:9000/health && curl -k -f https://localhost:9001/rustfs/console/health" ] + test: [ "CMD", "sh", "-c", "curl -f http://127.0.0.1:9000/health && curl -k -f https://127.0.0.1:9001/rustfs/console/health" ] interval: 30s timeout: 10s retries: 3 @@ -152,7 +152,7 @@ services: - rustfs-network restart: unless-stopped healthcheck: - test: [ "CMD", "curl", "-f", "http://localhost:9000/health" ] + test: [ "CMD", "curl", "-f", "http://127.0.0.1:9000/health" ] interval: 30s timeout: 10s retries: 3 From e3a7eb2d3dde225479ccaf899b77d479ceff3a0f Mon Sep 17 00:00:00 2001 From: GatewayJ <835269233@qq.com> Date: Thu, 15 Jan 2026 15:33:22 +0800 Subject: [PATCH 18/22] fix: standart policy format (#1508) --- crates/policy/src/policy/action.rs | 31 +++++++++++++++--------------- crates/policy/src/policy/policy.rs | 10 ++++++---- 2 files changed, 22 insertions(+), 19 deletions(-) diff --git a/crates/policy/src/policy/action.rs b/crates/policy/src/policy/action.rs index e6ac3f3d..7af21b49 100644 --- a/crates/policy/src/policy/action.rs +++ b/crates/policy/src/policy/action.rs @@ -22,8 +22,8 @@ use strum::{EnumString, IntoStaticStr}; use super::{Error as IamError, Validator, utils::wildcard}; -/// A set of policy actions that serializes as a single string when containing one item, -/// or as an array when containing multiple items (matching AWS S3 API format). +/// A set of policy actions that always serializes as an array of strings, +/// conforming to the S3 policy specification for consistency and compatibility. #[derive(Clone, Default, Debug)] pub struct ActionSet(pub HashSet); @@ -34,15 +34,8 @@ impl Serialize for ActionSet { { use serde::ser::SerializeSeq; - if self.0.len() == 1 { - // Serialize single action as string (not array) - if let Some(action) = self.0.iter().next() { - let action_str: &str = action.into(); - return serializer.serialize_str(action_str); - } - } - - // Serialize multiple actions as array + // Always serialize as array, even for single action, to match S3 specification + // and ensure compatibility with AWS SDK clients that expect array format let mut seq = serializer.serialize_seq(Some(self.0.len()))?; for action in &self.0 { let action_str: &str = action.into(); @@ -610,13 +603,17 @@ mod tests { #[test] fn test_actionset_serialize_single_element() { - // Single element should serialize as string + // Single element should serialize as array for S3 specification compliance let mut set = HashSet::new(); set.insert(Action::S3Action(S3Action::GetObjectAction)); let actionset = ActionSet(set); let json = serde_json::to_string(&actionset).expect("Should serialize"); - assert_eq!(json, "\"s3:GetObject\""); + let parsed: serde_json::Value = serde_json::from_str(&json).expect("Should parse"); + assert!(parsed.is_array(), "Should serialize as array"); + let arr = parsed.as_array().expect("Should be array"); + assert_eq!(arr.len(), 1); + assert_eq!(arr[0].as_str().unwrap(), "s3:GetObject"); } #[test] @@ -636,12 +633,16 @@ mod tests { #[test] fn test_actionset_wildcard_serialization() { - // Wildcard action should serialize correctly + // Wildcard action should serialize as array for S3 specification compliance let mut set = HashSet::new(); set.insert(Action::try_from("*").expect("Should parse wildcard")); let actionset = ActionSet(set); let json = serde_json::to_string(&actionset).expect("Should serialize"); - assert_eq!(json, "\"s3:*\""); + let parsed: serde_json::Value = serde_json::from_str(&json).expect("Should parse"); + assert!(parsed.is_array(), "Should serialize as array"); + let arr = parsed.as_array().expect("Should be array"); + assert_eq!(arr.len(), 1); + assert_eq!(arr[0].as_str().unwrap(), "s3:*"); } } diff --git a/crates/policy/src/policy/policy.rs b/crates/policy/src/policy/policy.rs index 7eb9e2a3..46ccf984 100644 --- a/crates/policy/src/policy/policy.rs +++ b/crates/policy/src/policy/policy.rs @@ -1119,7 +1119,7 @@ mod test { } #[test] - fn test_bucket_policy_serialize_single_action_as_string() { + fn test_bucket_policy_serialize_single_action_as_array() { use crate::policy::action::{Action, ActionSet, S3Action}; use crate::policy::resource::{Resource, ResourceSet}; use crate::policy::{Effect, Principal}; @@ -1153,8 +1153,10 @@ mod test { let parsed: serde_json::Value = serde_json::from_str(&json).expect("Should parse"); let action = &parsed["Statement"][0]["Action"]; - // Single action should be serialized as string - assert!(action.is_string(), "Single action should serialize as string"); - assert_eq!(action.as_str().unwrap(), "s3:ListBucket"); + // Single action should be serialized as array for S3 specification compliance + assert!(action.is_array(), "Single action should serialize as array"); + let arr = action.as_array().expect("Should be array"); + assert_eq!(arr.len(), 1); + assert_eq!(arr[0].as_str().unwrap(), "s3:ListBucket"); } } From dceb7aac8a63d3128e52f7ef62c686d6c78aff4e Mon Sep 17 00:00:00 2001 From: houseme Date: Thu, 15 Jan 2026 17:18:54 +0800 Subject: [PATCH 19/22] upgrade s3s from `0.13.0-alpha.1` to `0.13.0-alpha.2` (#1518) --- Cargo.lock | 32 ++++++++++++++++---------------- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 918171c9..505a1fee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4914,9 +4914,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.84" +version = "0.3.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "992dc2f5318945507d390b324ab307c7e7ef69da0002cd14f178a5f37e289dc5" +checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3" dependencies = [ "once_cell", "wasm-bindgen", @@ -8435,9 +8435,9 @@ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" [[package]] name = "s3s" -version = "0.13.0-alpha.1" +version = "0.13.0-alpha.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6ea18014c794952beba5e5faf4663be467b591d45b4834916aad4bbcd2b5c27" +checksum = "1e9f3760ae04ec65fd1b0f17dc81c8061c432e8453365fa010cc610cb97ff877" dependencies = [ "arrayvec", "async-trait", @@ -10447,9 +10447,9 @@ dependencies = [ [[package]] name = "wasm-bindgen" -version = "0.2.107" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1310980282a2842658e512a8bd683c962bbf9395e0544fa7bc0509343b8f7d10" +checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566" dependencies = [ "cfg-if", "once_cell", @@ -10460,9 +10460,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.57" +version = "0.4.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de050049980fd9bee908eebfcdc8fa78dddb59acdbe7cbcc5b523a93c9fe0a4e" +checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f" dependencies = [ "cfg-if", "futures-util", @@ -10474,9 +10474,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.107" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d83321b348310f762bebefa30cd9504f673f3b554a53755eaa93af8272d28f7b" +checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -10484,9 +10484,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.107" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6971fd7d06a3063afaaf6b843a2b2b16c3d84b42f4e2ec4e0c8deafbcb179708" +checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55" dependencies = [ "bumpalo", "proc-macro2", @@ -10497,9 +10497,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.107" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54d2e1dc11b30bef0c334a34e7c7a1ed57cff1b602ad7eb6e5595e2e1e60bd62" +checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12" dependencies = [ "unicode-ident", ] @@ -10519,9 +10519,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.84" +version = "0.3.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1803a5757552f43190297bc8351e32442341c064b940983d29ac94a0b957577" +checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598" dependencies = [ "js-sys", "wasm-bindgen", diff --git a/Cargo.toml b/Cargo.toml index 917bbef1..a78e02fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -225,7 +225,7 @@ regex = { version = "1.12.2" } rumqttc = { version = "0.25.1" } rust-embed = { version = "8.11.0" } rustc-hash = { version = "2.1.1" } -s3s = { version = "0.13.0-alpha.1", features = ["minio"] } +s3s = { version = "0.13.0-alpha.2", features = ["minio"] } serial_test = "3.3.1" shadow-rs = { version = "1.5.0", default-features = false } siphasher = "1.0.1" From 55e4cdec5d736d1727e055b2ce541b2eccdce41b Mon Sep 17 00:00:00 2001 From: GatewayJ <835269233@qq.com> Date: Thu, 15 Jan 2026 20:03:26 +0800 Subject: [PATCH 20/22] feat: add Cors (#1496) Signed-off-by: GatewayJ <835269233@qq.com> Co-authored-by: loverustfs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: houseme --- crates/ecstore/src/bucket/metadata.rs | 19 +- crates/ecstore/src/bucket/metadata_sys.rs | 21 +- rustfs/src/admin/router.rs | 8 +- rustfs/src/server/cors.rs | 40 ++ rustfs/src/server/http.rs | 90 +--- rustfs/src/server/layer.rs | 179 +++++++- rustfs/src/server/mod.rs | 1 + rustfs/src/storage/access.rs | 2 +- rustfs/src/storage/ecfs.rs | 489 +++++++++++++++++++++- 9 files changed, 762 insertions(+), 87 deletions(-) create mode 100644 rustfs/src/server/cors.rs diff --git a/crates/ecstore/src/bucket/metadata.rs b/crates/ecstore/src/bucket/metadata.rs index d4a9ddac..78ceaf0b 100644 --- a/crates/ecstore/src/bucket/metadata.rs +++ b/crates/ecstore/src/bucket/metadata.rs @@ -25,8 +25,8 @@ use byteorder::{BigEndian, ByteOrder, LittleEndian}; use rmp_serde::Serializer as rmpSerializer; use rustfs_policy::policy::BucketPolicy; use s3s::dto::{ - BucketLifecycleConfiguration, NotificationConfiguration, ObjectLockConfiguration, ReplicationConfiguration, - ServerSideEncryptionConfiguration, Tagging, VersioningConfiguration, + BucketLifecycleConfiguration, CORSConfiguration, NotificationConfiguration, ObjectLockConfiguration, + ReplicationConfiguration, ServerSideEncryptionConfiguration, Tagging, VersioningConfiguration, }; use serde::Serializer; use serde::{Deserialize, Serialize}; @@ -49,6 +49,7 @@ pub const OBJECT_LOCK_CONFIG: &str = "object-lock.xml"; pub const BUCKET_VERSIONING_CONFIG: &str = "versioning.xml"; pub const BUCKET_REPLICATION_CONFIG: &str = "replication.xml"; pub const BUCKET_TARGETS_FILE: &str = "bucket-targets.json"; +pub const BUCKET_CORS_CONFIG: &str = "cors.xml"; #[derive(Debug, Deserialize, Serialize, Clone)] #[serde(rename_all = "PascalCase", default)] @@ -67,6 +68,7 @@ pub struct BucketMetadata { pub replication_config_xml: Vec, pub bucket_targets_config_json: Vec, pub bucket_targets_config_meta_json: Vec, + pub cors_config_xml: Vec, pub policy_config_updated_at: OffsetDateTime, pub object_lock_config_updated_at: OffsetDateTime, @@ -79,6 +81,7 @@ pub struct BucketMetadata { pub notification_config_updated_at: OffsetDateTime, pub bucket_targets_config_updated_at: OffsetDateTime, pub bucket_targets_config_meta_updated_at: OffsetDateTime, + pub cors_config_updated_at: OffsetDateTime, #[serde(skip)] pub new_field_updated_at: OffsetDateTime, @@ -105,6 +108,8 @@ pub struct BucketMetadata { pub bucket_target_config: Option, #[serde(skip)] pub bucket_target_config_meta: Option>, + #[serde(skip)] + pub cors_config: Option, } impl Default for BucketMetadata { @@ -124,6 +129,7 @@ impl Default for BucketMetadata { replication_config_xml: Default::default(), bucket_targets_config_json: Default::default(), bucket_targets_config_meta_json: Default::default(), + cors_config_xml: Default::default(), policy_config_updated_at: OffsetDateTime::UNIX_EPOCH, object_lock_config_updated_at: OffsetDateTime::UNIX_EPOCH, encryption_config_updated_at: OffsetDateTime::UNIX_EPOCH, @@ -135,6 +141,7 @@ impl Default for BucketMetadata { notification_config_updated_at: OffsetDateTime::UNIX_EPOCH, bucket_targets_config_updated_at: OffsetDateTime::UNIX_EPOCH, bucket_targets_config_meta_updated_at: OffsetDateTime::UNIX_EPOCH, + cors_config_updated_at: OffsetDateTime::UNIX_EPOCH, new_field_updated_at: OffsetDateTime::UNIX_EPOCH, policy_config: Default::default(), notification_config: Default::default(), @@ -147,6 +154,7 @@ impl Default for BucketMetadata { replication_config: Default::default(), bucket_target_config: Default::default(), bucket_target_config_meta: Default::default(), + cors_config: Default::default(), } } } @@ -295,6 +303,10 @@ impl BucketMetadata { self.bucket_targets_config_json = data.clone(); self.bucket_targets_config_updated_at = updated; } + BUCKET_CORS_CONFIG => { + self.cors_config_xml = data; + self.cors_config_updated_at = updated; + } _ => return Err(Error::other(format!("config file not found : {config_file}"))), } @@ -365,6 +377,9 @@ impl BucketMetadata { } else { self.bucket_target_config = Some(BucketTargets::default()) } + if !self.cors_config_xml.is_empty() { + self.cors_config = Some(deserialize::(&self.cors_config_xml)?); + } Ok(()) } diff --git a/crates/ecstore/src/bucket/metadata_sys.rs b/crates/ecstore/src/bucket/metadata_sys.rs index dad17b97..9b14857e 100644 --- a/crates/ecstore/src/bucket/metadata_sys.rs +++ b/crates/ecstore/src/bucket/metadata_sys.rs @@ -28,8 +28,8 @@ use rustfs_common::heal_channel::HealOpts; use rustfs_policy::policy::BucketPolicy; use s3s::dto::ReplicationConfiguration; use s3s::dto::{ - BucketLifecycleConfiguration, NotificationConfiguration, ObjectLockConfiguration, ServerSideEncryptionConfiguration, Tagging, - VersioningConfiguration, + BucketLifecycleConfiguration, CORSConfiguration, NotificationConfiguration, ObjectLockConfiguration, + ServerSideEncryptionConfiguration, Tagging, VersioningConfiguration, }; use std::collections::HashSet; use std::sync::OnceLock; @@ -110,6 +110,13 @@ pub async fn get_bucket_targets_config(bucket: &str) -> Result { bucket_meta_sys.get_bucket_targets_config(bucket).await } +pub async fn get_cors_config(bucket: &str) -> Result<(CORSConfiguration, OffsetDateTime)> { + let bucket_meta_sys_lock = get_bucket_metadata_sys()?; + let bucket_meta_sys = bucket_meta_sys_lock.read().await; + + bucket_meta_sys.get_cors_config(bucket).await +} + pub async fn get_tagging_config(bucket: &str) -> Result<(Tagging, OffsetDateTime)> { let bucket_meta_sys_lock = get_bucket_metadata_sys()?; let bucket_meta_sys = bucket_meta_sys_lock.read().await; @@ -500,6 +507,16 @@ impl BucketMetadataSys { } } + pub async fn get_cors_config(&self, bucket: &str) -> Result<(CORSConfiguration, OffsetDateTime)> { + let (bm, _) = self.get_config(bucket).await?; + + if let Some(config) = &bm.cors_config { + Ok((config.clone(), bm.cors_config_updated_at)) + } else { + Err(Error::ConfigNotFound) + } + } + pub async fn created_at(&self, bucket: &str) -> Result { let bm = match self.get_config(bucket).await { Ok((bm, _)) => bm.created, diff --git a/rustfs/src/admin/router.rs b/rustfs/src/admin/router.rs index 09c390cf..b01565b5 100644 --- a/rustfs/src/admin/router.rs +++ b/rustfs/src/admin/router.rs @@ -84,6 +84,7 @@ where { fn is_match(&self, method: &Method, uri: &Uri, headers: &HeaderMap, _: &mut Extensions) -> bool { let path = uri.path(); + // Profiling endpoints if method == Method::GET && (path == PROFILE_CPU_PATH || path == PROFILE_MEMORY_PATH) { return true; @@ -150,6 +151,8 @@ where } async fn call(&self, req: S3Request) -> S3Result> { + // Console requests should be handled by console router first (including OPTIONS) + // Console has its own CORS layer configured if self.console_enabled && is_console_path(req.uri.path()) { if let Some(console_router) = &self.console_router { let mut console_router = console_router.clone(); @@ -164,11 +167,14 @@ where } let uri = format!("{}|{}", &req.method, req.uri.path()); + if let Ok(mat) = self.router.at(&uri) { let op: &T = mat.value; let mut resp = op.call(req, mat.params).await?; resp.status = Some(resp.output.0); - return Ok(resp.map_output(|x| x.1)); + let response = resp.map_output(|x| x.1); + + return Ok(response); } Err(s3_error!(NotImplemented)) diff --git a/rustfs/src/server/cors.rs b/rustfs/src/server/cors.rs new file mode 100644 index 00000000..b01d9034 --- /dev/null +++ b/rustfs/src/server/cors.rs @@ -0,0 +1,40 @@ +// Copyright 2024 RustFS Team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//! CORS (Cross-Origin Resource Sharing) header name constants. +//! +//! This module provides centralized constants for CORS-related HTTP header names. +//! The http crate doesn't provide pre-defined constants for CORS headers, +//! so we define them here for type safety and maintainability. + +/// CORS response header names +pub mod response { + pub const ACCESS_CONTROL_ALLOW_ORIGIN: &str = "access-control-allow-origin"; + pub const ACCESS_CONTROL_ALLOW_METHODS: &str = "access-control-allow-methods"; + pub const ACCESS_CONTROL_ALLOW_HEADERS: &str = "access-control-allow-headers"; + pub const ACCESS_CONTROL_EXPOSE_HEADERS: &str = "access-control-expose-headers"; + pub const ACCESS_CONTROL_ALLOW_CREDENTIALS: &str = "access-control-allow-credentials"; + pub const ACCESS_CONTROL_MAX_AGE: &str = "access-control-max-age"; +} + +/// CORS request header names +pub mod request { + pub const ACCESS_CONTROL_REQUEST_METHOD: &str = "access-control-request-method"; + pub const ACCESS_CONTROL_REQUEST_HEADERS: &str = "access-control-request-headers"; +} + +/// Standard HTTP header names used in CORS processing +pub mod standard { + pub use http::header::{ORIGIN, VARY}; +} diff --git a/rustfs/src/server/http.rs b/rustfs/src/server/http.rs index 57a8f7a4..5cecb319 100644 --- a/rustfs/src/server/http.rs +++ b/rustfs/src/server/http.rs @@ -17,7 +17,11 @@ use super::compress::{CompressionConfig, CompressionPredicate}; use crate::admin; use crate::auth::IAMAuth; use crate::config; -use crate::server::{ReadinessGateLayer, RemoteAddr, ServiceState, ServiceStateManager, hybrid::hybrid, layer::RedirectLayer}; +use crate::server::{ + ReadinessGateLayer, RemoteAddr, ServiceState, ServiceStateManager, + hybrid::hybrid, + layer::{ConditionalCorsLayer, RedirectLayer}, +}; use crate::storage; use crate::storage::tonic_service::make_server; use bytes::Bytes; @@ -48,70 +52,10 @@ use tower::ServiceBuilder; use tower_http::add_extension::AddExtensionLayer; use tower_http::catch_panic::CatchPanicLayer; use tower_http::compression::CompressionLayer; -use tower_http::cors::{AllowOrigin, Any, CorsLayer}; use tower_http::request_id::{MakeRequestUuid, PropagateRequestIdLayer, SetRequestIdLayer}; use tower_http::trace::TraceLayer; use tracing::{Span, debug, error, info, instrument, warn}; -/// Parse CORS allowed origins from configuration -fn parse_cors_origins(origins: Option<&String>) -> CorsLayer { - use http::Method; - - let cors_layer = CorsLayer::new() - .allow_methods([ - Method::GET, - Method::POST, - Method::PUT, - Method::DELETE, - Method::HEAD, - Method::OPTIONS, - ]) - .allow_headers(Any); - - match origins { - Some(origins_str) if origins_str == "*" => cors_layer.allow_origin(Any).expose_headers(Any), - Some(origins_str) => { - let origins: Vec<&str> = origins_str.split(',').map(|s| s.trim()).collect(); - if origins.is_empty() { - warn!("Empty CORS origins provided, using permissive CORS"); - cors_layer.allow_origin(Any).expose_headers(Any) - } else { - // Parse origins with proper error handling - let mut valid_origins = Vec::new(); - for origin in origins { - match origin.parse::() { - Ok(header_value) => { - valid_origins.push(header_value); - } - Err(e) => { - warn!("Invalid CORS origin '{}': {}", origin, e); - } - } - } - - if valid_origins.is_empty() { - warn!("No valid CORS origins found, using permissive CORS"); - cors_layer.allow_origin(Any).expose_headers(Any) - } else { - info!("Endpoint CORS origins configured: {:?}", valid_origins); - cors_layer.allow_origin(AllowOrigin::list(valid_origins)).expose_headers(Any) - } - } - } - None => { - debug!("No CORS origins configured for endpoint, using permissive CORS"); - cors_layer.allow_origin(Any).expose_headers(Any) - } - } -} - -fn get_cors_allowed_origins() -> String { - std::env::var(rustfs_config::ENV_CORS_ALLOWED_ORIGINS) - .unwrap_or_else(|_| rustfs_config::DEFAULT_CORS_ALLOWED_ORIGINS.to_string()) - .parse::() - .unwrap_or(rustfs_config::DEFAULT_CONSOLE_CORS_ALLOWED_ORIGINS.to_string()) -} - pub async fn start_http_server( opt: &config::Opt, worker_state_manager: ServiceStateManager, @@ -273,14 +217,6 @@ pub async fn start_http_server( let (shutdown_tx, mut shutdown_rx) = tokio::sync::broadcast::channel(1); let shutdown_tx_clone = shutdown_tx.clone(); - // Capture CORS configuration for the server loop - let cors_allowed_origins = get_cors_allowed_origins(); - let cors_allowed_origins = if cors_allowed_origins.is_empty() { - None - } else { - Some(cors_allowed_origins) - }; - // Create compression configuration from environment variables let compression_config = CompressionConfig::from_env(); if compression_config.enabled { @@ -294,8 +230,10 @@ pub async fn start_http_server( let is_console = opt.console_enable; tokio::spawn(async move { - // Create CORS layer inside the server loop closure - let cors_layer = parse_cors_origins(cors_allowed_origins.as_ref()); + // Note: CORS layer is removed from global middleware stack + // - S3 API CORS is handled by bucket-level CORS configuration in apply_cors_headers() + // - Console CORS is handled by its own cors_layer in setup_console_middleware_stack() + // This ensures S3 API CORS behavior matches AWS S3 specification #[cfg(unix)] let (mut sigterm_inner, mut sigint_inner) = { @@ -405,7 +343,6 @@ pub async fn start_http_server( let connection_ctx = ConnectionContext { http_server: http_server.clone(), s3_service: s3_service.clone(), - cors_layer: cors_layer.clone(), compression_config: compression_config.clone(), is_console, readiness: readiness.clone(), @@ -521,7 +458,6 @@ async fn setup_tls_acceptor(tls_path: &str) -> Result> { struct ConnectionContext { http_server: Arc>, s3_service: S3Service, - cors_layer: CorsLayer, compression_config: CompressionConfig, is_console: bool, readiness: Arc, @@ -546,7 +482,6 @@ fn process_connection( let ConnectionContext { http_server, s3_service, - cors_layer, compression_config, is_console, readiness, @@ -629,10 +564,15 @@ fn process_connection( }), ) .layer(PropagateRequestIdLayer::x_request_id()) - .layer(cors_layer) // Compress responses based on whitelist configuration // Only compresses when enabled and matches configured extensions/MIME types .layer(CompressionLayer::new().compress_when(CompressionPredicate::new(compression_config))) + // Conditional CORS layer: only applies to S3 API requests (not Admin, not Console) + // Admin has its own CORS handling in router.rs + // Console has its own CORS layer in setup_console_middleware_stack() + // S3 API uses this system default CORS (RUSTFS_CORS_ALLOWED_ORIGINS) + // Bucket-level CORS takes precedence when configured (handled in router.rs for OPTIONS, and in ecfs.rs for actual requests) + .layer(ConditionalCorsLayer::new()) .option_layer(if is_console { Some(RedirectLayer) } else { None }) .service(service); diff --git a/rustfs/src/server/layer.rs b/rustfs/src/server/layer.rs index f324d06b..705798d3 100644 --- a/rustfs/src/server/layer.rs +++ b/rustfs/src/server/layer.rs @@ -12,14 +12,19 @@ // See the License for the specific language governing permissions and // limitations under the License. +use crate::admin::console::is_console_path; +use crate::server::cors; use crate::server::hybrid::HybridBody; -use http::{Request as HttpRequest, Response, StatusCode}; +use crate::server::{ADMIN_PREFIX, RPC_PREFIX}; +use crate::storage::ecfs; +use http::{HeaderMap, HeaderValue, Method, Request as HttpRequest, Response, StatusCode}; use hyper::body::Incoming; use std::future::Future; use std::pin::Pin; +use std::sync::Arc; use std::task::{Context, Poll}; use tower::{Layer, Service}; -use tracing::debug; +use tracing::{debug, info}; /// Redirect layer that redirects browser requests to the console #[derive(Clone)] @@ -89,3 +94,173 @@ where Box::pin(async move { inner.call(req).await.map_err(Into::into) }) } } + +/// Conditional CORS layer that only applies to S3 API requests +/// (not Admin, not Console, not RPC) +#[derive(Clone)] +pub struct ConditionalCorsLayer { + cors_origins: Option, +} + +impl ConditionalCorsLayer { + pub fn new() -> Self { + let cors_origins = std::env::var("RUSTFS_CORS_ALLOWED_ORIGINS").ok().filter(|s| !s.is_empty()); + Self { cors_origins } + } + + /// Exact paths that should be excluded from being treated as S3 paths. + const EXCLUDED_EXACT_PATHS: &'static [&'static str] = &["/health", "/profile/cpu", "/profile/memory"]; + + fn is_s3_path(path: &str) -> bool { + // Exclude Admin, Console, RPC, and configured special paths + !path.starts_with(ADMIN_PREFIX) + && !path.starts_with(RPC_PREFIX) + && !is_console_path(path) + && !Self::EXCLUDED_EXACT_PATHS.contains(&path) + } + + fn apply_cors_headers(&self, request_headers: &HeaderMap, response_headers: &mut HeaderMap) { + let origin = request_headers + .get(cors::standard::ORIGIN) + .and_then(|v| v.to_str().ok()) + .map(|s| s.to_string()); + + let allowed_origin = match (origin, &self.cors_origins) { + (Some(orig), Some(config)) if config == "*" => Some(orig), + (Some(orig), Some(config)) => { + let origins: Vec<&str> = config.split(',').map(|s| s.trim()).collect(); + if origins.contains(&orig.as_str()) { Some(orig) } else { None } + } + (Some(orig), None) => Some(orig), // Default: allow all if not configured + _ => None, + }; + + // Track whether we're using a specific origin (not wildcard) + let using_specific_origin = if let Some(origin) = &allowed_origin { + if let Ok(header_value) = HeaderValue::from_str(origin) { + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_ORIGIN, header_value); + true // Using specific origin, credentials allowed + } else { + false + } + } else { + false + }; + + // Allow all methods by default (S3-compatible set) + response_headers.insert( + cors::response::ACCESS_CONTROL_ALLOW_METHODS, + HeaderValue::from_static("GET, POST, PUT, DELETE, OPTIONS, HEAD"), + ); + + // Allow all headers by default + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_HEADERS, HeaderValue::from_static("*")); + + // Expose common headers + response_headers.insert( + cors::response::ACCESS_CONTROL_EXPOSE_HEADERS, + HeaderValue::from_static("x-request-id, content-type, content-length, etag"), + ); + + // Only set credentials when using a specific origin (not wildcard) + // CORS spec: credentials cannot be used with wildcard origins + if using_specific_origin { + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_CREDENTIALS, HeaderValue::from_static("true")); + } + } +} + +impl Default for ConditionalCorsLayer { + fn default() -> Self { + Self::new() + } +} + +impl Layer for ConditionalCorsLayer { + type Service = ConditionalCorsService; + + fn layer(&self, inner: S) -> Self::Service { + ConditionalCorsService { + inner, + cors_origins: Arc::new(self.cors_origins.clone()), + } + } +} + +/// Service implementation for conditional CORS +#[derive(Clone)] +pub struct ConditionalCorsService { + inner: S, + cors_origins: Arc>, +} + +impl Service> for ConditionalCorsService +where + S: Service, Response = Response> + Clone + Send + 'static, + S::Future: Send + 'static, + S::Error: Into> + Send + 'static, + ResBody: Default + Send + 'static, +{ + type Response = Response; + type Error = Box; + type Future = Pin> + Send>>; + + fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { + self.inner.poll_ready(cx).map_err(Into::into) + } + + fn call(&mut self, req: HttpRequest) -> Self::Future { + let path = req.uri().path().to_string(); + let method = req.method().clone(); + let request_headers = req.headers().clone(); + let cors_origins = self.cors_origins.clone(); + // Handle OPTIONS preflight requests - return response directly without calling handler + if method == Method::OPTIONS && request_headers.contains_key(cors::standard::ORIGIN) { + info!("OPTIONS preflight request for path: {}", path); + + let path_trimmed = path.trim_start_matches('/'); + let bucket = path_trimmed.split('/').next().unwrap_or("").to_string(); // virtual host style? + let method_clone = method.clone(); + let request_headers_clone = request_headers.clone(); + + return Box::pin(async move { + let mut response = Response::builder().status(StatusCode::OK).body(ResBody::default()).unwrap(); + + if ConditionalCorsLayer::is_s3_path(&path) + && !bucket.is_empty() + && cors_origins.is_some() + && let Some(cors_headers) = ecfs::apply_cors_headers(&bucket, &method_clone, &request_headers_clone).await + { + for (key, value) in cors_headers.iter() { + response.headers_mut().insert(key, value.clone()); + } + return Ok(response); + } + + let cors_layer = ConditionalCorsLayer { + cors_origins: (*cors_origins).clone(), + }; + cors_layer.apply_cors_headers(&request_headers_clone, response.headers_mut()); + + Ok(response) + }); + } + + let mut inner = self.inner.clone(); + Box::pin(async move { + let mut response = inner.call(req).await.map_err(Into::into)?; + + // Apply CORS headers only to S3 API requests (non-OPTIONS) + if request_headers.contains_key(cors::standard::ORIGIN) + && !response.headers().contains_key(cors::response::ACCESS_CONTROL_ALLOW_ORIGIN) + { + let cors_layer = ConditionalCorsLayer { + cors_origins: (*cors_origins).clone(), + }; + cors_layer.apply_cors_headers(&request_headers, response.headers_mut()); + } + + Ok(response) + }) + } +} diff --git a/rustfs/src/server/mod.rs b/rustfs/src/server/mod.rs index c6f72d19..8714fa78 100644 --- a/rustfs/src/server/mod.rs +++ b/rustfs/src/server/mod.rs @@ -15,6 +15,7 @@ mod audit; mod cert; mod compress; +pub mod cors; mod event; mod http; mod hybrid; diff --git a/rustfs/src/storage/access.rs b/rustfs/src/storage/access.rs index e394c68f..79515cdc 100644 --- a/rustfs/src/storage/access.rs +++ b/rustfs/src/storage/access.rs @@ -342,7 +342,7 @@ impl S3Access for FS { let req_info = req.extensions.get_mut::().expect("ReqInfo not found"); req_info.bucket = Some(req.input.bucket.clone()); - authorize_request(req, Action::S3Action(S3Action::PutBucketCorsAction)).await + authorize_request(req, Action::S3Action(S3Action::DeleteBucketCorsAction)).await } /// Checks whether the DeleteBucketEncryption request has accesses to the resources. diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index 8f21ff57..a1981d07 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -18,6 +18,7 @@ use crate::config::workload_profiles::{ }; use crate::error::ApiError; use crate::server::RemoteAddr; +use crate::server::cors; use crate::storage::concurrency::{ CachedGetObject, ConcurrencyManager, GetObjectGuard, get_concurrency_aware_buffer_size, get_concurrency_manager, }; @@ -48,8 +49,8 @@ use rustfs_ecstore::{ lifecycle::{self, Lifecycle, TransitionOptions}, }, metadata::{ - BUCKET_LIFECYCLE_CONFIG, BUCKET_NOTIFICATION_CONFIG, BUCKET_POLICY_CONFIG, BUCKET_REPLICATION_CONFIG, - BUCKET_SSECONFIG, BUCKET_TAGGING_CONFIG, BUCKET_VERSIONING_CONFIG, OBJECT_LOCK_CONFIG, + BUCKET_CORS_CONFIG, BUCKET_LIFECYCLE_CONFIG, BUCKET_NOTIFICATION_CONFIG, BUCKET_POLICY_CONFIG, + BUCKET_REPLICATION_CONFIG, BUCKET_SSECONFIG, BUCKET_TAGGING_CONFIG, BUCKET_VERSIONING_CONFIG, OBJECT_LOCK_CONFIG, }, metadata_sys, metadata_sys::get_replication_config, @@ -818,6 +819,205 @@ async fn get_validated_store(bucket: &str) -> S3Result bool { + headers.contains_key(cors::standard::ORIGIN) +} + +/// Apply CORS headers to response based on bucket CORS configuration and request origin +/// +/// This function: +/// 1. Reads the Origin header from the request +/// 2. Retrieves the bucket's CORS configuration +/// 3. Matches the origin against CORS rules +/// 4. Validates AllowedHeaders if request headers are present +/// 5. Returns headers to add to the response if a match is found +/// +/// Note: This function should only be called if `needs_cors_processing()` returns true +/// to avoid unnecessary overhead for non-CORS requests. +pub(crate) async fn apply_cors_headers(bucket: &str, method: &http::Method, headers: &HeaderMap) -> Option { + use http::HeaderValue; + + // Get Origin header from request + let origin = headers.get(cors::standard::ORIGIN)?.to_str().ok()?; + + // Get CORS configuration for the bucket + let cors_config = match metadata_sys::get_cors_config(bucket).await { + Ok((config, _)) => config, + Err(_) => return None, // No CORS config, no headers to add + }; + + // Early return if no CORS rules configured + if cors_config.cors_rules.is_empty() { + return None; + } + + // Check if method is supported and get its string representation + const SUPPORTED_METHODS: &[&str] = &["GET", "PUT", "POST", "DELETE", "HEAD", "OPTIONS"]; + let method_str = method.as_str(); + if !SUPPORTED_METHODS.contains(&method_str) { + return None; + } + + // For OPTIONS (preflight) requests, check Access-Control-Request-Method + let is_preflight = method == http::Method::OPTIONS; + let requested_method = if is_preflight { + headers + .get(cors::request::ACCESS_CONTROL_REQUEST_METHOD) + .and_then(|v| v.to_str().ok()) + .unwrap_or(method_str) + } else { + method_str + }; + + // Get requested headers from preflight request + let requested_headers = if is_preflight { + headers + .get(cors::request::ACCESS_CONTROL_REQUEST_HEADERS) + .and_then(|v| v.to_str().ok()) + .map(|h| h.split(',').map(|s| s.trim().to_lowercase()).collect::>()) + } else { + None + }; + + // Find matching CORS rule + for rule in cors_config.cors_rules.iter() { + // Check if origin matches + let origin_matches = rule.allowed_origins.iter().any(|allowed_origin| { + if allowed_origin == "*" { + true + } else { + // Exact match or pattern match (support wildcards like https://*.example.com) + allowed_origin == origin || matches_origin_pattern(allowed_origin, origin) + } + }); + + if !origin_matches { + continue; + } + + // Check if method is allowed + let method_allowed = rule + .allowed_methods + .iter() + .any(|allowed_method| allowed_method.as_str() == requested_method); + + if !method_allowed { + continue; + } + + // Validate AllowedHeaders if present in the request + if let Some(ref req_headers) = requested_headers { + if let Some(ref allowed_headers) = rule.allowed_headers { + // Check if all requested headers are allowed + let all_headers_allowed = req_headers.iter().all(|req_header| { + allowed_headers.iter().any(|allowed_header| { + let allowed_lower = allowed_header.to_lowercase(); + // "*" allows all headers, or exact match + allowed_lower == "*" || allowed_lower == *req_header + }) + }); + + if !all_headers_allowed { + // If not all headers are allowed, skip this rule + continue; + } + } else if !req_headers.is_empty() { + // If no AllowedHeaders specified but headers were requested, skip this rule + // Unless the rule explicitly allows all headers + continue; + } + } + + // Found matching rule, build response headers + let mut response_headers = HeaderMap::new(); + + // Access-Control-Allow-Origin + // If origin is "*", use "*", otherwise echo back the origin + let has_wildcard_origin = rule.allowed_origins.iter().any(|o| o == "*"); + if has_wildcard_origin { + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_ORIGIN, HeaderValue::from_static("*")); + } else if let Ok(origin_value) = HeaderValue::from_str(origin) { + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_ORIGIN, origin_value); + } + + // Vary: Origin (required for caching, except when using wildcard) + if !has_wildcard_origin { + response_headers.insert(cors::standard::VARY, HeaderValue::from_static("Origin")); + } + + // Access-Control-Allow-Methods (required for preflight) + if is_preflight || !rule.allowed_methods.is_empty() { + let methods_str = rule.allowed_methods.iter().map(|m| m.as_str()).collect::>().join(", "); + if let Ok(methods_value) = HeaderValue::from_str(&methods_str) { + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_METHODS, methods_value); + } + } + + // Access-Control-Allow-Headers (required for preflight if headers were requested) + if is_preflight && let Some(ref allowed_headers) = rule.allowed_headers { + let headers_str = allowed_headers.iter().map(|h| h.as_str()).collect::>().join(", "); + if let Ok(headers_value) = HeaderValue::from_str(&headers_str) { + response_headers.insert(cors::response::ACCESS_CONTROL_ALLOW_HEADERS, headers_value); + } + } + + // Access-Control-Expose-Headers (for actual requests) + if !is_preflight && let Some(ref expose_headers) = rule.expose_headers { + let expose_headers_str = expose_headers.iter().map(|h| h.as_str()).collect::>().join(", "); + if let Ok(expose_value) = HeaderValue::from_str(&expose_headers_str) { + response_headers.insert(cors::response::ACCESS_CONTROL_EXPOSE_HEADERS, expose_value); + } + } + + // Access-Control-Max-Age (for preflight requests) + if is_preflight + && let Some(max_age) = rule.max_age_seconds + && let Ok(max_age_value) = HeaderValue::from_str(&max_age.to_string()) + { + response_headers.insert(cors::response::ACCESS_CONTROL_MAX_AGE, max_age_value); + } + + return Some(response_headers); + } + + None // No matching rule found +} +/// Check if an origin matches a pattern (supports wildcards like https://*.example.com) +fn matches_origin_pattern(pattern: &str, origin: &str) -> bool { + // Simple wildcard matching: * matches any sequence + if pattern.contains('*') { + let pattern_parts: Vec<&str> = pattern.split('*').collect(); + if pattern_parts.len() == 2 { + origin.starts_with(pattern_parts[0]) && origin.ends_with(pattern_parts[1]) + } else { + false + } + } else { + pattern == origin + } +} + +/// Wrap S3Response with CORS headers if needed +/// This function performs a lightweight check first to avoid unnecessary CORS processing +/// for non-CORS requests (requests without Origin header) +async fn wrap_response_with_cors(bucket: &str, method: &http::Method, headers: &HeaderMap, output: T) -> S3Response { + let mut response = S3Response::new(output); + + // Quick check: only process CORS if Origin header is present + if needs_cors_processing(headers) + && let Some(cors_headers) = apply_cors_headers(bucket, method, headers).await + { + for (key, value) in cors_headers.iter() { + response.headers.insert(key, value.clone()); + } + } + + response +} + #[async_trait::async_trait] impl S3 for FS { #[instrument( @@ -2598,7 +2798,8 @@ impl S3 for FS { cache_key, response_content_length, total_duration, optimal_buffer_size ); - let result = Ok(S3Response::new(output)); + let response = wrap_response_with_cors(&bucket, &req.method, &req.headers, output).await; + let result = Ok(response); let _ = helper.complete(&result); result } @@ -2843,7 +3044,14 @@ impl S3 for FS { let version_id = req.input.version_id.clone().unwrap_or_default(); helper = helper.object(event_info).version_id(version_id); - let result = Ok(S3Response::new(output)); + // NOTE ON CORS: + // Bucket-level CORS headers are intentionally applied only for object retrieval + // operations (GET/HEAD) via `wrap_response_with_cors`. Other S3 operations that + // interact with objects (PUT/POST/DELETE/LIST, etc.) rely on the system-level + // CORS layer instead. In case both are applicable, this bucket-level CORS logic + // takes precedence for these read operations. + let response = wrap_response_with_cors(&bucket, &req.method, &req.headers, output).await; + let result = Ok(response); let _ = helper.complete(&result); result @@ -4713,6 +4921,82 @@ impl S3 for FS { Ok(S3Response::new(DeleteBucketTaggingOutput {})) } + #[instrument(level = "debug", skip(self))] + async fn get_bucket_cors(&self, req: S3Request) -> S3Result> { + let bucket = req.input.bucket.clone(); + // check bucket exists. + let _bucket = self + .head_bucket(req.map_input(|input| HeadBucketInput { + bucket: input.bucket, + expected_bucket_owner: None, + })) + .await?; + + let cors_configuration = match metadata_sys::get_cors_config(&bucket).await { + Ok((config, _)) => config, + Err(err) => { + if err == StorageError::ConfigNotFound { + return Err(S3Error::with_message( + S3ErrorCode::NoSuchCORSConfiguration, + "The CORS configuration does not exist".to_string(), + )); + } + warn!("get_cors_config err {:?}", &err); + return Err(ApiError::from(err).into()); + } + }; + + Ok(S3Response::new(GetBucketCorsOutput { + cors_rules: Some(cors_configuration.cors_rules), + })) + } + + #[instrument(level = "debug", skip(self))] + async fn put_bucket_cors(&self, req: S3Request) -> S3Result> { + let PutBucketCorsInput { + bucket, + cors_configuration, + .. + } = req.input; + + let Some(store) = new_object_layer_fn() else { + return Err(S3Error::with_message(S3ErrorCode::InternalError, "Not init".to_string())); + }; + + store + .get_bucket_info(&bucket, &BucketOptions::default()) + .await + .map_err(ApiError::from)?; + + let data = try_!(serialize(&cors_configuration)); + + metadata_sys::update(&bucket, BUCKET_CORS_CONFIG, data) + .await + .map_err(ApiError::from)?; + + Ok(S3Response::new(PutBucketCorsOutput::default())) + } + + #[instrument(level = "debug", skip(self))] + async fn delete_bucket_cors(&self, req: S3Request) -> S3Result> { + let DeleteBucketCorsInput { bucket, .. } = req.input; + + let Some(store) = new_object_layer_fn() else { + return Err(S3Error::with_message(S3ErrorCode::InternalError, "Not init".to_string())); + }; + + store + .get_bucket_info(&bucket, &BucketOptions::default()) + .await + .map_err(ApiError::from)?; + + metadata_sys::delete(&bucket, BUCKET_CORS_CONFIG) + .await + .map_err(ApiError::from)?; + + Ok(S3Response::new(DeleteBucketCorsOutput {})) + } + #[instrument(level = "debug", skip(self, req))] async fn put_object_tagging(&self, req: S3Request) -> S3Result> { let start_time = std::time::Instant::now(); @@ -6557,4 +6841,201 @@ mod tests { assert!(filtered_version_marker.is_some()); assert_eq!(filtered_version_marker.unwrap(), "null"); } + + #[test] + fn test_matches_origin_pattern_exact_match() { + // Test exact match + assert!(matches_origin_pattern("https://example.com", "https://example.com")); + assert!(matches_origin_pattern("http://localhost:3000", "http://localhost:3000")); + assert!(!matches_origin_pattern("https://example.com", "https://other.com")); + } + + #[test] + fn test_matches_origin_pattern_wildcard() { + // Test wildcard pattern matching (S3 CORS supports * as subdomain wildcard) + assert!(matches_origin_pattern("https://*.example.com", "https://app.example.com")); + assert!(matches_origin_pattern("https://*.example.com", "https://api.example.com")); + assert!(matches_origin_pattern("https://*.example.com", "https://subdomain.example.com")); + + // Test wildcard at start (matches any domain) + assert!(matches_origin_pattern("https://*", "https://example.com")); + assert!(matches_origin_pattern("https://*", "https://any-domain.com")); + + // Test wildcard at end (matches any protocol) + assert!(matches_origin_pattern("*://example.com", "https://example.com")); + assert!(matches_origin_pattern("*://example.com", "http://example.com")); + + // Test invalid wildcard patterns (should not match) + assert!(!matches_origin_pattern("https://*.*.com", "https://app.example.com")); // Multiple wildcards (invalid pattern) + // Note: "https://*example.com" actually matches "https://app.example.com" with our current implementation + // because it splits on * and checks starts_with/ends_with. This is a limitation but acceptable + // for S3 CORS which typically uses patterns like "https://*.example.com" + } + + #[test] + fn test_matches_origin_pattern_no_wildcard() { + // Test patterns without wildcards + assert!(matches_origin_pattern("https://example.com", "https://example.com")); + assert!(!matches_origin_pattern("https://example.com", "https://example.org")); + assert!(!matches_origin_pattern("http://example.com", "https://example.com")); // Different protocol + } + + #[test] + fn test_matches_origin_pattern_edge_cases() { + // Test edge cases + assert!(!matches_origin_pattern("", "https://example.com")); // Empty pattern + assert!(!matches_origin_pattern("https://example.com", "")); // Empty origin + assert!(matches_origin_pattern("", "")); // Both empty + assert!(!matches_origin_pattern("https://example.com", "http://example.com")); // Protocol mismatch + } + + #[test] + fn test_cors_headers_validation() { + use http::HeaderMap; + + // Test case 1: Validate header name case-insensitivity + let mut headers = HeaderMap::new(); + headers.insert("access-control-request-headers", "Content-Type,X-Custom-Header".parse().unwrap()); + + let req_headers_str = headers + .get("access-control-request-headers") + .and_then(|v| v.to_str().ok()) + .unwrap(); + let req_headers: Vec = req_headers_str.split(',').map(|s| s.trim().to_lowercase()).collect(); + + // Headers should be lowercased for comparison + assert_eq!(req_headers, vec!["content-type", "x-custom-header"]); + + // Test case 2: Wildcard matching + let allowed_headers = ["*".to_string()]; + let all_allowed = req_headers.iter().all(|req_header| { + allowed_headers + .iter() + .any(|allowed| allowed.to_lowercase() == "*" || allowed.to_lowercase() == *req_header) + }); + assert!(all_allowed, "Wildcard should allow all headers"); + + // Test case 3: Specific header matching + let allowed_headers = ["content-type".to_string(), "x-custom-header".to_string()]; + let all_allowed = req_headers + .iter() + .all(|req_header| allowed_headers.iter().any(|allowed| allowed.to_lowercase() == *req_header)); + assert!(all_allowed, "All requested headers should be allowed"); + + // Test case 4: Disallowed header + let req_headers = ["content-type".to_string(), "x-forbidden-header".to_string()]; + let allowed_headers = ["content-type".to_string()]; + let all_allowed = req_headers + .iter() + .all(|req_header| allowed_headers.iter().any(|allowed| allowed.to_lowercase() == *req_header)); + assert!(!all_allowed, "Forbidden header should not be allowed"); + } + + #[test] + fn test_cors_response_headers_structure() { + use http::{HeaderMap, HeaderValue}; + + let mut cors_headers = HeaderMap::new(); + + // Simulate building CORS response headers + let origin = "https://example.com"; + let methods = ["GET", "PUT", "POST"]; + let allowed_headers = ["Content-Type", "Authorization"]; + let expose_headers = ["ETag", "x-amz-version-id"]; + let max_age = 3600; + + // Add headers + cors_headers.insert("access-control-allow-origin", HeaderValue::from_str(origin).unwrap()); + cors_headers.insert("vary", HeaderValue::from_static("Origin")); + + let methods_str = methods.join(", "); + cors_headers.insert("access-control-allow-methods", HeaderValue::from_str(&methods_str).unwrap()); + + let headers_str = allowed_headers.join(", "); + cors_headers.insert("access-control-allow-headers", HeaderValue::from_str(&headers_str).unwrap()); + + let expose_str = expose_headers.join(", "); + cors_headers.insert("access-control-expose-headers", HeaderValue::from_str(&expose_str).unwrap()); + + cors_headers.insert("access-control-max-age", HeaderValue::from_str(&max_age.to_string()).unwrap()); + + // Verify all headers are present + assert_eq!(cors_headers.get("access-control-allow-origin").unwrap(), origin); + assert_eq!(cors_headers.get("vary").unwrap(), "Origin"); + assert_eq!(cors_headers.get("access-control-allow-methods").unwrap(), "GET, PUT, POST"); + assert_eq!(cors_headers.get("access-control-allow-headers").unwrap(), "Content-Type, Authorization"); + assert_eq!(cors_headers.get("access-control-expose-headers").unwrap(), "ETag, x-amz-version-id"); + assert_eq!(cors_headers.get("access-control-max-age").unwrap(), "3600"); + } + + #[test] + fn test_cors_preflight_vs_actual_request() { + use http::Method; + + // Test that we can distinguish preflight from actual requests + let preflight_method = Method::OPTIONS; + let actual_method = Method::PUT; + + assert_eq!(preflight_method, Method::OPTIONS); + assert_ne!(actual_method, Method::OPTIONS); + + // Preflight should check Access-Control-Request-Method + // Actual request should use the actual method + let is_preflight_1 = preflight_method == Method::OPTIONS; + let is_preflight_2 = actual_method == Method::OPTIONS; + + assert!(is_preflight_1); + assert!(!is_preflight_2); + } + + #[tokio::test] + async fn test_apply_cors_headers_no_origin() { + // Test when no Origin header is present + let headers = HeaderMap::new(); + let method = http::Method::GET; + + // Should return None when no origin header + let result = apply_cors_headers("test-bucket", &method, &headers).await; + assert!(result.is_none(), "Should return None when no Origin header"); + } + + #[tokio::test] + async fn test_apply_cors_headers_no_cors_config() { + // Test when bucket has no CORS configuration + let mut headers = HeaderMap::new(); + headers.insert("origin", "https://example.com".parse().unwrap()); + let method = http::Method::GET; + + // Should return None when no CORS config exists + // Note: This test may fail if test-bucket actually has CORS config + // In a real scenario, we'd use a mock or ensure the bucket doesn't exist + let _result = apply_cors_headers("non-existent-bucket-for-testing", &method, &headers).await; + // Result depends on whether bucket exists and has CORS config + // This is expected behavior - we just verify it doesn't panic + } + + #[tokio::test] + async fn test_apply_cors_headers_unsupported_method() { + // Test with unsupported HTTP method + let mut headers = HeaderMap::new(); + headers.insert("origin", "https://example.com".parse().unwrap()); + let method = http::Method::PATCH; // Unsupported method + + let result = apply_cors_headers("test-bucket", &method, &headers).await; + assert!(result.is_none(), "Should return None for unsupported methods"); + } + + #[test] + fn test_matches_origin_pattern_complex_wildcards() { + // Test more complex wildcard scenarios + assert!(matches_origin_pattern("https://*.example.com", "https://sub.example.com")); + // Note: "https://*.example.com" matches "https://api.sub.example.com" with our implementation + // because it only checks starts_with and ends_with. Real S3 might be more strict. + + // Test wildcard in middle position + // Our implementation allows this, but it's not standard S3 CORS pattern + // The pattern "https://example.*.com" splits to ["https://example.", ".com"] + // and "https://example.sub.com" matches because it starts with "https://example." and ends with ".com" + // This is acceptable for our use case as S3 CORS typically uses "https://*.example.com" format + } } From 18b22eedd93e3653e297b801a49cf2448873412e Mon Sep 17 00:00:00 2001 From: LeonWang0735 Date: Fri, 16 Jan 2026 08:12:05 +0800 Subject: [PATCH 21/22] Fix:correctly handle versioning obj (#1521) --- crates/ecstore/src/disk/local.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/ecstore/src/disk/local.rs b/crates/ecstore/src/disk/local.rs index 7632a34d..23f78d3b 100644 --- a/crates/ecstore/src/disk/local.rs +++ b/crates/ecstore/src/disk/local.rs @@ -844,7 +844,11 @@ impl LocalDisk { self.write_all_internal(&tmp_file_path, InternalBuf::Ref(buf), sync, &tmp_volume_dir) .await?; - rename_all(tmp_file_path, file_path, volume_dir).await + rename_all(tmp_file_path, &file_path, volume_dir).await?; + + // Invalidate cache after successful write + get_global_file_cache().invalidate(&file_path).await; + Ok(()) } // write_all_public for trail From ed4329d50caefacb67838840eb7f694c11d9f038 Mon Sep 17 00:00:00 2001 From: LeonWang0735 Date: Fri, 16 Jan 2026 10:07:48 +0800 Subject: [PATCH 22/22] fix:correctly handle copy object (#1512) Co-authored-by: loverustfs --- rustfs/src/storage/ecfs.rs | 50 +++++++++++++++++++++++++++++--------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/rustfs/src/storage/ecfs.rs b/rustfs/src/storage/ecfs.rs index a1981d07..9f584d60 100644 --- a/rustfs/src/storage/ecfs.rs +++ b/rustfs/src/storage/ecfs.rs @@ -117,10 +117,9 @@ use rustfs_utils::{ AMZ_BUCKET_REPLICATION_STATUS, AMZ_CHECKSUM_MODE, AMZ_CHECKSUM_TYPE, headers::{ AMZ_DECODED_CONTENT_LENGTH, AMZ_OBJECT_TAGGING, AMZ_RESTORE_EXPIRY_DAYS, AMZ_RESTORE_REQUEST_DATE, - RESERVED_METADATA_PREFIX_LOWER, + RESERVED_METADATA_PREFIX, RESERVED_METADATA_PREFIX_LOWER, }, }, - obj::extract_user_defined_metadata, path::{is_dir_object, path_join_buf}, }; use rustfs_zip::CompressionFormat; @@ -1075,6 +1074,7 @@ impl S3 for FS { metadata, copy_source_if_match, copy_source_if_none_match, + content_type, .. } = req.input.clone(); let (src_bucket, src_key, version_id) = match copy_source { @@ -1090,6 +1090,19 @@ impl S3 for FS { validate_object_key(&src_key, "COPY (source)")?; validate_object_key(&key, "COPY (dest)")?; + // AWS S3 allows self-copy when metadata directive is REPLACE (used to update metadata in-place). + // Reject only when the directive is not REPLACE. + if metadata_directive.as_ref().map(|d| d.as_str()) != Some(MetadataDirective::REPLACE) + && src_bucket == bucket + && src_key == key + { + error!("Rejected self-copy operation: bucket={}, key={}", bucket, key); + return Err(s3_error!( + InvalidRequest, + "Cannot copy an object to itself. Source and destination must be different." + )); + } + // warn!("copy_object {}/{}, to {}/{}", &src_bucket, &src_key, &bucket, &key); let mut src_opts = copy_src_opts(&src_bucket, &src_key, &req.headers).map_err(ApiError::from)?; @@ -1214,12 +1227,35 @@ impl S3 for FS { src_info .user_defined .remove(&format!("{RESERVED_METADATA_PREFIX_LOWER}compression")); + src_info + .user_defined + .remove(&format!("{RESERVED_METADATA_PREFIX}compression")); src_info .user_defined .remove(&format!("{RESERVED_METADATA_PREFIX_LOWER}actual-size")); + src_info + .user_defined + .remove(&format!("{RESERVED_METADATA_PREFIX}actual-size")); src_info .user_defined .remove(&format!("{RESERVED_METADATA_PREFIX_LOWER}compression-size")); + src_info + .user_defined + .remove(&format!("{RESERVED_METADATA_PREFIX}compression-size")); + } + + // Handle MetadataDirective REPLACE: replace user metadata while preserving system metadata. + // System metadata (compression, encryption) is added after this block to ensure + // it's not cleared by the REPLACE operation. + if metadata_directive.as_ref().map(|d| d.as_str()) == Some(MetadataDirective::REPLACE) { + src_info.user_defined.clear(); + if let Some(metadata) = metadata { + src_info.user_defined.extend(metadata); + } + if let Some(ct) = content_type { + src_info.content_type = Some(ct.clone()); + src_info.user_defined.insert("content-type".to_string(), ct); + } } let mut reader = HashReader::new(reader, length, actual_size, None, None, false).map_err(ApiError::from)?; @@ -1304,16 +1340,6 @@ impl S3 for FS { .insert("x-amz-server-side-encryption-customer-key-md5".to_string(), sse_md5.clone()); } - if metadata_directive.as_ref().map(|d| d.as_str()) == Some(MetadataDirective::REPLACE) { - let src_user_defined = extract_user_defined_metadata(&src_info.user_defined); - src_user_defined.keys().for_each(|k| { - src_info.user_defined.remove(k); - }); - if let Some(metadata) = metadata { - src_info.user_defined.extend(metadata); - } - } - // check quota for copy operation if let Some(metadata_sys) = rustfs_ecstore::bucket::metadata_sys::GLOBAL_BucketMetadataSys.get() { let quota_checker = QuotaChecker::new(metadata_sys.clone());