fft-manager/Cargo.lock

2250 lines
54 KiB
Text
Raw Permalink Normal View History

2024-06-25 19:34:41 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2025-01-15 23:51:25 +01:00
version = 4
2024-06-25 19:34:41 +02:00
[[package]]
name = "addr2line"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2024-06-26 02:17:02 +02:00
[[package]]
name = "aead"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [
"crypto-common",
"generic-array",
]
[[package]]
name = "aes"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
[[package]]
name = "aes-gcm"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2024-06-25 19:34:41 +02:00
[[package]]
name = "autocfg"
2024-09-27 20:07:55 +02:00
version = "1.4.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2024-06-25 19:34:41 +02:00
[[package]]
name = "axum"
2025-08-03 21:25:18 +02:00
version = "0.8.4"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
2024-06-25 19:34:41 +02:00
dependencies = [
"axum-core",
"axum-macros",
"bytes",
2025-01-15 23:51:25 +01:00
"form_urlencoded",
2024-06-25 19:34:41 +02:00
"futures-util",
"http",
"http-body",
"http-body-util",
"hyper",
"hyper-util",
"itoa",
"matchit",
"memchr",
"mime",
"multer",
"percent-encoding",
"pin-project-lite",
"rustversion",
"serde",
"serde_json",
"serde_path_to_error",
"serde_urlencoded",
2025-01-15 23:51:25 +01:00
"sync_wrapper",
2024-06-25 19:34:41 +02:00
"tokio",
"tower",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "axum-core"
2025-08-03 21:25:18 +02:00
version = "0.5.2"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
2024-06-25 19:34:41 +02:00
dependencies = [
"bytes",
2025-08-03 21:25:18 +02:00
"futures-core",
2024-06-25 19:34:41 +02:00
"http",
"http-body",
"http-body-util",
"mime",
"pin-project-lite",
"rustversion",
2025-01-15 23:51:25 +01:00
"sync_wrapper",
2024-06-25 19:34:41 +02:00
"tower-layer",
"tower-service",
"tracing",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "axum-extra"
2025-08-03 21:25:18 +02:00
version = "0.10.1"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "45bf463831f5131b7d3c756525b305d40f1185b688565648a92e1392ca35713d"
2024-06-26 02:17:02 +02:00
dependencies = [
"axum",
"axum-core",
"bytes",
"cookie",
"futures-util",
"http",
"http-body",
"http-body-util",
"mime",
"pin-project-lite",
2025-08-03 21:25:18 +02:00
"rustversion",
2024-06-26 02:17:02 +02:00
"serde",
"tower",
"tower-layer",
"tower-service",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "axum-macros"
2025-01-15 23:51:25 +01:00
version = "0.5.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
2024-06-25 19:34:41 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "backtrace"
version = "0.3.71"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-06-25 19:34:41 +02:00
[[package]]
name = "bitflags"
2025-08-03 21:25:18 +02:00
version = "2.9.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "bumpalo"
version = "3.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2024-06-25 19:34:41 +02:00
[[package]]
name = "bytes"
2025-08-03 21:25:18 +02:00
version = "1.10.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
2024-06-25 19:34:41 +02:00
[[package]]
name = "cc"
2025-08-03 21:25:18 +02:00
version = "1.2.31"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2"
2024-09-27 20:07:55 +02:00
dependencies = [
"shlex",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "cfg-if"
2025-08-03 21:25:18 +02:00
version = "1.0.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
2024-09-27 20:07:55 +02:00
[[package]]
name = "color-eyre"
2025-08-03 21:25:18 +02:00
version = "0.6.5"
2024-09-27 20:07:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "e5920befb47832a6d61ee3a3a846565cfa39b331331e68a3b1d1116630f2f26d"
2024-09-27 20:07:55 +02:00
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
2025-08-03 21:25:18 +02:00
version = "0.3.0"
2024-09-27 20:07:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "b8b88ea9df13354b55bc7234ebcce36e6ef896aca2e42a15de9e10edce01b427"
2024-09-27 20:07:55 +02:00
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "cookie"
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
dependencies = [
"aes-gcm",
"base64",
"percent-encoding",
2025-08-03 21:25:18 +02:00
"rand 0.8.5",
2024-06-26 02:17:02 +02:00
"subtle",
"time",
"version_check",
]
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2024-09-27 20:07:55 +02:00
version = "0.8.7"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
2024-06-26 02:17:02 +02:00
[[package]]
name = "cpufeatures"
2025-08-03 21:25:18 +02:00
version = "0.2.17"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
2024-06-26 02:17:02 +02:00
dependencies = [
"libc",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
2025-08-03 21:25:18 +02:00
"rand_core 0.6.4",
2024-06-26 02:17:02 +02:00
"typenum",
]
[[package]]
name = "ctr"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
dependencies = [
"cipher",
]
[[package]]
name = "deranged"
2025-08-03 21:25:18 +02:00
version = "0.4.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
2024-06-26 02:17:02 +02:00
dependencies = [
"powerfmt",
]
2025-01-15 23:51:25 +01:00
[[package]]
name = "displaydoc"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "encoding_rs"
2025-01-15 23:51:25 +01:00
version = "0.8.35"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
2024-06-25 19:34:41 +02:00
dependencies = [
"cfg-if",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "equivalent"
2025-08-03 21:25:18 +02:00
version = "1.0.2"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
2024-06-26 02:17:02 +02:00
[[package]]
name = "errno"
2025-08-03 21:25:18 +02:00
version = "0.3.13"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
2024-06-26 02:17:02 +02:00
dependencies = [
"libc",
2025-01-15 23:51:25 +01:00
"windows-sys 0.59.0",
2024-06-26 02:17:02 +02:00
]
2024-09-27 20:07:55 +02:00
[[package]]
name = "eyre"
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
dependencies = [
"indenter",
"once_cell",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "fastrand"
2025-01-15 23:51:25 +01:00
version = "2.3.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
[[package]]
name = "fft-manager"
version = "0.1.0"
dependencies = [
"axum",
"axum-extra",
"base64",
"color-eyre",
"http",
"pct-str",
2025-08-03 21:25:18 +02:00
"rand 0.9.2",
2025-01-15 23:51:25 +01:00
"reqwest",
"serde",
"serde_json",
"time",
"tokio",
"tower-http",
"tracing",
"tracing-subscriber",
]
2024-06-26 02:17:02 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2024-06-26 02:17:02 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2024-06-25 19:34:41 +02:00
[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2025-01-15 23:51:25 +01:00
version = "0.3.31"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
2024-06-25 19:34:41 +02:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2025-01-15 23:51:25 +01:00
version = "0.3.31"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "futures-sink"
2025-01-15 23:51:25 +01:00
version = "0.3.31"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2024-06-26 02:17:02 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "futures-task"
2025-01-15 23:51:25 +01:00
version = "0.3.31"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2024-06-25 19:34:41 +02:00
[[package]]
name = "futures-util"
2025-01-15 23:51:25 +01:00
version = "0.3.31"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2024-06-25 19:34:41 +02:00
dependencies = [
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2025-08-03 21:25:18 +02:00
version = "0.2.16"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
2024-06-26 02:17:02 +02:00
dependencies = [
"cfg-if",
"libc",
2025-08-03 21:25:18 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
dependencies = [
"cfg-if",
"libc",
"r-efi",
"wasi 0.14.2+wasi-0.2.4",
2024-06-26 02:17:02 +02:00
]
[[package]]
name = "ghash"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
dependencies = [
"opaque-debug",
"polyval",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "gimli"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2024-06-26 02:17:02 +02:00
[[package]]
name = "h2"
2025-08-03 21:25:18 +02:00
version = "0.4.11"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
2024-06-26 02:17:02 +02:00
dependencies = [
"atomic-waker",
"bytes",
"fnv",
"futures-core",
"futures-sink",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
2025-08-03 21:25:18 +02:00
version = "0.15.4"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
2024-06-25 19:34:41 +02:00
[[package]]
name = "http"
2025-08-03 21:25:18 +02:00
version = "1.3.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
2024-06-25 19:34:41 +02:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2024-09-27 20:07:55 +02:00
version = "1.0.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2024-06-25 19:34:41 +02:00
dependencies = [
"bytes",
"http",
]
[[package]]
name = "http-body-util"
2025-08-03 21:25:18 +02:00
version = "0.1.3"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
2024-06-25 19:34:41 +02:00
dependencies = [
"bytes",
2025-08-03 21:25:18 +02:00
"futures-core",
2024-06-25 19:34:41 +02:00
"http",
"http-body",
"pin-project-lite",
]
[[package]]
name = "httparse"
2025-08-03 21:25:18 +02:00
version = "1.10.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2024-06-25 19:34:41 +02:00
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "hyper"
2025-08-03 21:25:18 +02:00
version = "1.6.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
2024-06-25 19:34:41 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
2024-06-26 02:17:02 +02:00
"h2",
2024-06-25 19:34:41 +02:00
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"smallvec",
"tokio",
2024-06-26 02:17:02 +02:00
"want",
]
[[package]]
name = "hyper-rustls"
2025-08-03 21:25:18 +02:00
version = "0.27.7"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
2024-06-26 02:17:02 +02:00
dependencies = [
"http",
"hyper",
"hyper-util",
"rustls",
"rustls-pki-types",
"tokio",
"tokio-rustls",
"tower-service",
]
[[package]]
name = "hyper-tls"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
dependencies = [
"bytes",
"http-body-util",
"hyper",
"hyper-util",
"native-tls",
"tokio",
"tokio-native-tls",
"tower-service",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "hyper-util"
2025-08-03 21:25:18 +02:00
version = "0.1.16"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
2024-06-25 19:34:41 +02:00
dependencies = [
2025-08-03 21:25:18 +02:00
"base64",
2024-06-25 19:34:41 +02:00
"bytes",
2024-06-26 02:17:02 +02:00
"futures-channel",
2025-08-03 21:25:18 +02:00
"futures-core",
2024-06-25 19:34:41 +02:00
"futures-util",
"http",
"http-body",
"hyper",
2025-08-03 21:25:18 +02:00
"ipnet",
"libc",
"percent-encoding",
2024-06-25 19:34:41 +02:00
"pin-project-lite",
2024-06-26 02:17:02 +02:00
"socket2",
2025-08-03 21:25:18 +02:00
"system-configuration",
2024-06-25 19:34:41 +02:00
"tokio",
2024-06-26 02:17:02 +02:00
"tower-service",
"tracing",
2025-08-03 21:25:18 +02:00
"windows-registry",
2024-06-26 02:17:02 +02:00
]
2025-01-15 23:51:25 +01:00
[[package]]
name = "icu_collections"
2025-08-03 21:25:18 +02:00
version = "2.0.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
2025-01-15 23:51:25 +01:00
dependencies = [
"displaydoc",
2025-08-03 21:25:18 +02:00
"potential_utf",
2025-01-15 23:51:25 +01:00
"yoke",
"zerofrom",
"zerovec",
]
[[package]]
2025-08-03 21:25:18 +02:00
name = "icu_locale_core"
version = "2.0.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
2025-01-15 23:51:25 +01:00
dependencies = [
"displaydoc",
"litemap",
"tinystr",
"writeable",
"zerovec",
]
[[package]]
name = "icu_normalizer"
2025-08-03 21:25:18 +02:00
version = "2.0.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
2025-01-15 23:51:25 +01:00
dependencies = [
"displaydoc",
"icu_collections",
"icu_normalizer_data",
"icu_properties",
"icu_provider",
"smallvec",
"zerovec",
]
[[package]]
name = "icu_normalizer_data"
2025-08-03 21:25:18 +02:00
version = "2.0.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
2025-01-15 23:51:25 +01:00
[[package]]
name = "icu_properties"
2025-08-03 21:25:18 +02:00
version = "2.0.1"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
2025-01-15 23:51:25 +01:00
dependencies = [
"displaydoc",
"icu_collections",
2025-08-03 21:25:18 +02:00
"icu_locale_core",
2025-01-15 23:51:25 +01:00
"icu_properties_data",
"icu_provider",
2025-08-03 21:25:18 +02:00
"potential_utf",
"zerotrie",
2025-01-15 23:51:25 +01:00
"zerovec",
]
[[package]]
name = "icu_properties_data"
2025-08-03 21:25:18 +02:00
version = "2.0.1"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
2025-01-15 23:51:25 +01:00
[[package]]
name = "icu_provider"
2025-08-03 21:25:18 +02:00
version = "2.0.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
2025-01-15 23:51:25 +01:00
dependencies = [
"displaydoc",
2025-08-03 21:25:18 +02:00
"icu_locale_core",
2025-01-15 23:51:25 +01:00
"stable_deref_trait",
"tinystr",
"writeable",
"yoke",
"zerofrom",
2025-08-03 21:25:18 +02:00
"zerotrie",
2025-01-15 23:51:25 +01:00
"zerovec",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "idna"
2025-01-15 23:51:25 +01:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
dependencies = [
"idna_adapter",
"smallvec",
"utf8_iter",
]
[[package]]
name = "idna_adapter"
2025-08-03 21:25:18 +02:00
version = "1.2.1"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2024-06-26 02:17:02 +02:00
dependencies = [
2025-01-15 23:51:25 +01:00
"icu_normalizer",
"icu_properties",
2024-06-26 02:17:02 +02:00
]
2024-09-27 20:07:55 +02:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2024-06-26 02:17:02 +02:00
[[package]]
name = "indexmap"
2025-08-03 21:25:18 +02:00
version = "2.10.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
2024-06-26 02:17:02 +02:00
dependencies = [
"equivalent",
"hashbrown",
]
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
2024-06-25 19:34:41 +02:00
]
2025-08-03 21:25:18 +02:00
[[package]]
name = "io-uring"
version = "0.7.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
dependencies = [
"bitflags",
"cfg-if",
"libc",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "ipnet"
2025-08-03 21:25:18 +02:00
version = "2.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
[[package]]
name = "iri-string"
version = "0.7.8"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
dependencies = [
"memchr",
"serde",
]
2024-06-26 02:17:02 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "itoa"
2025-08-03 21:25:18 +02:00
version = "1.0.15"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "js-sys"
2025-01-15 23:51:25 +01:00
version = "0.3.77"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
2024-06-26 02:17:02 +02:00
dependencies = [
2025-01-15 23:51:25 +01:00
"once_cell",
2024-06-26 02:17:02 +02:00
"wasm-bindgen",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "lazy_static"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "libc"
2025-08-03 21:25:18 +02:00
version = "0.2.174"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "linux-raw-sys"
2025-01-15 23:51:25 +01:00
version = "0.4.15"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
[[package]]
name = "litemap"
2025-08-03 21:25:18 +02:00
version = "0.8.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2024-06-26 02:17:02 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "lock_api"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2025-08-03 21:25:18 +02:00
version = "0.4.27"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
2024-06-25 19:34:41 +02:00
[[package]]
name = "matchit"
2025-01-15 23:51:25 +01:00
version = "0.8.4"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
2024-06-25 19:34:41 +02:00
[[package]]
name = "memchr"
2025-08-03 21:25:18 +02:00
version = "2.7.5"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2024-06-25 19:34:41 +02:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "miniz_oxide"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
dependencies = [
"adler",
]
[[package]]
name = "mio"
2025-08-03 21:25:18 +02:00
version = "1.0.4"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2024-06-25 19:34:41 +02:00
dependencies = [
"libc",
2025-08-03 21:25:18 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys 0.59.0",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "multer"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
dependencies = [
"bytes",
"encoding_rs",
"futures-util",
"http",
"httparse",
"memchr",
"mime",
"spin",
"version_check",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "native-tls"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
dependencies = [
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2024-06-25 19:34:41 +02:00
[[package]]
name = "object"
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2025-08-03 21:25:18 +02:00
version = "1.21.3"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "opaque-debug"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
[[package]]
name = "openssl"
2025-01-15 23:51:25 +01:00
version = "0.10.68"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
2024-06-26 02:17:02 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"bitflags",
2024-06-26 02:17:02 +02:00
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "openssl-probe"
2025-08-03 21:25:18 +02:00
version = "0.1.6"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2024-06-26 02:17:02 +02:00
[[package]]
name = "openssl-sys"
2025-01-15 23:51:25 +01:00
version = "0.9.104"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
2024-06-26 02:17:02 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2024-09-27 20:07:55 +02:00
[[package]]
name = "owo-colors"
2025-08-03 21:25:18 +02:00
version = "4.2.2"
2024-09-27 20:07:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
2024-09-27 20:07:55 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "parking_lot"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2024-09-27 20:07:55 +02:00
"windows-targets",
2024-06-25 19:34:41 +02:00
]
[[package]]
2024-09-27 20:07:55 +02:00
name = "pct-str"
version = "2.0.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "bf1bdcc492c285a50bed60860dfa00b50baf1f60c73c7d6b435b01a2a11fd6ff"
2024-06-25 19:34:41 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"thiserror",
"utf8-decode",
2024-06-25 19:34:41 +02:00
]
[[package]]
2024-09-27 20:07:55 +02:00
name = "percent-encoding"
version = "2.3.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2024-06-26 02:17:02 +02:00
[[package]]
name = "pin-project-lite"
2025-01-15 23:51:25 +01:00
version = "0.2.16"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2024-06-26 02:17:02 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2024-09-27 20:07:55 +02:00
version = "0.3.31"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2024-06-26 02:17:02 +02:00
[[package]]
name = "polyval"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2025-08-03 21:25:18 +02:00
[[package]]
name = "potential_utf"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
dependencies = [
"zerovec",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "ppv-lite86"
2025-08-03 21:25:18 +02:00
version = "0.2.21"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2024-09-27 20:07:55 +02:00
dependencies = [
"zerocopy",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "proc-macro2"
2025-08-03 21:25:18 +02:00
version = "1.0.95"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2024-06-26 02:17:02 +02:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2025-08-03 21:25:18 +02:00
version = "1.0.40"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2024-06-26 02:17:02 +02:00
dependencies = [
"proc-macro2",
]
2025-08-03 21:25:18 +02:00
[[package]]
name = "r-efi"
version = "5.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2024-06-26 02:17:02 +02:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2025-08-03 21:25:18 +02:00
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
[[package]]
name = "rand"
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",
2024-06-26 02:17:02 +02:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2025-08-03 21:25:18 +02:00
"rand_core 0.6.4",
]
[[package]]
name = "rand_chacha"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
dependencies = [
"ppv-lite86",
"rand_core 0.9.3",
2024-06-26 02:17:02 +02:00
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2025-08-03 21:25:18 +02:00
"getrandom 0.2.16",
]
[[package]]
name = "rand_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
dependencies = [
"getrandom 0.3.3",
2024-06-26 02:17:02 +02:00
]
[[package]]
name = "redox_syscall"
2025-01-15 23:51:25 +01:00
version = "0.5.8"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2024-06-26 02:17:02 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"bitflags",
2024-06-26 02:17:02 +02:00
]
[[package]]
name = "reqwest"
2025-08-03 21:25:18 +02:00
version = "0.12.22"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
2024-06-26 02:17:02 +02:00
dependencies = [
"base64",
"bytes",
"encoding_rs",
"futures-core",
"h2",
"http",
"http-body",
"http-body-util",
"hyper",
"hyper-rustls",
"hyper-tls",
"hyper-util",
"js-sys",
"log",
"mime",
"native-tls",
"percent-encoding",
"pin-project-lite",
2025-08-03 21:25:18 +02:00
"rustls-pki-types",
2024-06-26 02:17:02 +02:00
"serde",
"serde_json",
"serde_urlencoded",
2025-01-15 23:51:25 +01:00
"sync_wrapper",
2024-06-26 02:17:02 +02:00
"tokio",
"tokio-native-tls",
2025-01-15 23:51:25 +01:00
"tower",
2025-08-03 21:25:18 +02:00
"tower-http",
2024-06-26 02:17:02 +02:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "ring"
2025-08-03 21:25:18 +02:00
version = "0.17.14"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2024-06-25 19:34:41 +02:00
dependencies = [
2024-06-26 02:17:02 +02:00
"cc",
"cfg-if",
2025-08-03 21:25:18 +02:00
"getrandom 0.2.16",
2024-06-26 02:17:02 +02:00
"libc",
"untrusted",
"windows-sys 0.52.0",
2024-06-25 19:34:41 +02:00
]
[[package]]
2024-06-26 02:17:02 +02:00
name = "rustc-demangle"
version = "0.1.24"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-26 02:17:02 +02:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2024-06-25 19:34:41 +02:00
[[package]]
2024-06-26 02:17:02 +02:00
name = "rustix"
2025-01-15 23:51:25 +01:00
version = "0.38.43"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
2024-06-25 19:34:41 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"bitflags",
2024-06-26 02:17:02 +02:00
"errno",
"libc",
"linux-raw-sys",
2025-01-15 23:51:25 +01:00
"windows-sys 0.59.0",
2024-06-25 19:34:41 +02:00
]
[[package]]
2024-06-26 02:17:02 +02:00
name = "rustls"
2025-08-03 21:25:18 +02:00
version = "0.23.31"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
2024-06-25 19:34:41 +02:00
dependencies = [
2024-06-26 02:17:02 +02:00
"once_cell",
"rustls-pki-types",
"rustls-webpki",
"subtle",
"zeroize",
2024-06-25 19:34:41 +02:00
]
[[package]]
2025-08-03 21:25:18 +02:00
name = "rustls-pki-types"
version = "1.12.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2024-06-25 19:34:41 +02:00
dependencies = [
2025-08-03 21:25:18 +02:00
"zeroize",
2024-06-25 19:34:41 +02:00
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "rustls-webpki"
2025-08-03 21:25:18 +02:00
version = "0.103.4"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2024-06-26 02:17:02 +02:00
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "rustversion"
2025-01-15 23:51:25 +01:00
version = "1.0.19"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2024-06-25 19:34:41 +02:00
[[package]]
name = "ryu"
2025-08-03 21:25:18 +02:00
version = "1.0.20"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "schannel"
2025-01-15 23:51:25 +01:00
version = "0.1.27"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2024-06-26 02:17:02 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"windows-sys 0.59.0",
2024-06-26 02:17:02 +02:00
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2024-06-26 02:17:02 +02:00
[[package]]
name = "security-framework"
2024-09-27 20:07:55 +02:00
version = "2.11.1"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2024-06-26 02:17:02 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"bitflags",
2024-06-26 02:17:02 +02:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2025-01-15 23:51:25 +01:00
version = "2.14.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2024-06-26 02:17:02 +02:00
dependencies = [
"core-foundation-sys",
"libc",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "serde"
2025-08-03 21:25:18 +02:00
version = "1.0.219"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2024-06-25 19:34:41 +02:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2025-08-03 21:25:18 +02:00
version = "1.0.219"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2024-06-25 19:34:41 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2025-08-03 21:25:18 +02:00
version = "1.0.142"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
2024-06-25 19:34:41 +02:00
dependencies = [
"itoa",
2024-09-27 20:07:55 +02:00
"memchr",
2024-06-25 19:34:41 +02:00
"ryu",
"serde",
]
[[package]]
name = "serde_path_to_error"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
dependencies = [
"itoa",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sharded-slab"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
"lazy_static",
]
2024-09-27 20:07:55 +02:00
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2024-06-25 19:34:41 +02:00
[[package]]
name = "signal-hook-registry"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
dependencies = [
"libc",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "slab"
2025-08-03 21:25:18 +02:00
version = "0.4.10"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
2024-06-26 02:17:02 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "smallvec"
2025-08-03 21:25:18 +02:00
version = "1.15.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2024-06-25 19:34:41 +02:00
[[package]]
name = "socket2"
2025-08-03 21:25:18 +02:00
version = "0.6.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
2024-06-25 19:34:41 +02:00
dependencies = [
"libc",
2025-08-03 21:25:18 +02:00
"windows-sys 0.59.0",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2025-01-15 23:51:25 +01:00
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2024-06-26 02:17:02 +02:00
[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2024-06-25 19:34:41 +02:00
[[package]]
name = "syn"
2025-08-03 21:25:18 +02:00
version = "2.0.104"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
2024-06-25 19:34:41 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
2025-01-15 23:51:25 +01:00
version = "1.0.2"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
dependencies = [
"futures-core",
]
2024-06-25 19:34:41 +02:00
[[package]]
2025-01-15 23:51:25 +01:00
name = "synstructure"
2025-08-03 21:25:18 +02:00
version = "0.13.2"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2024-09-27 20:07:55 +02:00
dependencies = [
2025-01-15 23:51:25 +01:00
"proc-macro2",
"quote",
"syn",
2024-09-27 20:07:55 +02:00
]
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "system-configuration"
2024-09-27 20:07:55 +02:00
version = "0.6.1"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2024-06-26 02:17:02 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"bitflags",
2024-06-26 02:17:02 +02:00
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
2024-09-27 20:07:55 +02:00
version = "0.6.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2024-06-26 02:17:02 +02:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "tempfile"
2025-01-15 23:51:25 +01:00
version = "3.15.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
2024-06-26 02:17:02 +02:00
dependencies = [
"cfg-if",
"fastrand",
2025-08-03 21:25:18 +02:00
"getrandom 0.2.16",
2024-09-27 20:07:55 +02:00
"once_cell",
2024-06-26 02:17:02 +02:00
"rustix",
2024-09-27 20:07:55 +02:00
"windows-sys 0.59.0",
2024-06-26 02:17:02 +02:00
]
[[package]]
name = "thiserror"
2025-01-15 23:51:25 +01:00
version = "1.0.69"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2024-06-26 02:17:02 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2025-01-15 23:51:25 +01:00
version = "1.0.69"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2024-06-26 02:17:02 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "thread_local"
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
dependencies = [
"cfg-if",
"once_cell",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "time"
2025-08-03 21:25:18 +02:00
version = "0.3.41"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2024-06-26 02:17:02 +02:00
dependencies = [
"deranged",
"itoa",
"num-conv",
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2025-08-03 21:25:18 +02:00
version = "0.1.4"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2024-06-26 02:17:02 +02:00
[[package]]
name = "time-macros"
2025-08-03 21:25:18 +02:00
version = "0.2.22"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2024-06-26 02:17:02 +02:00
dependencies = [
"num-conv",
"time-core",
]
[[package]]
2025-01-15 23:51:25 +01:00
name = "tinystr"
2025-08-03 21:25:18 +02:00
version = "0.8.1"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2024-06-26 02:17:02 +02:00
dependencies = [
2025-01-15 23:51:25 +01:00
"displaydoc",
"zerovec",
2024-06-26 02:17:02 +02:00
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "tokio"
2025-08-03 21:25:18 +02:00
version = "1.47.1"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
2024-06-25 19:34:41 +02:00
dependencies = [
"backtrace",
"bytes",
2025-08-03 21:25:18 +02:00
"io-uring",
2024-06-25 19:34:41 +02:00
"libc",
"mio",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2025-08-03 21:25:18 +02:00
"slab",
2024-06-25 19:34:41 +02:00
"socket2",
"tokio-macros",
2025-08-03 21:25:18 +02:00
"windows-sys 0.59.0",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "tokio-macros"
2025-01-15 23:51:25 +01:00
version = "2.5.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2024-06-25 19:34:41 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-rustls"
2025-08-03 21:25:18 +02:00
version = "0.26.2"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2024-06-26 02:17:02 +02:00
dependencies = [
"rustls",
"tokio",
]
[[package]]
name = "tokio-util"
2025-08-03 21:25:18 +02:00
version = "0.7.16"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
2024-06-26 02:17:02 +02:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "tower"
2025-01-15 23:51:25 +01:00
version = "0.5.2"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2024-06-25 19:34:41 +02:00
dependencies = [
"futures-core",
"futures-util",
"pin-project-lite",
2025-01-15 23:51:25 +01:00
"sync_wrapper",
2024-06-25 19:34:41 +02:00
"tokio",
"tower-layer",
"tower-service",
"tracing",
]
2025-01-15 23:51:25 +01:00
[[package]]
name = "tower-http"
2025-08-03 21:25:18 +02:00
version = "0.6.6"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
2025-01-15 23:51:25 +01:00
dependencies = [
"bitflags",
"bytes",
2025-08-03 21:25:18 +02:00
"futures-util",
2025-01-15 23:51:25 +01:00
"http",
"http-body",
2025-08-03 21:25:18 +02:00
"iri-string",
2025-01-15 23:51:25 +01:00
"pin-project-lite",
2025-08-03 21:25:18 +02:00
"tower",
2025-01-15 23:51:25 +01:00
"tower-layer",
"tower-service",
"tracing",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "tower-layer"
2024-09-27 20:07:55 +02:00
version = "0.3.3"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2024-06-25 19:34:41 +02:00
[[package]]
name = "tower-service"
2024-09-27 20:07:55 +02:00
version = "0.3.3"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2024-06-25 19:34:41 +02:00
[[package]]
name = "tracing"
2025-01-15 23:51:25 +01:00
version = "0.1.41"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2024-06-25 19:34:41 +02:00
dependencies = [
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2025-01-15 23:51:25 +01:00
version = "0.1.28"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2024-06-25 19:34:41 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2025-08-03 21:25:18 +02:00
version = "0.1.34"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2024-06-25 19:34:41 +02:00
dependencies = [
"once_cell",
"valuable",
]
2024-09-27 20:07:55 +02:00
[[package]]
name = "tracing-error"
2025-01-15 23:51:25 +01:00
version = "0.2.1"
2024-09-27 20:07:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
2024-09-27 20:07:55 +02:00
dependencies = [
"tracing",
"tracing-subscriber",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2025-01-15 23:51:25 +01:00
version = "0.3.19"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2024-06-25 19:34:41 +02:00
dependencies = [
"nu-ansi-term",
"sharded-slab",
"smallvec",
"thread_local",
"tracing-core",
"tracing-log",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typenum"
2025-08-03 21:25:18 +02:00
version = "1.18.0"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2024-06-26 02:17:02 +02:00
2024-06-25 19:34:41 +02:00
[[package]]
name = "unicode-ident"
2025-08-03 21:25:18 +02:00
version = "1.0.18"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2024-06-26 02:17:02 +02:00
[[package]]
name = "universal-hash"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
dependencies = [
"crypto-common",
"subtle",
]
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
2025-01-15 23:51:25 +01:00
version = "2.5.4"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2024-06-26 02:17:02 +02:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2024-09-27 20:07:55 +02:00
[[package]]
name = "utf8-decode"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca61eb27fa339aa08826a29f03e87b99b4d8f0fc2255306fd266bb1b6a9de498"
2025-01-15 23:51:25 +01:00
[[package]]
name = "utf8_iter"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2024-06-25 19:34:41 +02:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2024-06-26 02:17:02 +02:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2024-06-25 19:34:41 +02:00
[[package]]
name = "version_check"
2024-09-27 20:07:55 +02:00
version = "0.9.5"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2024-06-25 19:34:41 +02:00
2024-06-26 02:17:02 +02:00
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2025-08-03 21:25:18 +02:00
[[package]]
name = "wasi"
version = "0.14.2+wasi-0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
dependencies = [
"wit-bindgen-rt",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "wasm-bindgen"
2025-01-15 23:51:25 +01:00
version = "0.2.100"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2024-06-26 02:17:02 +02:00
dependencies = [
"cfg-if",
2024-09-27 20:07:55 +02:00
"once_cell",
2025-01-15 23:51:25 +01:00
"rustversion",
2024-06-26 02:17:02 +02:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2025-01-15 23:51:25 +01:00
version = "0.2.100"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2024-06-26 02:17:02 +02:00
dependencies = [
"bumpalo",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2025-01-15 23:51:25 +01:00
version = "0.4.50"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
2024-06-26 02:17:02 +02:00
dependencies = [
"cfg-if",
"js-sys",
2025-01-15 23:51:25 +01:00
"once_cell",
2024-06-26 02:17:02 +02:00
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2025-01-15 23:51:25 +01:00
version = "0.2.100"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2024-06-26 02:17:02 +02:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2025-01-15 23:51:25 +01:00
version = "0.2.100"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2024-06-26 02:17:02 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2025-01-15 23:51:25 +01:00
version = "0.2.100"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
dependencies = [
"unicode-ident",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "web-sys"
2025-01-15 23:51:25 +01:00
version = "0.3.77"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-15 23:51:25 +01:00
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2024-06-26 02:17:02 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2024-06-25 19:34:41 +02:00
[[package]]
name = "winapi"
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",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2025-08-03 21:25:18 +02:00
[[package]]
name = "windows-link"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2024-06-26 02:17:02 +02:00
[[package]]
2024-09-27 20:07:55 +02:00
name = "windows-registry"
2025-08-03 21:25:18 +02:00
version = "0.5.3"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
2024-06-26 02:17:02 +02:00
dependencies = [
2025-08-03 21:25:18 +02:00
"windows-link",
2024-09-27 20:07:55 +02:00
"windows-result",
"windows-strings",
2024-06-26 02:17:02 +02:00
]
2024-06-25 19:34:41 +02:00
[[package]]
2024-09-27 20:07:55 +02:00
name = "windows-result"
2025-08-03 21:25:18 +02:00
version = "0.3.4"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2024-06-25 19:34:41 +02:00
dependencies = [
2025-08-03 21:25:18 +02:00
"windows-link",
2024-09-27 20:07:55 +02:00
]
[[package]]
name = "windows-strings"
2025-08-03 21:25:18 +02:00
version = "0.4.2"
2024-09-27 20:07:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2024-09-27 20:07:55 +02:00
dependencies = [
2025-08-03 21:25:18 +02:00
"windows-link",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-09-27 20:07:55 +02:00
"windows-targets",
2024-06-25 19:34:41 +02:00
]
[[package]]
2024-09-27 20:07:55 +02:00
name = "windows-sys"
version = "0.59.0"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2024-06-25 19:34:41 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"windows-targets",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "windows-targets"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2024-06-25 19:34:41 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-06-25 19:34:41 +02:00
"windows_i686_gnullvm",
2024-09-27 20:07:55 +02:00
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2024-06-25 19:34:41 +02:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_aarch64_msvc"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_i686_gnu"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_i686_gnullvm"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_i686_msvc"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_x86_64_gnu"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-06-25 19:34:41 +02:00
[[package]]
name = "windows_x86_64_msvc"
2024-09-27 20:07:55 +02:00
version = "0.52.6"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-27 20:07:55 +02:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2024-06-25 19:34:41 +02:00
2025-01-15 23:51:25 +01:00
[[package]]
2025-08-03 21:25:18 +02:00
name = "wit-bindgen-rt"
version = "0.39.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
dependencies = [
"bitflags",
]
2025-01-15 23:51:25 +01:00
[[package]]
name = "writeable"
2025-08-03 21:25:18 +02:00
version = "0.6.1"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2025-01-15 23:51:25 +01:00
[[package]]
name = "yoke"
2025-08-03 21:25:18 +02:00
version = "0.8.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2025-01-15 23:51:25 +01:00
dependencies = [
"serde",
"stable_deref_trait",
"yoke-derive",
"zerofrom",
]
[[package]]
name = "yoke-derive"
2025-08-03 21:25:18 +02:00
version = "0.8.0"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2025-01-15 23:51:25 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]
2024-06-25 19:34:41 +02:00
[[package]]
2024-09-27 20:07:55 +02:00
name = "zerocopy"
2025-08-03 21:25:18 +02:00
version = "0.8.26"
2024-06-25 19:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
2024-09-27 20:07:55 +02:00
dependencies = [
"zerocopy-derive",
]
2024-06-26 02:17:02 +02:00
[[package]]
2024-09-27 20:07:55 +02:00
name = "zerocopy-derive"
2025-08-03 21:25:18 +02:00
version = "0.8.26"
2024-06-26 02:17:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2024-06-26 02:17:02 +02:00
dependencies = [
2024-09-27 20:07:55 +02:00
"proc-macro2",
"quote",
"syn",
2024-06-26 02:17:02 +02:00
]
2025-01-15 23:51:25 +01:00
[[package]]
name = "zerofrom"
2025-08-03 21:25:18 +02:00
version = "0.1.6"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2025-01-15 23:51:25 +01:00
dependencies = [
"zerofrom-derive",
]
[[package]]
name = "zerofrom-derive"
2025-08-03 21:25:18 +02:00
version = "0.1.6"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2025-01-15 23:51:25 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]
2024-06-26 02:17:02 +02:00
[[package]]
name = "zeroize"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2025-01-15 23:51:25 +01:00
2025-08-03 21:25:18 +02:00
[[package]]
name = "zerotrie"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
dependencies = [
"displaydoc",
"yoke",
"zerofrom",
]
2025-01-15 23:51:25 +01:00
[[package]]
name = "zerovec"
2025-08-03 21:25:18 +02:00
version = "0.11.2"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
2025-01-15 23:51:25 +01:00
dependencies = [
"yoke",
"zerofrom",
"zerovec-derive",
]
[[package]]
name = "zerovec-derive"
2025-08-03 21:25:18 +02:00
version = "0.11.1"
2025-01-15 23:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-03 21:25:18 +02:00
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2025-01-15 23:51:25 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]