Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 4de88b48 1c7f731c

+283 -5691
+10
pkgs/applications/networking/cluster/k3s/1_32/chart-versions.nix
··· 1 + { 2 + traefik-crd = { 3 + url = "https://k3s.io/k3s-charts/assets/traefik-crd/traefik-crd-27.0.201+up27.0.2.tgz"; 4 + sha256 = "0vwprcb60y15sc4lmi58gl1zr3yhsq43jlbsfm7gs20ci90frv16"; 5 + }; 6 + traefik = { 7 + url = "https://k3s.io/k3s-charts/assets/traefik/traefik-27.0.201+up27.0.2.tgz"; 8 + sha256 = "12dp1r82qfzqfzs4sfxc54rnw8kv42a3w4gpk5v3qkhqm6fkrnn1"; 9 + }; 10 + }
+18
pkgs/applications/networking/cluster/k3s/1_32/images-versions.json
··· 1 + { 2 + "airgap-images-amd64": { 3 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.0%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 + "sha256": "0dz8zpb1la98y63x7qs00s28bzn10ycipwsf6a5lvyhzzgpl253a" 5 + }, 6 + "airgap-images-arm": { 7 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.0%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 + "sha256": "04qsn75xzfl29fksnb0rzcj7cfdi84smmhn9v47l423zbgr30pfv" 9 + }, 10 + "airgap-images-arm64": { 11 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.0%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 + "sha256": "1bk8skws87561n06mkwh92c93v5rinf8nmwydn06p8crz9ggp5q6" 13 + }, 14 + "images-list": { 15 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.0%2Bk3s1/k3s-images.txt", 16 + "sha256": "1gqiaszfw49hsbn7xkkadykaf028vys13ykqvpkqar0f7hwwbja6" 17 + } 18 + }
+15
pkgs/applications/networking/cluster/k3s/1_32/versions.nix
··· 1 + { 2 + k3sVersion = "1.32.0+k3s1"; 3 + k3sCommit = "cca8facaa33a3ec7897349a8740fd96029590c31"; 4 + k3sRepoSha256 = "0l8mciwv2wr266zxv9zc5wpgf92gqvzg4d08z4g63wbvsi7zflzh"; 5 + k3sVendorHash = "sha256-3hY67A6GbzB2ki5GB7GmmmGG5A4cup17zhkUNiN1chk="; 6 + chartVersions = import ./chart-versions.nix; 7 + imagesVersions = builtins.fromJSON (builtins.readFile ./images-versions.json); 8 + k3sRootVersion = "0.14.1"; 9 + k3sRootSha256 = "0svbi42agqxqh5q2ri7xmaw2a2c70s7q5y587ls0qkflw5vx4sl7"; 10 + k3sCNIVersion = "1.6.0-k3s1"; 11 + k3sCNISha256 = "0g7zczvwba5xqawk37b0v96xysdwanyf1grxn3l3lhxsgjjsmkd7"; 12 + containerdVersion = "1.7.23-k3s2"; 13 + containerdSha256 = "0lp9vxq7xj74wa7hbivvl5hwg2wzqgsxav22wa0p1l7lc1dqw8dm"; 14 + criCtlVersion = "1.31.0-k3s2"; 15 + }
+10 -1
pkgs/applications/networking/cluster/k3s/default.nix
··· 12 12 extraArgs = builtins.removeAttrs args [ "callPackage" ]; 13 13 in 14 14 { 15 - # 1_29 can be built with the same builder as 1_30 16 15 k3s_1_29 = common ( 17 16 (import ./1_29/versions.nix) 18 17 // { ··· 39 38 updateScript = [ 40 39 ./update-script.sh 41 40 "31" 41 + ]; 42 + } 43 + ) extraArgs; 44 + 45 + k3s_1_32 = common ( 46 + (import ./1_32/versions.nix) 47 + // { 48 + updateScript = [ 49 + ./update-script.sh 50 + "32" 42 51 ]; 43 52 } 44 53 ) extraArgs;
+3 -3
pkgs/by-name/as/ast-grep/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "ast-grep"; 11 - version = "0.32.3"; 11 + version = "0.33.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ast-grep"; 15 15 repo = "ast-grep"; 16 16 rev = version; 17 - hash = "sha256-DJrcXykSYArG5cP3Nm3JEeBpu9a4Mbben4/DApIKZN4="; 17 + hash = "sha256-oqG76KzyN5TnE27yxrHeEYjLwrnDMvwbOzOnN6TWvxc="; 18 18 }; 19 19 20 - cargoHash = "sha256-frAoaoKOoFRfb9qtjPehtUSqKU25+pbMff4iRPXS/Qo="; 20 + cargoHash = "sha256-O3FKn90QVDk1TXJtjmaiDuXr+pwIjsAmadi+aypXeLA="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
-5581
pkgs/by-name/at/attic-client/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "addr2line" 7 - version = "0.22.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 - 20 - [[package]] 21 - name = "ahash" 22 - version = "0.7.8" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25 - dependencies = [ 26 - "getrandom", 27 - "once_cell", 28 - "version_check", 29 - ] 30 - 31 - [[package]] 32 - name = "ahash" 33 - version = "0.8.11" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 36 - dependencies = [ 37 - "cfg-if", 38 - "getrandom", 39 - "once_cell", 40 - "version_check", 41 - "zerocopy", 42 - ] 43 - 44 - [[package]] 45 - name = "aho-corasick" 46 - version = "1.1.3" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 49 - dependencies = [ 50 - "memchr", 51 - ] 52 - 53 - [[package]] 54 - name = "aliasable" 55 - version = "0.1.3" 56 - source = "registry+https://github.com/rust-lang/crates.io-index" 57 - checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 58 - 59 - [[package]] 60 - name = "alloc-no-stdlib" 61 - version = "2.0.4" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 64 - 65 - [[package]] 66 - name = "alloc-stdlib" 67 - version = "0.2.2" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 70 - dependencies = [ 71 - "alloc-no-stdlib", 72 - ] 73 - 74 - [[package]] 75 - name = "allocator-api2" 76 - version = "0.2.18" 77 - source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 79 - 80 - [[package]] 81 - name = "android-tzdata" 82 - version = "0.1.1" 83 - source = "registry+https://github.com/rust-lang/crates.io-index" 84 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 85 - 86 - [[package]] 87 - name = "android_system_properties" 88 - version = "0.1.5" 89 - source = "registry+https://github.com/rust-lang/crates.io-index" 90 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 91 - dependencies = [ 92 - "libc", 93 - ] 94 - 95 - [[package]] 96 - name = "anes" 97 - version = "0.1.6" 98 - source = "registry+https://github.com/rust-lang/crates.io-index" 99 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 100 - 101 - [[package]] 102 - name = "anstream" 103 - version = "0.6.14" 104 - source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 106 - dependencies = [ 107 - "anstyle", 108 - "anstyle-parse", 109 - "anstyle-query", 110 - "anstyle-wincon", 111 - "colorchoice", 112 - "is_terminal_polyfill", 113 - "utf8parse", 114 - ] 115 - 116 - [[package]] 117 - name = "anstyle" 118 - version = "1.0.7" 119 - source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 121 - 122 - [[package]] 123 - name = "anstyle-parse" 124 - version = "0.2.4" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 127 - dependencies = [ 128 - "utf8parse", 129 - ] 130 - 131 - [[package]] 132 - name = "anstyle-query" 133 - version = "1.0.3" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" 136 - dependencies = [ 137 - "windows-sys 0.52.0", 138 - ] 139 - 140 - [[package]] 141 - name = "anstyle-wincon" 142 - version = "3.0.3" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 145 - dependencies = [ 146 - "anstyle", 147 - "windows-sys 0.52.0", 148 - ] 149 - 150 - [[package]] 151 - name = "anyhow" 152 - version = "1.0.86" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 155 - 156 - [[package]] 157 - name = "arrayvec" 158 - version = "0.7.4" 159 - source = "registry+https://github.com/rust-lang/crates.io-index" 160 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 161 - 162 - [[package]] 163 - name = "async-channel" 164 - version = "2.3.1" 165 - source = "registry+https://github.com/rust-lang/crates.io-index" 166 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 167 - dependencies = [ 168 - "concurrent-queue", 169 - "event-listener-strategy", 170 - "futures-core", 171 - "pin-project-lite", 172 - ] 173 - 174 - [[package]] 175 - name = "async-compression" 176 - version = "0.4.11" 177 - source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5" 179 - dependencies = [ 180 - "brotli", 181 - "futures-core", 182 - "memchr", 183 - "pin-project-lite", 184 - "tokio", 185 - "xz2", 186 - "zstd", 187 - "zstd-safe", 188 - ] 189 - 190 - [[package]] 191 - name = "async-stream" 192 - version = "0.3.5" 193 - source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 195 - dependencies = [ 196 - "async-stream-impl", 197 - "futures-core", 198 - "pin-project-lite", 199 - ] 200 - 201 - [[package]] 202 - name = "async-stream-impl" 203 - version = "0.3.5" 204 - source = "registry+https://github.com/rust-lang/crates.io-index" 205 - checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 206 - dependencies = [ 207 - "proc-macro2", 208 - "quote", 209 - "syn 2.0.66", 210 - ] 211 - 212 - [[package]] 213 - name = "async-trait" 214 - version = "0.1.80" 215 - source = "registry+https://github.com/rust-lang/crates.io-index" 216 - checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 217 - dependencies = [ 218 - "proc-macro2", 219 - "quote", 220 - "syn 2.0.66", 221 - ] 222 - 223 - [[package]] 224 - name = "atoi" 225 - version = "2.0.0" 226 - source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 228 - dependencies = [ 229 - "num-traits", 230 - ] 231 - 232 - [[package]] 233 - name = "attic" 234 - version = "0.1.0" 235 - dependencies = [ 236 - "async-stream", 237 - "base64 0.22.1", 238 - "bytes", 239 - "cc", 240 - "criterion", 241 - "cxx", 242 - "cxx-build", 243 - "digest", 244 - "displaydoc", 245 - "ed25519-compact", 246 - "fastcdc", 247 - "futures", 248 - "hex", 249 - "lazy_static", 250 - "log", 251 - "nix-base32", 252 - "pkg-config", 253 - "regex", 254 - "serde", 255 - "serde_json", 256 - "serde_with", 257 - "serde_yaml", 258 - "sha2", 259 - "tempfile", 260 - "tokio", 261 - "version-compare", 262 - "wildmatch", 263 - "xdg", 264 - ] 265 - 266 - [[package]] 267 - name = "attic-client" 268 - version = "0.1.0" 269 - dependencies = [ 270 - "anyhow", 271 - "async-channel", 272 - "attic", 273 - "bytes", 274 - "clap", 275 - "clap_complete", 276 - "const_format", 277 - "dialoguer", 278 - "displaydoc", 279 - "enum-as-inner", 280 - "futures", 281 - "humantime", 282 - "indicatif", 283 - "lazy_static", 284 - "notify", 285 - "regex", 286 - "reqwest", 287 - "serde", 288 - "serde_json", 289 - "tokio", 290 - "toml", 291 - "tracing", 292 - "tracing-subscriber", 293 - "xdg", 294 - ] 295 - 296 - [[package]] 297 - name = "attic-server" 298 - version = "0.1.0" 299 - dependencies = [ 300 - "anyhow", 301 - "async-compression", 302 - "async-stream", 303 - "async-trait", 304 - "attic", 305 - "attic-token", 306 - "aws-config", 307 - "aws-sdk-s3", 308 - "axum 0.7.5", 309 - "axum-macros", 310 - "base64 0.22.1", 311 - "bytes", 312 - "chrono", 313 - "clap", 314 - "console-subscriber", 315 - "derivative", 316 - "digest", 317 - "displaydoc", 318 - "enum-as-inner", 319 - "futures", 320 - "hex", 321 - "http-body-util", 322 - "humantime", 323 - "humantime-serde", 324 - "itoa", 325 - "maybe-owned", 326 - "rand", 327 - "regex", 328 - "rsa 0.9.6", 329 - "ryu", 330 - "sea-orm", 331 - "sea-orm-migration", 332 - "serde", 333 - "serde_json", 334 - "serde_with", 335 - "sha2", 336 - "tokio", 337 - "tokio-util", 338 - "toml", 339 - "tower-http", 340 - "tracing", 341 - "tracing-error", 342 - "tracing-subscriber", 343 - "uuid", 344 - "xdg", 345 - ] 346 - 347 - [[package]] 348 - name = "attic-token" 349 - version = "0.1.0" 350 - dependencies = [ 351 - "attic", 352 - "base64 0.22.1", 353 - "chrono", 354 - "displaydoc", 355 - "indexmap 2.2.6", 356 - "jwt-simple", 357 - "lazy_static", 358 - "regex", 359 - "rsa 0.9.6", 360 - "serde", 361 - "serde_with", 362 - "tracing", 363 - ] 364 - 365 - [[package]] 366 - name = "autocfg" 367 - version = "1.3.0" 368 - source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 370 - 371 - [[package]] 372 - name = "aws-config" 373 - version = "1.5.0" 374 - source = "registry+https://github.com/rust-lang/crates.io-index" 375 - checksum = "1234b742ac4a40a7d3459c6e3c99818271976a5a6ae3732cb415f4a9a94da7b6" 376 - dependencies = [ 377 - "aws-credential-types", 378 - "aws-runtime", 379 - "aws-sdk-sso", 380 - "aws-sdk-ssooidc", 381 - "aws-sdk-sts", 382 - "aws-smithy-async", 383 - "aws-smithy-http", 384 - "aws-smithy-json", 385 - "aws-smithy-runtime", 386 - "aws-smithy-runtime-api", 387 - "aws-smithy-types", 388 - "aws-types", 389 - "bytes", 390 - "fastrand", 391 - "hex", 392 - "http 0.2.12", 393 - "hyper 0.14.28", 394 - "ring", 395 - "time", 396 - "tokio", 397 - "tracing", 398 - "url", 399 - "zeroize", 400 - ] 401 - 402 - [[package]] 403 - name = "aws-credential-types" 404 - version = "1.2.0" 405 - source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "e16838e6c9e12125face1c1eff1343c75e3ff540de98ff7ebd61874a89bcfeb9" 407 - dependencies = [ 408 - "aws-smithy-async", 409 - "aws-smithy-runtime-api", 410 - "aws-smithy-types", 411 - "zeroize", 412 - ] 413 - 414 - [[package]] 415 - name = "aws-runtime" 416 - version = "1.2.2" 417 - source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "75588e7ee5e8496eed939adac2035a6dbab9f7eb2acdd9ab2d31856dab6f3955" 419 - dependencies = [ 420 - "aws-credential-types", 421 - "aws-sigv4", 422 - "aws-smithy-async", 423 - "aws-smithy-eventstream", 424 - "aws-smithy-http", 425 - "aws-smithy-runtime-api", 426 - "aws-smithy-types", 427 - "aws-types", 428 - "bytes", 429 - "fastrand", 430 - "http 0.2.12", 431 - "http-body 0.4.6", 432 - "percent-encoding", 433 - "pin-project-lite", 434 - "tracing", 435 - "uuid", 436 - ] 437 - 438 - [[package]] 439 - name = "aws-sdk-s3" 440 - version = "1.32.0" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "2924dd7efd0112a5a88ec7d1c2dbf371966f018e90f3f45db7c8027ef895662a" 443 - dependencies = [ 444 - "ahash 0.8.11", 445 - "aws-credential-types", 446 - "aws-runtime", 447 - "aws-sigv4", 448 - "aws-smithy-async", 449 - "aws-smithy-checksums", 450 - "aws-smithy-eventstream", 451 - "aws-smithy-http", 452 - "aws-smithy-json", 453 - "aws-smithy-runtime", 454 - "aws-smithy-runtime-api", 455 - "aws-smithy-types", 456 - "aws-smithy-xml", 457 - "aws-types", 458 - "bytes", 459 - "fastrand", 460 - "hex", 461 - "hmac", 462 - "http 0.2.12", 463 - "http-body 0.4.6", 464 - "lru", 465 - "once_cell", 466 - "percent-encoding", 467 - "regex-lite", 468 - "sha2", 469 - "tracing", 470 - "url", 471 - ] 472 - 473 - [[package]] 474 - name = "aws-sdk-sso" 475 - version = "1.28.0" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "ee458e39982214c70432e87756227de474318283137c38d84be0aeebc77acced" 478 - dependencies = [ 479 - "aws-credential-types", 480 - "aws-runtime", 481 - "aws-smithy-async", 482 - "aws-smithy-http", 483 - "aws-smithy-json", 484 - "aws-smithy-runtime", 485 - "aws-smithy-runtime-api", 486 - "aws-smithy-types", 487 - "aws-types", 488 - "bytes", 489 - "http 0.2.12", 490 - "once_cell", 491 - "regex-lite", 492 - "tracing", 493 - ] 494 - 495 - [[package]] 496 - name = "aws-sdk-ssooidc" 497 - version = "1.29.0" 498 - source = "registry+https://github.com/rust-lang/crates.io-index" 499 - checksum = "d75562f0e82b87f41210c1de110f3fb169e189f962f4b2e94fd7f370d70e063c" 500 - dependencies = [ 501 - "aws-credential-types", 502 - "aws-runtime", 503 - "aws-smithy-async", 504 - "aws-smithy-http", 505 - "aws-smithy-json", 506 - "aws-smithy-runtime", 507 - "aws-smithy-runtime-api", 508 - "aws-smithy-types", 509 - "aws-types", 510 - "bytes", 511 - "http 0.2.12", 512 - "once_cell", 513 - "regex-lite", 514 - "tracing", 515 - ] 516 - 517 - [[package]] 518 - name = "aws-sdk-sts" 519 - version = "1.28.0" 520 - source = "registry+https://github.com/rust-lang/crates.io-index" 521 - checksum = "a422d2f3080421ed23630ada0e474c76e4279c18b4a379bff2f1062e05cef466" 522 - dependencies = [ 523 - "aws-credential-types", 524 - "aws-runtime", 525 - "aws-smithy-async", 526 - "aws-smithy-http", 527 - "aws-smithy-json", 528 - "aws-smithy-query", 529 - "aws-smithy-runtime", 530 - "aws-smithy-runtime-api", 531 - "aws-smithy-types", 532 - "aws-smithy-xml", 533 - "aws-types", 534 - "http 0.2.12", 535 - "once_cell", 536 - "regex-lite", 537 - "tracing", 538 - ] 539 - 540 - [[package]] 541 - name = "aws-sigv4" 542 - version = "1.2.1" 543 - source = "registry+https://github.com/rust-lang/crates.io-index" 544 - checksum = "58b56f1cbe6fd4d0c2573df72868f20ab1c125ca9c9dbce17927a463433a2e57" 545 - dependencies = [ 546 - "aws-credential-types", 547 - "aws-smithy-eventstream", 548 - "aws-smithy-http", 549 - "aws-smithy-runtime-api", 550 - "aws-smithy-types", 551 - "bytes", 552 - "crypto-bigint 0.5.5", 553 - "form_urlencoded", 554 - "hex", 555 - "hmac", 556 - "http 0.2.12", 557 - "http 1.1.0", 558 - "once_cell", 559 - "p256 0.11.1", 560 - "percent-encoding", 561 - "ring", 562 - "sha2", 563 - "subtle", 564 - "time", 565 - "tracing", 566 - "zeroize", 567 - ] 568 - 569 - [[package]] 570 - name = "aws-smithy-async" 571 - version = "1.2.1" 572 - source = "registry+https://github.com/rust-lang/crates.io-index" 573 - checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c" 574 - dependencies = [ 575 - "futures-util", 576 - "pin-project-lite", 577 - "tokio", 578 - ] 579 - 580 - [[package]] 581 - name = "aws-smithy-checksums" 582 - version = "0.60.9" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "6242d6a54d3b4b83458f4abd7057ba93c4419dc71e8217e9acd3a748d656d99e" 585 - dependencies = [ 586 - "aws-smithy-http", 587 - "aws-smithy-types", 588 - "bytes", 589 - "crc32c", 590 - "crc32fast", 591 - "hex", 592 - "http 0.2.12", 593 - "http-body 0.4.6", 594 - "md-5", 595 - "pin-project-lite", 596 - "sha1", 597 - "sha2", 598 - "tracing", 599 - ] 600 - 601 - [[package]] 602 - name = "aws-smithy-eventstream" 603 - version = "0.60.4" 604 - source = "registry+https://github.com/rust-lang/crates.io-index" 605 - checksum = "e6363078f927f612b970edf9d1903ef5cef9a64d1e8423525ebb1f0a1633c858" 606 - dependencies = [ 607 - "aws-smithy-types", 608 - "bytes", 609 - "crc32fast", 610 - ] 611 - 612 - [[package]] 613 - name = "aws-smithy-http" 614 - version = "0.60.8" 615 - source = "registry+https://github.com/rust-lang/crates.io-index" 616 - checksum = "4a7de001a1b9a25601016d8057ea16e31a45fdca3751304c8edf4ad72e706c08" 617 - dependencies = [ 618 - "aws-smithy-eventstream", 619 - "aws-smithy-runtime-api", 620 - "aws-smithy-types", 621 - "bytes", 622 - "bytes-utils", 623 - "futures-core", 624 - "http 0.2.12", 625 - "http-body 0.4.6", 626 - "once_cell", 627 - "percent-encoding", 628 - "pin-project-lite", 629 - "pin-utils", 630 - "tracing", 631 - ] 632 - 633 - [[package]] 634 - name = "aws-smithy-json" 635 - version = "0.60.7" 636 - source = "registry+https://github.com/rust-lang/crates.io-index" 637 - checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6" 638 - dependencies = [ 639 - "aws-smithy-types", 640 - ] 641 - 642 - [[package]] 643 - name = "aws-smithy-query" 644 - version = "0.60.7" 645 - source = "registry+https://github.com/rust-lang/crates.io-index" 646 - checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb" 647 - dependencies = [ 648 - "aws-smithy-types", 649 - "urlencoding", 650 - ] 651 - 652 - [[package]] 653 - name = "aws-smithy-runtime" 654 - version = "1.5.4" 655 - source = "registry+https://github.com/rust-lang/crates.io-index" 656 - checksum = "607e8b53aeb2bc23fb332159d72a69650cd9643c161d76cd3b7f88ac00b5a1bb" 657 - dependencies = [ 658 - "aws-smithy-async", 659 - "aws-smithy-http", 660 - "aws-smithy-runtime-api", 661 - "aws-smithy-types", 662 - "bytes", 663 - "fastrand", 664 - "h2", 665 - "http 0.2.12", 666 - "http-body 0.4.6", 667 - "http-body 1.0.0", 668 - "hyper 0.14.28", 669 - "hyper-rustls 0.24.2", 670 - "once_cell", 671 - "pin-project-lite", 672 - "pin-utils", 673 - "rustls 0.21.12", 674 - "tokio", 675 - "tracing", 676 - ] 677 - 678 - [[package]] 679 - name = "aws-smithy-runtime-api" 680 - version = "1.6.1" 681 - source = "registry+https://github.com/rust-lang/crates.io-index" 682 - checksum = "5b7d790d553d163c7d80a4e06e2906bf24b9172c9ebe045fc3a274e9358ab7bb" 683 - dependencies = [ 684 - "aws-smithy-async", 685 - "aws-smithy-types", 686 - "bytes", 687 - "http 0.2.12", 688 - "http 1.1.0", 689 - "pin-project-lite", 690 - "tokio", 691 - "tracing", 692 - "zeroize", 693 - ] 694 - 695 - [[package]] 696 - name = "aws-smithy-types" 697 - version = "1.1.10" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "5b6764ba7e1c5ede1c9f9e4046645534f06c2581402461c559b481a420330a83" 700 - dependencies = [ 701 - "base64-simd", 702 - "bytes", 703 - "bytes-utils", 704 - "futures-core", 705 - "http 0.2.12", 706 - "http 1.1.0", 707 - "http-body 0.4.6", 708 - "http-body 1.0.0", 709 - "http-body-util", 710 - "itoa", 711 - "num-integer", 712 - "pin-project-lite", 713 - "pin-utils", 714 - "ryu", 715 - "serde", 716 - "time", 717 - "tokio", 718 - "tokio-util", 719 - ] 720 - 721 - [[package]] 722 - name = "aws-smithy-xml" 723 - version = "0.60.8" 724 - source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "d123fbc2a4adc3c301652ba8e149bf4bc1d1725affb9784eb20c953ace06bf55" 726 - dependencies = [ 727 - "xmlparser", 728 - ] 729 - 730 - [[package]] 731 - name = "aws-types" 732 - version = "1.3.0" 733 - source = "registry+https://github.com/rust-lang/crates.io-index" 734 - checksum = "02fa328e19c849b20ef7ada4c9b581dd12351ff35ecc7642d06e69de4f98407c" 735 - dependencies = [ 736 - "aws-credential-types", 737 - "aws-smithy-async", 738 - "aws-smithy-runtime-api", 739 - "aws-smithy-types", 740 - "http 0.2.12", 741 - "rustc_version", 742 - "tracing", 743 - ] 744 - 745 - [[package]] 746 - name = "axum" 747 - version = "0.6.20" 748 - source = "registry+https://github.com/rust-lang/crates.io-index" 749 - checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 750 - dependencies = [ 751 - "async-trait", 752 - "axum-core 0.3.4", 753 - "bitflags 1.3.2", 754 - "bytes", 755 - "futures-util", 756 - "http 0.2.12", 757 - "http-body 0.4.6", 758 - "hyper 0.14.28", 759 - "itoa", 760 - "matchit", 761 - "memchr", 762 - "mime", 763 - "percent-encoding", 764 - "pin-project-lite", 765 - "rustversion", 766 - "serde", 767 - "sync_wrapper 0.1.2", 768 - "tower", 769 - "tower-layer", 770 - "tower-service", 771 - ] 772 - 773 - [[package]] 774 - name = "axum" 775 - version = "0.7.5" 776 - source = "registry+https://github.com/rust-lang/crates.io-index" 777 - checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 778 - dependencies = [ 779 - "async-trait", 780 - "axum-core 0.4.3", 781 - "bytes", 782 - "futures-util", 783 - "http 1.1.0", 784 - "http-body 1.0.0", 785 - "http-body-util", 786 - "hyper 1.3.1", 787 - "hyper-util", 788 - "itoa", 789 - "matchit", 790 - "memchr", 791 - "mime", 792 - "percent-encoding", 793 - "pin-project-lite", 794 - "rustversion", 795 - "serde", 796 - "serde_json", 797 - "serde_path_to_error", 798 - "serde_urlencoded", 799 - "sync_wrapper 1.0.1", 800 - "tokio", 801 - "tower", 802 - "tower-layer", 803 - "tower-service", 804 - "tracing", 805 - ] 806 - 807 - [[package]] 808 - name = "axum-core" 809 - version = "0.3.4" 810 - source = "registry+https://github.com/rust-lang/crates.io-index" 811 - checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 812 - dependencies = [ 813 - "async-trait", 814 - "bytes", 815 - "futures-util", 816 - "http 0.2.12", 817 - "http-body 0.4.6", 818 - "mime", 819 - "rustversion", 820 - "tower-layer", 821 - "tower-service", 822 - ] 823 - 824 - [[package]] 825 - name = "axum-core" 826 - version = "0.4.3" 827 - source = "registry+https://github.com/rust-lang/crates.io-index" 828 - checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 829 - dependencies = [ 830 - "async-trait", 831 - "bytes", 832 - "futures-util", 833 - "http 1.1.0", 834 - "http-body 1.0.0", 835 - "http-body-util", 836 - "mime", 837 - "pin-project-lite", 838 - "rustversion", 839 - "sync_wrapper 0.1.2", 840 - "tower-layer", 841 - "tower-service", 842 - "tracing", 843 - ] 844 - 845 - [[package]] 846 - name = "axum-macros" 847 - version = "0.4.1" 848 - source = "registry+https://github.com/rust-lang/crates.io-index" 849 - checksum = "00c055ee2d014ae5981ce1016374e8213682aa14d9bf40e48ab48b5f3ef20eaa" 850 - dependencies = [ 851 - "heck 0.4.1", 852 - "proc-macro2", 853 - "quote", 854 - "syn 2.0.66", 855 - ] 856 - 857 - [[package]] 858 - name = "backtrace" 859 - version = "0.3.72" 860 - source = "registry+https://github.com/rust-lang/crates.io-index" 861 - checksum = "17c6a35df3749d2e8bb1b7b21a976d82b15548788d2735b9d82f329268f71a11" 862 - dependencies = [ 863 - "addr2line", 864 - "cc", 865 - "cfg-if", 866 - "libc", 867 - "miniz_oxide", 868 - "object", 869 - "rustc-demangle", 870 - ] 871 - 872 - [[package]] 873 - name = "base16ct" 874 - version = "0.1.1" 875 - source = "registry+https://github.com/rust-lang/crates.io-index" 876 - checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 877 - 878 - [[package]] 879 - name = "base16ct" 880 - version = "0.2.0" 881 - source = "registry+https://github.com/rust-lang/crates.io-index" 882 - checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 883 - 884 - [[package]] 885 - name = "base64" 886 - version = "0.21.7" 887 - source = "registry+https://github.com/rust-lang/crates.io-index" 888 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 889 - 890 - [[package]] 891 - name = "base64" 892 - version = "0.22.1" 893 - source = "registry+https://github.com/rust-lang/crates.io-index" 894 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 895 - 896 - [[package]] 897 - name = "base64-simd" 898 - version = "0.8.0" 899 - source = "registry+https://github.com/rust-lang/crates.io-index" 900 - checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 901 - dependencies = [ 902 - "outref", 903 - "vsimd", 904 - ] 905 - 906 - [[package]] 907 - name = "base64ct" 908 - version = "1.6.0" 909 - source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 911 - 912 - [[package]] 913 - name = "bigdecimal" 914 - version = "0.3.1" 915 - source = "registry+https://github.com/rust-lang/crates.io-index" 916 - checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" 917 - dependencies = [ 918 - "num-bigint", 919 - "num-integer", 920 - "num-traits", 921 - ] 922 - 923 - [[package]] 924 - name = "binstring" 925 - version = "0.1.1" 926 - source = "registry+https://github.com/rust-lang/crates.io-index" 927 - checksum = "7e0d60973d9320722cb1206f412740e162a33b8547ea8d6be75d7cff237c7a85" 928 - 929 - [[package]] 930 - name = "bitflags" 931 - version = "1.3.2" 932 - source = "registry+https://github.com/rust-lang/crates.io-index" 933 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 934 - 935 - [[package]] 936 - name = "bitflags" 937 - version = "2.5.0" 938 - source = "registry+https://github.com/rust-lang/crates.io-index" 939 - checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 940 - dependencies = [ 941 - "serde", 942 - ] 943 - 944 - [[package]] 945 - name = "bitvec" 946 - version = "1.0.1" 947 - source = "registry+https://github.com/rust-lang/crates.io-index" 948 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 949 - dependencies = [ 950 - "funty", 951 - "radium", 952 - "tap", 953 - "wyz", 954 - ] 955 - 956 - [[package]] 957 - name = "block-buffer" 958 - version = "0.10.4" 959 - source = "registry+https://github.com/rust-lang/crates.io-index" 960 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 961 - dependencies = [ 962 - "generic-array", 963 - ] 964 - 965 - [[package]] 966 - name = "borsh" 967 - version = "1.5.1" 968 - source = "registry+https://github.com/rust-lang/crates.io-index" 969 - checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" 970 - dependencies = [ 971 - "borsh-derive", 972 - "cfg_aliases", 973 - ] 974 - 975 - [[package]] 976 - name = "borsh-derive" 977 - version = "1.5.1" 978 - source = "registry+https://github.com/rust-lang/crates.io-index" 979 - checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" 980 - dependencies = [ 981 - "once_cell", 982 - "proc-macro-crate", 983 - "proc-macro2", 984 - "quote", 985 - "syn 2.0.66", 986 - "syn_derive", 987 - ] 988 - 989 - [[package]] 990 - name = "brotli" 991 - version = "6.0.0" 992 - source = "registry+https://github.com/rust-lang/crates.io-index" 993 - checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 994 - dependencies = [ 995 - "alloc-no-stdlib", 996 - "alloc-stdlib", 997 - "brotli-decompressor", 998 - ] 999 - 1000 - [[package]] 1001 - name = "brotli-decompressor" 1002 - version = "4.0.1" 1003 - source = "registry+https://github.com/rust-lang/crates.io-index" 1004 - checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 1005 - dependencies = [ 1006 - "alloc-no-stdlib", 1007 - "alloc-stdlib", 1008 - ] 1009 - 1010 - [[package]] 1011 - name = "bumpalo" 1012 - version = "3.16.0" 1013 - source = "registry+https://github.com/rust-lang/crates.io-index" 1014 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 1015 - 1016 - [[package]] 1017 - name = "bytecheck" 1018 - version = "0.6.12" 1019 - source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 1021 - dependencies = [ 1022 - "bytecheck_derive", 1023 - "ptr_meta", 1024 - "simdutf8", 1025 - ] 1026 - 1027 - [[package]] 1028 - name = "bytecheck_derive" 1029 - version = "0.6.12" 1030 - source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 1032 - dependencies = [ 1033 - "proc-macro2", 1034 - "quote", 1035 - "syn 1.0.109", 1036 - ] 1037 - 1038 - [[package]] 1039 - name = "byteorder" 1040 - version = "1.5.0" 1041 - source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1043 - 1044 - [[package]] 1045 - name = "bytes" 1046 - version = "1.6.0" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 1049 - 1050 - [[package]] 1051 - name = "bytes-utils" 1052 - version = "0.1.4" 1053 - source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 1055 - dependencies = [ 1056 - "bytes", 1057 - "either", 1058 - ] 1059 - 1060 - [[package]] 1061 - name = "cast" 1062 - version = "0.3.0" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 1065 - 1066 - [[package]] 1067 - name = "cc" 1068 - version = "1.1.13" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48" 1071 - dependencies = [ 1072 - "jobserver", 1073 - "libc", 1074 - "shlex", 1075 - ] 1076 - 1077 - [[package]] 1078 - name = "cfg-if" 1079 - version = "1.0.0" 1080 - source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1082 - 1083 - [[package]] 1084 - name = "cfg_aliases" 1085 - version = "0.2.1" 1086 - source = "registry+https://github.com/rust-lang/crates.io-index" 1087 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1088 - 1089 - [[package]] 1090 - name = "chrono" 1091 - version = "0.4.38" 1092 - source = "registry+https://github.com/rust-lang/crates.io-index" 1093 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 1094 - dependencies = [ 1095 - "android-tzdata", 1096 - "iana-time-zone", 1097 - "js-sys", 1098 - "num-traits", 1099 - "serde", 1100 - "wasm-bindgen", 1101 - "windows-targets 0.52.5", 1102 - ] 1103 - 1104 - [[package]] 1105 - name = "ciborium" 1106 - version = "0.2.2" 1107 - source = "registry+https://github.com/rust-lang/crates.io-index" 1108 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 1109 - dependencies = [ 1110 - "ciborium-io", 1111 - "ciborium-ll", 1112 - "serde", 1113 - ] 1114 - 1115 - [[package]] 1116 - name = "ciborium-io" 1117 - version = "0.2.2" 1118 - source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 1120 - 1121 - [[package]] 1122 - name = "ciborium-ll" 1123 - version = "0.2.2" 1124 - source = "registry+https://github.com/rust-lang/crates.io-index" 1125 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 1126 - dependencies = [ 1127 - "ciborium-io", 1128 - "half", 1129 - ] 1130 - 1131 - [[package]] 1132 - name = "clap" 1133 - version = "4.5.4" 1134 - source = "registry+https://github.com/rust-lang/crates.io-index" 1135 - checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 1136 - dependencies = [ 1137 - "clap_builder", 1138 - "clap_derive", 1139 - ] 1140 - 1141 - [[package]] 1142 - name = "clap_builder" 1143 - version = "4.5.2" 1144 - source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 1146 - dependencies = [ 1147 - "anstream", 1148 - "anstyle", 1149 - "clap_lex", 1150 - "strsim", 1151 - ] 1152 - 1153 - [[package]] 1154 - name = "clap_complete" 1155 - version = "4.5.2" 1156 - source = "registry+https://github.com/rust-lang/crates.io-index" 1157 - checksum = "dd79504325bf38b10165b02e89b4347300f855f273c4cb30c4a3209e6583275e" 1158 - dependencies = [ 1159 - "clap", 1160 - ] 1161 - 1162 - [[package]] 1163 - name = "clap_derive" 1164 - version = "4.5.4" 1165 - source = "registry+https://github.com/rust-lang/crates.io-index" 1166 - checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 1167 - dependencies = [ 1168 - "heck 0.5.0", 1169 - "proc-macro2", 1170 - "quote", 1171 - "syn 2.0.66", 1172 - ] 1173 - 1174 - [[package]] 1175 - name = "clap_lex" 1176 - version = "0.7.0" 1177 - source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 1179 - 1180 - [[package]] 1181 - name = "coarsetime" 1182 - version = "0.1.34" 1183 - source = "registry+https://github.com/rust-lang/crates.io-index" 1184 - checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d" 1185 - dependencies = [ 1186 - "libc", 1187 - "wasix", 1188 - "wasm-bindgen", 1189 - ] 1190 - 1191 - [[package]] 1192 - name = "codespan-reporting" 1193 - version = "0.11.1" 1194 - source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1196 - dependencies = [ 1197 - "termcolor", 1198 - "unicode-width", 1199 - ] 1200 - 1201 - [[package]] 1202 - name = "colorchoice" 1203 - version = "1.0.1" 1204 - source = "registry+https://github.com/rust-lang/crates.io-index" 1205 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 1206 - 1207 - [[package]] 1208 - name = "concurrent-queue" 1209 - version = "2.5.0" 1210 - source = "registry+https://github.com/rust-lang/crates.io-index" 1211 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1212 - dependencies = [ 1213 - "crossbeam-utils", 1214 - ] 1215 - 1216 - [[package]] 1217 - name = "console" 1218 - version = "0.15.8" 1219 - source = "registry+https://github.com/rust-lang/crates.io-index" 1220 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 1221 - dependencies = [ 1222 - "encode_unicode", 1223 - "lazy_static", 1224 - "libc", 1225 - "unicode-width", 1226 - "windows-sys 0.52.0", 1227 - ] 1228 - 1229 - [[package]] 1230 - name = "console-api" 1231 - version = "0.6.0" 1232 - source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "fd326812b3fd01da5bb1af7d340d0d555fd3d4b641e7f1dfcf5962a902952787" 1234 - dependencies = [ 1235 - "futures-core", 1236 - "prost", 1237 - "prost-types", 1238 - "tonic", 1239 - "tracing-core", 1240 - ] 1241 - 1242 - [[package]] 1243 - name = "console-subscriber" 1244 - version = "0.2.0" 1245 - source = "registry+https://github.com/rust-lang/crates.io-index" 1246 - checksum = "7481d4c57092cd1c19dd541b92bdce883de840df30aa5d03fd48a3935c01842e" 1247 - dependencies = [ 1248 - "console-api", 1249 - "crossbeam-channel", 1250 - "crossbeam-utils", 1251 - "futures-task", 1252 - "hdrhistogram", 1253 - "humantime", 1254 - "prost-types", 1255 - "serde", 1256 - "serde_json", 1257 - "thread_local", 1258 - "tokio", 1259 - "tokio-stream", 1260 - "tonic", 1261 - "tracing", 1262 - "tracing-core", 1263 - "tracing-subscriber", 1264 - ] 1265 - 1266 - [[package]] 1267 - name = "const-oid" 1268 - version = "0.9.6" 1269 - source = "registry+https://github.com/rust-lang/crates.io-index" 1270 - checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1271 - 1272 - [[package]] 1273 - name = "const_format" 1274 - version = "0.2.32" 1275 - source = "registry+https://github.com/rust-lang/crates.io-index" 1276 - checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673" 1277 - dependencies = [ 1278 - "const_format_proc_macros", 1279 - ] 1280 - 1281 - [[package]] 1282 - name = "const_format_proc_macros" 1283 - version = "0.2.32" 1284 - source = "registry+https://github.com/rust-lang/crates.io-index" 1285 - checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500" 1286 - dependencies = [ 1287 - "proc-macro2", 1288 - "quote", 1289 - "unicode-xid", 1290 - ] 1291 - 1292 - [[package]] 1293 - name = "core-foundation" 1294 - version = "0.9.4" 1295 - source = "registry+https://github.com/rust-lang/crates.io-index" 1296 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1297 - dependencies = [ 1298 - "core-foundation-sys", 1299 - "libc", 1300 - ] 1301 - 1302 - [[package]] 1303 - name = "core-foundation-sys" 1304 - version = "0.8.6" 1305 - source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 1307 - 1308 - [[package]] 1309 - name = "cpufeatures" 1310 - version = "0.2.12" 1311 - source = "registry+https://github.com/rust-lang/crates.io-index" 1312 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 1313 - dependencies = [ 1314 - "libc", 1315 - ] 1316 - 1317 - [[package]] 1318 - name = "crc" 1319 - version = "3.2.1" 1320 - source = "registry+https://github.com/rust-lang/crates.io-index" 1321 - checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 1322 - dependencies = [ 1323 - "crc-catalog", 1324 - ] 1325 - 1326 - [[package]] 1327 - name = "crc-catalog" 1328 - version = "2.4.0" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1331 - 1332 - [[package]] 1333 - name = "crc32c" 1334 - version = "0.6.5" 1335 - source = "registry+https://github.com/rust-lang/crates.io-index" 1336 - checksum = "89254598aa9b9fa608de44b3ae54c810f0f06d755e24c50177f1f8f31ff50ce2" 1337 - dependencies = [ 1338 - "rustc_version", 1339 - ] 1340 - 1341 - [[package]] 1342 - name = "crc32fast" 1343 - version = "1.4.2" 1344 - source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 1346 - dependencies = [ 1347 - "cfg-if", 1348 - ] 1349 - 1350 - [[package]] 1351 - name = "criterion" 1352 - version = "0.5.1" 1353 - source = "registry+https://github.com/rust-lang/crates.io-index" 1354 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 1355 - dependencies = [ 1356 - "anes", 1357 - "cast", 1358 - "ciborium", 1359 - "clap", 1360 - "criterion-plot", 1361 - "futures", 1362 - "is-terminal", 1363 - "itertools 0.10.5", 1364 - "num-traits", 1365 - "once_cell", 1366 - "oorandom", 1367 - "plotters", 1368 - "rayon", 1369 - "regex", 1370 - "serde", 1371 - "serde_derive", 1372 - "serde_json", 1373 - "tinytemplate", 1374 - "tokio", 1375 - "walkdir", 1376 - ] 1377 - 1378 - [[package]] 1379 - name = "criterion-plot" 1380 - version = "0.5.0" 1381 - source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 1383 - dependencies = [ 1384 - "cast", 1385 - "itertools 0.10.5", 1386 - ] 1387 - 1388 - [[package]] 1389 - name = "crossbeam-channel" 1390 - version = "0.5.13" 1391 - source = "registry+https://github.com/rust-lang/crates.io-index" 1392 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 1393 - dependencies = [ 1394 - "crossbeam-utils", 1395 - ] 1396 - 1397 - [[package]] 1398 - name = "crossbeam-deque" 1399 - version = "0.8.5" 1400 - source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 1402 - dependencies = [ 1403 - "crossbeam-epoch", 1404 - "crossbeam-utils", 1405 - ] 1406 - 1407 - [[package]] 1408 - name = "crossbeam-epoch" 1409 - version = "0.9.18" 1410 - source = "registry+https://github.com/rust-lang/crates.io-index" 1411 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1412 - dependencies = [ 1413 - "crossbeam-utils", 1414 - ] 1415 - 1416 - [[package]] 1417 - name = "crossbeam-queue" 1418 - version = "0.3.11" 1419 - source = "registry+https://github.com/rust-lang/crates.io-index" 1420 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 1421 - dependencies = [ 1422 - "crossbeam-utils", 1423 - ] 1424 - 1425 - [[package]] 1426 - name = "crossbeam-utils" 1427 - version = "0.8.20" 1428 - source = "registry+https://github.com/rust-lang/crates.io-index" 1429 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 1430 - 1431 - [[package]] 1432 - name = "crunchy" 1433 - version = "0.2.2" 1434 - source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 1436 - 1437 - [[package]] 1438 - name = "crypto-bigint" 1439 - version = "0.4.9" 1440 - source = "registry+https://github.com/rust-lang/crates.io-index" 1441 - checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 1442 - dependencies = [ 1443 - "generic-array", 1444 - "rand_core", 1445 - "subtle", 1446 - "zeroize", 1447 - ] 1448 - 1449 - [[package]] 1450 - name = "crypto-bigint" 1451 - version = "0.5.5" 1452 - source = "registry+https://github.com/rust-lang/crates.io-index" 1453 - checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1454 - dependencies = [ 1455 - "generic-array", 1456 - "rand_core", 1457 - "subtle", 1458 - "zeroize", 1459 - ] 1460 - 1461 - [[package]] 1462 - name = "crypto-common" 1463 - version = "0.1.6" 1464 - source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1466 - dependencies = [ 1467 - "generic-array", 1468 - "typenum", 1469 - ] 1470 - 1471 - [[package]] 1472 - name = "ct-codecs" 1473 - version = "1.1.1" 1474 - source = "registry+https://github.com/rust-lang/crates.io-index" 1475 - checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df" 1476 - 1477 - [[package]] 1478 - name = "cxx" 1479 - version = "1.0.122" 1480 - source = "registry+https://github.com/rust-lang/crates.io-index" 1481 - checksum = "bb497fad022245b29c2a0351df572e2d67c1046bcef2260ebc022aec81efea82" 1482 - dependencies = [ 1483 - "cc", 1484 - "cxxbridge-flags", 1485 - "cxxbridge-macro", 1486 - "link-cplusplus", 1487 - ] 1488 - 1489 - [[package]] 1490 - name = "cxx-build" 1491 - version = "1.0.122" 1492 - source = "registry+https://github.com/rust-lang/crates.io-index" 1493 - checksum = "9327c7f9fbd6329a200a5d4aa6f674c60ab256525ff0084b52a889d4e4c60cee" 1494 - dependencies = [ 1495 - "cc", 1496 - "codespan-reporting", 1497 - "once_cell", 1498 - "proc-macro2", 1499 - "quote", 1500 - "scratch", 1501 - "syn 2.0.66", 1502 - ] 1503 - 1504 - [[package]] 1505 - name = "cxxbridge-flags" 1506 - version = "1.0.122" 1507 - source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "688c799a4a846f1c0acb9f36bb9c6272d9b3d9457f3633c7753c6057270df13c" 1509 - 1510 - [[package]] 1511 - name = "cxxbridge-macro" 1512 - version = "1.0.122" 1513 - source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "928bc249a7e3cd554fd2e8e08a426e9670c50bbfc9a621653cfa9accc9641783" 1515 - dependencies = [ 1516 - "proc-macro2", 1517 - "quote", 1518 - "syn 2.0.66", 1519 - ] 1520 - 1521 - [[package]] 1522 - name = "darling" 1523 - version = "0.20.9" 1524 - source = "registry+https://github.com/rust-lang/crates.io-index" 1525 - checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" 1526 - dependencies = [ 1527 - "darling_core", 1528 - "darling_macro", 1529 - ] 1530 - 1531 - [[package]] 1532 - name = "darling_core" 1533 - version = "0.20.9" 1534 - source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" 1536 - dependencies = [ 1537 - "fnv", 1538 - "ident_case", 1539 - "proc-macro2", 1540 - "quote", 1541 - "strsim", 1542 - "syn 2.0.66", 1543 - ] 1544 - 1545 - [[package]] 1546 - name = "darling_macro" 1547 - version = "0.20.9" 1548 - source = "registry+https://github.com/rust-lang/crates.io-index" 1549 - checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" 1550 - dependencies = [ 1551 - "darling_core", 1552 - "quote", 1553 - "syn 2.0.66", 1554 - ] 1555 - 1556 - [[package]] 1557 - name = "der" 1558 - version = "0.6.1" 1559 - source = "registry+https://github.com/rust-lang/crates.io-index" 1560 - checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 1561 - dependencies = [ 1562 - "const-oid", 1563 - "pem-rfc7468 0.6.0", 1564 - "zeroize", 1565 - ] 1566 - 1567 - [[package]] 1568 - name = "der" 1569 - version = "0.7.9" 1570 - source = "registry+https://github.com/rust-lang/crates.io-index" 1571 - checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" 1572 - dependencies = [ 1573 - "const-oid", 1574 - "pem-rfc7468 0.7.0", 1575 - "zeroize", 1576 - ] 1577 - 1578 - [[package]] 1579 - name = "deranged" 1580 - version = "0.3.11" 1581 - source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 1583 - dependencies = [ 1584 - "powerfmt", 1585 - "serde", 1586 - ] 1587 - 1588 - [[package]] 1589 - name = "derivative" 1590 - version = "2.2.0" 1591 - source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 1593 - dependencies = [ 1594 - "proc-macro2", 1595 - "quote", 1596 - "syn 1.0.109", 1597 - ] 1598 - 1599 - [[package]] 1600 - name = "dialoguer" 1601 - version = "0.11.0" 1602 - source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" 1604 - dependencies = [ 1605 - "console", 1606 - "shell-words", 1607 - "tempfile", 1608 - "thiserror", 1609 - "zeroize", 1610 - ] 1611 - 1612 - [[package]] 1613 - name = "digest" 1614 - version = "0.10.7" 1615 - source = "registry+https://github.com/rust-lang/crates.io-index" 1616 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1617 - dependencies = [ 1618 - "block-buffer", 1619 - "const-oid", 1620 - "crypto-common", 1621 - "subtle", 1622 - ] 1623 - 1624 - [[package]] 1625 - name = "displaydoc" 1626 - version = "0.2.4" 1627 - source = "registry+https://github.com/rust-lang/crates.io-index" 1628 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 1629 - dependencies = [ 1630 - "proc-macro2", 1631 - "quote", 1632 - "syn 2.0.66", 1633 - ] 1634 - 1635 - [[package]] 1636 - name = "dotenvy" 1637 - version = "0.15.7" 1638 - source = "registry+https://github.com/rust-lang/crates.io-index" 1639 - checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1640 - 1641 - [[package]] 1642 - name = "ecdsa" 1643 - version = "0.14.8" 1644 - source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 1646 - dependencies = [ 1647 - "der 0.6.1", 1648 - "elliptic-curve 0.12.3", 1649 - "rfc6979 0.3.1", 1650 - "signature 1.6.4", 1651 - ] 1652 - 1653 - [[package]] 1654 - name = "ecdsa" 1655 - version = "0.16.9" 1656 - source = "registry+https://github.com/rust-lang/crates.io-index" 1657 - checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1658 - dependencies = [ 1659 - "der 0.7.9", 1660 - "digest", 1661 - "elliptic-curve 0.13.8", 1662 - "rfc6979 0.4.0", 1663 - "signature 2.2.0", 1664 - "spki 0.7.3", 1665 - ] 1666 - 1667 - [[package]] 1668 - name = "ed25519-compact" 1669 - version = "2.1.1" 1670 - source = "registry+https://github.com/rust-lang/crates.io-index" 1671 - checksum = "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190" 1672 - dependencies = [ 1673 - "ct-codecs", 1674 - "getrandom", 1675 - ] 1676 - 1677 - [[package]] 1678 - name = "either" 1679 - version = "1.12.0" 1680 - source = "registry+https://github.com/rust-lang/crates.io-index" 1681 - checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" 1682 - dependencies = [ 1683 - "serde", 1684 - ] 1685 - 1686 - [[package]] 1687 - name = "elliptic-curve" 1688 - version = "0.12.3" 1689 - source = "registry+https://github.com/rust-lang/crates.io-index" 1690 - checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 1691 - dependencies = [ 1692 - "base16ct 0.1.1", 1693 - "crypto-bigint 0.4.9", 1694 - "der 0.6.1", 1695 - "digest", 1696 - "ff 0.12.1", 1697 - "generic-array", 1698 - "group 0.12.1", 1699 - "pkcs8 0.9.0", 1700 - "rand_core", 1701 - "sec1 0.3.0", 1702 - "subtle", 1703 - "zeroize", 1704 - ] 1705 - 1706 - [[package]] 1707 - name = "elliptic-curve" 1708 - version = "0.13.8" 1709 - source = "registry+https://github.com/rust-lang/crates.io-index" 1710 - checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1711 - dependencies = [ 1712 - "base16ct 0.2.0", 1713 - "crypto-bigint 0.5.5", 1714 - "digest", 1715 - "ff 0.13.0", 1716 - "generic-array", 1717 - "group 0.13.0", 1718 - "hkdf", 1719 - "pem-rfc7468 0.7.0", 1720 - "pkcs8 0.10.2", 1721 - "rand_core", 1722 - "sec1 0.7.3", 1723 - "subtle", 1724 - "zeroize", 1725 - ] 1726 - 1727 - [[package]] 1728 - name = "encode_unicode" 1729 - version = "0.3.6" 1730 - source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1732 - 1733 - [[package]] 1734 - name = "enum-as-inner" 1735 - version = "0.6.0" 1736 - source = "registry+https://github.com/rust-lang/crates.io-index" 1737 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 1738 - dependencies = [ 1739 - "heck 0.4.1", 1740 - "proc-macro2", 1741 - "quote", 1742 - "syn 2.0.66", 1743 - ] 1744 - 1745 - [[package]] 1746 - name = "equivalent" 1747 - version = "1.0.1" 1748 - source = "registry+https://github.com/rust-lang/crates.io-index" 1749 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 1750 - 1751 - [[package]] 1752 - name = "errno" 1753 - version = "0.3.9" 1754 - source = "registry+https://github.com/rust-lang/crates.io-index" 1755 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1756 - dependencies = [ 1757 - "libc", 1758 - "windows-sys 0.52.0", 1759 - ] 1760 - 1761 - [[package]] 1762 - name = "etcetera" 1763 - version = "0.8.0" 1764 - source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 1766 - dependencies = [ 1767 - "cfg-if", 1768 - "home", 1769 - "windows-sys 0.48.0", 1770 - ] 1771 - 1772 - [[package]] 1773 - name = "event-listener" 1774 - version = "2.5.3" 1775 - source = "registry+https://github.com/rust-lang/crates.io-index" 1776 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1777 - 1778 - [[package]] 1779 - name = "event-listener" 1780 - version = "5.3.1" 1781 - source = "registry+https://github.com/rust-lang/crates.io-index" 1782 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 1783 - dependencies = [ 1784 - "concurrent-queue", 1785 - "parking", 1786 - "pin-project-lite", 1787 - ] 1788 - 1789 - [[package]] 1790 - name = "event-listener-strategy" 1791 - version = "0.5.2" 1792 - source = "registry+https://github.com/rust-lang/crates.io-index" 1793 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1794 - dependencies = [ 1795 - "event-listener 5.3.1", 1796 - "pin-project-lite", 1797 - ] 1798 - 1799 - [[package]] 1800 - name = "fastcdc" 1801 - version = "3.1.0" 1802 - source = "registry+https://github.com/rust-lang/crates.io-index" 1803 - checksum = "a71061d097bfa9a5a4d2efdec57990d9a88745020b365191d37e48541a1628f2" 1804 - dependencies = [ 1805 - "async-stream", 1806 - "tokio", 1807 - "tokio-stream", 1808 - ] 1809 - 1810 - [[package]] 1811 - name = "fastrand" 1812 - version = "2.1.0" 1813 - source = "registry+https://github.com/rust-lang/crates.io-index" 1814 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1815 - 1816 - [[package]] 1817 - name = "ff" 1818 - version = "0.12.1" 1819 - source = "registry+https://github.com/rust-lang/crates.io-index" 1820 - checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 1821 - dependencies = [ 1822 - "rand_core", 1823 - "subtle", 1824 - ] 1825 - 1826 - [[package]] 1827 - name = "ff" 1828 - version = "0.13.0" 1829 - source = "registry+https://github.com/rust-lang/crates.io-index" 1830 - checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 1831 - dependencies = [ 1832 - "rand_core", 1833 - "subtle", 1834 - ] 1835 - 1836 - [[package]] 1837 - name = "filetime" 1838 - version = "0.2.23" 1839 - source = "registry+https://github.com/rust-lang/crates.io-index" 1840 - checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 1841 - dependencies = [ 1842 - "cfg-if", 1843 - "libc", 1844 - "redox_syscall 0.4.1", 1845 - "windows-sys 0.52.0", 1846 - ] 1847 - 1848 - [[package]] 1849 - name = "flate2" 1850 - version = "1.0.30" 1851 - source = "registry+https://github.com/rust-lang/crates.io-index" 1852 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 1853 - dependencies = [ 1854 - "crc32fast", 1855 - "miniz_oxide", 1856 - ] 1857 - 1858 - [[package]] 1859 - name = "flume" 1860 - version = "0.11.0" 1861 - source = "registry+https://github.com/rust-lang/crates.io-index" 1862 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 1863 - dependencies = [ 1864 - "futures-core", 1865 - "futures-sink", 1866 - "spin 0.9.8", 1867 - ] 1868 - 1869 - [[package]] 1870 - name = "fnv" 1871 - version = "1.0.7" 1872 - source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1874 - 1875 - [[package]] 1876 - name = "form_urlencoded" 1877 - version = "1.2.1" 1878 - source = "registry+https://github.com/rust-lang/crates.io-index" 1879 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1880 - dependencies = [ 1881 - "percent-encoding", 1882 - ] 1883 - 1884 - [[package]] 1885 - name = "funty" 1886 - version = "2.0.0" 1887 - source = "registry+https://github.com/rust-lang/crates.io-index" 1888 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1889 - 1890 - [[package]] 1891 - name = "futures" 1892 - version = "0.3.30" 1893 - source = "registry+https://github.com/rust-lang/crates.io-index" 1894 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 1895 - dependencies = [ 1896 - "futures-channel", 1897 - "futures-core", 1898 - "futures-executor", 1899 - "futures-io", 1900 - "futures-sink", 1901 - "futures-task", 1902 - "futures-util", 1903 - ] 1904 - 1905 - [[package]] 1906 - name = "futures-channel" 1907 - version = "0.3.30" 1908 - source = "registry+https://github.com/rust-lang/crates.io-index" 1909 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 1910 - dependencies = [ 1911 - "futures-core", 1912 - "futures-sink", 1913 - ] 1914 - 1915 - [[package]] 1916 - name = "futures-core" 1917 - version = "0.3.30" 1918 - source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 1920 - 1921 - [[package]] 1922 - name = "futures-executor" 1923 - version = "0.3.30" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 1926 - dependencies = [ 1927 - "futures-core", 1928 - "futures-task", 1929 - "futures-util", 1930 - ] 1931 - 1932 - [[package]] 1933 - name = "futures-intrusive" 1934 - version = "0.5.0" 1935 - source = "registry+https://github.com/rust-lang/crates.io-index" 1936 - checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 1937 - dependencies = [ 1938 - "futures-core", 1939 - "lock_api", 1940 - "parking_lot", 1941 - ] 1942 - 1943 - [[package]] 1944 - name = "futures-io" 1945 - version = "0.3.30" 1946 - source = "registry+https://github.com/rust-lang/crates.io-index" 1947 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 1948 - 1949 - [[package]] 1950 - name = "futures-macro" 1951 - version = "0.3.30" 1952 - source = "registry+https://github.com/rust-lang/crates.io-index" 1953 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 1954 - dependencies = [ 1955 - "proc-macro2", 1956 - "quote", 1957 - "syn 2.0.66", 1958 - ] 1959 - 1960 - [[package]] 1961 - name = "futures-sink" 1962 - version = "0.3.30" 1963 - source = "registry+https://github.com/rust-lang/crates.io-index" 1964 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 1965 - 1966 - [[package]] 1967 - name = "futures-task" 1968 - version = "0.3.30" 1969 - source = "registry+https://github.com/rust-lang/crates.io-index" 1970 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 1971 - 1972 - [[package]] 1973 - name = "futures-util" 1974 - version = "0.3.30" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 1977 - dependencies = [ 1978 - "futures-channel", 1979 - "futures-core", 1980 - "futures-io", 1981 - "futures-macro", 1982 - "futures-sink", 1983 - "futures-task", 1984 - "memchr", 1985 - "pin-project-lite", 1986 - "pin-utils", 1987 - "slab", 1988 - ] 1989 - 1990 - [[package]] 1991 - name = "generic-array" 1992 - version = "0.14.7" 1993 - source = "registry+https://github.com/rust-lang/crates.io-index" 1994 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1995 - dependencies = [ 1996 - "typenum", 1997 - "version_check", 1998 - "zeroize", 1999 - ] 2000 - 2001 - [[package]] 2002 - name = "getrandom" 2003 - version = "0.2.15" 2004 - source = "registry+https://github.com/rust-lang/crates.io-index" 2005 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 2006 - dependencies = [ 2007 - "cfg-if", 2008 - "js-sys", 2009 - "libc", 2010 - "wasi", 2011 - "wasm-bindgen", 2012 - ] 2013 - 2014 - [[package]] 2015 - name = "gimli" 2016 - version = "0.29.0" 2017 - source = "registry+https://github.com/rust-lang/crates.io-index" 2018 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 2019 - 2020 - [[package]] 2021 - name = "glob" 2022 - version = "0.3.1" 2023 - source = "registry+https://github.com/rust-lang/crates.io-index" 2024 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 2025 - 2026 - [[package]] 2027 - name = "group" 2028 - version = "0.12.1" 2029 - source = "registry+https://github.com/rust-lang/crates.io-index" 2030 - checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 2031 - dependencies = [ 2032 - "ff 0.12.1", 2033 - "rand_core", 2034 - "subtle", 2035 - ] 2036 - 2037 - [[package]] 2038 - name = "group" 2039 - version = "0.13.0" 2040 - source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2042 - dependencies = [ 2043 - "ff 0.13.0", 2044 - "rand_core", 2045 - "subtle", 2046 - ] 2047 - 2048 - [[package]] 2049 - name = "h2" 2050 - version = "0.3.26" 2051 - source = "registry+https://github.com/rust-lang/crates.io-index" 2052 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 2053 - dependencies = [ 2054 - "bytes", 2055 - "fnv", 2056 - "futures-core", 2057 - "futures-sink", 2058 - "futures-util", 2059 - "http 0.2.12", 2060 - "indexmap 2.2.6", 2061 - "slab", 2062 - "tokio", 2063 - "tokio-util", 2064 - "tracing", 2065 - ] 2066 - 2067 - [[package]] 2068 - name = "half" 2069 - version = "2.4.1" 2070 - source = "registry+https://github.com/rust-lang/crates.io-index" 2071 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 2072 - dependencies = [ 2073 - "cfg-if", 2074 - "crunchy", 2075 - ] 2076 - 2077 - [[package]] 2078 - name = "hashbrown" 2079 - version = "0.12.3" 2080 - source = "registry+https://github.com/rust-lang/crates.io-index" 2081 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2082 - dependencies = [ 2083 - "ahash 0.7.8", 2084 - ] 2085 - 2086 - [[package]] 2087 - name = "hashbrown" 2088 - version = "0.14.5" 2089 - source = "registry+https://github.com/rust-lang/crates.io-index" 2090 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 2091 - dependencies = [ 2092 - "ahash 0.8.11", 2093 - "allocator-api2", 2094 - ] 2095 - 2096 - [[package]] 2097 - name = "hashlink" 2098 - version = "0.8.4" 2099 - source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 2101 - dependencies = [ 2102 - "hashbrown 0.14.5", 2103 - ] 2104 - 2105 - [[package]] 2106 - name = "hdrhistogram" 2107 - version = "7.5.4" 2108 - source = "registry+https://github.com/rust-lang/crates.io-index" 2109 - checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" 2110 - dependencies = [ 2111 - "base64 0.21.7", 2112 - "byteorder", 2113 - "flate2", 2114 - "nom", 2115 - "num-traits", 2116 - ] 2117 - 2118 - [[package]] 2119 - name = "heck" 2120 - version = "0.4.1" 2121 - source = "registry+https://github.com/rust-lang/crates.io-index" 2122 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2123 - dependencies = [ 2124 - "unicode-segmentation", 2125 - ] 2126 - 2127 - [[package]] 2128 - name = "heck" 2129 - version = "0.5.0" 2130 - source = "registry+https://github.com/rust-lang/crates.io-index" 2131 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2132 - 2133 - [[package]] 2134 - name = "hermit-abi" 2135 - version = "0.3.9" 2136 - source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 2138 - 2139 - [[package]] 2140 - name = "hex" 2141 - version = "0.4.3" 2142 - source = "registry+https://github.com/rust-lang/crates.io-index" 2143 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2144 - 2145 - [[package]] 2146 - name = "hkdf" 2147 - version = "0.12.4" 2148 - source = "registry+https://github.com/rust-lang/crates.io-index" 2149 - checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2150 - dependencies = [ 2151 - "hmac", 2152 - ] 2153 - 2154 - [[package]] 2155 - name = "hmac" 2156 - version = "0.12.1" 2157 - source = "registry+https://github.com/rust-lang/crates.io-index" 2158 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2159 - dependencies = [ 2160 - "digest", 2161 - ] 2162 - 2163 - [[package]] 2164 - name = "hmac-sha1-compact" 2165 - version = "1.1.4" 2166 - source = "registry+https://github.com/rust-lang/crates.io-index" 2167 - checksum = "dff9d405ec732fa3fcde87264e54a32a84956a377b3e3107de96e59b798c84a7" 2168 - 2169 - [[package]] 2170 - name = "hmac-sha256" 2171 - version = "1.1.7" 2172 - source = "registry+https://github.com/rust-lang/crates.io-index" 2173 - checksum = "3688e69b38018fec1557254f64c8dc2cc8ec502890182f395dbb0aa997aa5735" 2174 - dependencies = [ 2175 - "digest", 2176 - ] 2177 - 2178 - [[package]] 2179 - name = "hmac-sha512" 2180 - version = "1.1.5" 2181 - source = "registry+https://github.com/rust-lang/crates.io-index" 2182 - checksum = "e4ce1f4656bae589a3fab938f9f09bf58645b7ed01a2c5f8a3c238e01a4ef78a" 2183 - dependencies = [ 2184 - "digest", 2185 - ] 2186 - 2187 - [[package]] 2188 - name = "home" 2189 - version = "0.5.9" 2190 - source = "registry+https://github.com/rust-lang/crates.io-index" 2191 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 2192 - dependencies = [ 2193 - "windows-sys 0.52.0", 2194 - ] 2195 - 2196 - [[package]] 2197 - name = "http" 2198 - version = "0.2.12" 2199 - source = "registry+https://github.com/rust-lang/crates.io-index" 2200 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2201 - dependencies = [ 2202 - "bytes", 2203 - "fnv", 2204 - "itoa", 2205 - ] 2206 - 2207 - [[package]] 2208 - name = "http" 2209 - version = "1.1.0" 2210 - source = "registry+https://github.com/rust-lang/crates.io-index" 2211 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 2212 - dependencies = [ 2213 - "bytes", 2214 - "fnv", 2215 - "itoa", 2216 - ] 2217 - 2218 - [[package]] 2219 - name = "http-body" 2220 - version = "0.4.6" 2221 - source = "registry+https://github.com/rust-lang/crates.io-index" 2222 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2223 - dependencies = [ 2224 - "bytes", 2225 - "http 0.2.12", 2226 - "pin-project-lite", 2227 - ] 2228 - 2229 - [[package]] 2230 - name = "http-body" 2231 - version = "1.0.0" 2232 - source = "registry+https://github.com/rust-lang/crates.io-index" 2233 - checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 2234 - dependencies = [ 2235 - "bytes", 2236 - "http 1.1.0", 2237 - ] 2238 - 2239 - [[package]] 2240 - name = "http-body-util" 2241 - version = "0.1.1" 2242 - source = "registry+https://github.com/rust-lang/crates.io-index" 2243 - checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" 2244 - dependencies = [ 2245 - "bytes", 2246 - "futures-core", 2247 - "http 1.1.0", 2248 - "http-body 1.0.0", 2249 - "pin-project-lite", 2250 - ] 2251 - 2252 - [[package]] 2253 - name = "httparse" 2254 - version = "1.8.0" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2257 - 2258 - [[package]] 2259 - name = "httpdate" 2260 - version = "1.0.3" 2261 - source = "registry+https://github.com/rust-lang/crates.io-index" 2262 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2263 - 2264 - [[package]] 2265 - name = "humantime" 2266 - version = "2.1.0" 2267 - source = "registry+https://github.com/rust-lang/crates.io-index" 2268 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 2269 - 2270 - [[package]] 2271 - name = "humantime-serde" 2272 - version = "1.1.1" 2273 - source = "registry+https://github.com/rust-lang/crates.io-index" 2274 - checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" 2275 - dependencies = [ 2276 - "humantime", 2277 - "serde", 2278 - ] 2279 - 2280 - [[package]] 2281 - name = "hyper" 2282 - version = "0.14.28" 2283 - source = "registry+https://github.com/rust-lang/crates.io-index" 2284 - checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 2285 - dependencies = [ 2286 - "bytes", 2287 - "futures-channel", 2288 - "futures-core", 2289 - "futures-util", 2290 - "h2", 2291 - "http 0.2.12", 2292 - "http-body 0.4.6", 2293 - "httparse", 2294 - "httpdate", 2295 - "itoa", 2296 - "pin-project-lite", 2297 - "socket2", 2298 - "tokio", 2299 - "tower-service", 2300 - "tracing", 2301 - "want", 2302 - ] 2303 - 2304 - [[package]] 2305 - name = "hyper" 2306 - version = "1.3.1" 2307 - source = "registry+https://github.com/rust-lang/crates.io-index" 2308 - checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" 2309 - dependencies = [ 2310 - "bytes", 2311 - "futures-channel", 2312 - "futures-util", 2313 - "http 1.1.0", 2314 - "http-body 1.0.0", 2315 - "httparse", 2316 - "httpdate", 2317 - "itoa", 2318 - "pin-project-lite", 2319 - "smallvec", 2320 - "tokio", 2321 - "want", 2322 - ] 2323 - 2324 - [[package]] 2325 - name = "hyper-rustls" 2326 - version = "0.24.2" 2327 - source = "registry+https://github.com/rust-lang/crates.io-index" 2328 - checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2329 - dependencies = [ 2330 - "futures-util", 2331 - "http 0.2.12", 2332 - "hyper 0.14.28", 2333 - "log", 2334 - "rustls 0.21.12", 2335 - "rustls-native-certs 0.6.3", 2336 - "tokio", 2337 - "tokio-rustls 0.24.1", 2338 - ] 2339 - 2340 - [[package]] 2341 - name = "hyper-rustls" 2342 - version = "0.26.0" 2343 - source = "registry+https://github.com/rust-lang/crates.io-index" 2344 - checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" 2345 - dependencies = [ 2346 - "futures-util", 2347 - "http 1.1.0", 2348 - "hyper 1.3.1", 2349 - "hyper-util", 2350 - "rustls 0.22.4", 2351 - "rustls-pki-types", 2352 - "tokio", 2353 - "tokio-rustls 0.25.0", 2354 - "tower-service", 2355 - ] 2356 - 2357 - [[package]] 2358 - name = "hyper-timeout" 2359 - version = "0.4.1" 2360 - source = "registry+https://github.com/rust-lang/crates.io-index" 2361 - checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 2362 - dependencies = [ 2363 - "hyper 0.14.28", 2364 - "pin-project-lite", 2365 - "tokio", 2366 - "tokio-io-timeout", 2367 - ] 2368 - 2369 - [[package]] 2370 - name = "hyper-util" 2371 - version = "0.1.5" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56" 2374 - dependencies = [ 2375 - "bytes", 2376 - "futures-channel", 2377 - "futures-util", 2378 - "http 1.1.0", 2379 - "http-body 1.0.0", 2380 - "hyper 1.3.1", 2381 - "pin-project-lite", 2382 - "socket2", 2383 - "tokio", 2384 - "tower", 2385 - "tower-service", 2386 - "tracing", 2387 - ] 2388 - 2389 - [[package]] 2390 - name = "iana-time-zone" 2391 - version = "0.1.60" 2392 - source = "registry+https://github.com/rust-lang/crates.io-index" 2393 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 2394 - dependencies = [ 2395 - "android_system_properties", 2396 - "core-foundation-sys", 2397 - "iana-time-zone-haiku", 2398 - "js-sys", 2399 - "wasm-bindgen", 2400 - "windows-core", 2401 - ] 2402 - 2403 - [[package]] 2404 - name = "iana-time-zone-haiku" 2405 - version = "0.1.2" 2406 - source = "registry+https://github.com/rust-lang/crates.io-index" 2407 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2408 - dependencies = [ 2409 - "cc", 2410 - ] 2411 - 2412 - [[package]] 2413 - name = "ident_case" 2414 - version = "1.0.1" 2415 - source = "registry+https://github.com/rust-lang/crates.io-index" 2416 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2417 - 2418 - [[package]] 2419 - name = "idna" 2420 - version = "0.5.0" 2421 - source = "registry+https://github.com/rust-lang/crates.io-index" 2422 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2423 - dependencies = [ 2424 - "unicode-bidi", 2425 - "unicode-normalization", 2426 - ] 2427 - 2428 - [[package]] 2429 - name = "indexmap" 2430 - version = "1.9.3" 2431 - source = "registry+https://github.com/rust-lang/crates.io-index" 2432 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2433 - dependencies = [ 2434 - "autocfg", 2435 - "hashbrown 0.12.3", 2436 - "serde", 2437 - ] 2438 - 2439 - [[package]] 2440 - name = "indexmap" 2441 - version = "2.2.6" 2442 - source = "registry+https://github.com/rust-lang/crates.io-index" 2443 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 2444 - dependencies = [ 2445 - "equivalent", 2446 - "hashbrown 0.14.5", 2447 - "serde", 2448 - ] 2449 - 2450 - [[package]] 2451 - name = "indicatif" 2452 - version = "0.17.8" 2453 - source = "registry+https://github.com/rust-lang/crates.io-index" 2454 - checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" 2455 - dependencies = [ 2456 - "console", 2457 - "instant", 2458 - "number_prefix", 2459 - "portable-atomic", 2460 - "unicode-width", 2461 - ] 2462 - 2463 - [[package]] 2464 - name = "inherent" 2465 - version = "1.0.11" 2466 - source = "registry+https://github.com/rust-lang/crates.io-index" 2467 - checksum = "0122b7114117e64a63ac49f752a5ca4624d534c7b1c7de796ac196381cd2d947" 2468 - dependencies = [ 2469 - "proc-macro2", 2470 - "quote", 2471 - "syn 2.0.66", 2472 - ] 2473 - 2474 - [[package]] 2475 - name = "inotify" 2476 - version = "0.10.2" 2477 - source = "registry+https://github.com/rust-lang/crates.io-index" 2478 - checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc" 2479 - dependencies = [ 2480 - "bitflags 1.3.2", 2481 - "inotify-sys", 2482 - "libc", 2483 - ] 2484 - 2485 - [[package]] 2486 - name = "inotify-sys" 2487 - version = "0.1.5" 2488 - source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 2490 - dependencies = [ 2491 - "libc", 2492 - ] 2493 - 2494 - [[package]] 2495 - name = "instant" 2496 - version = "0.1.13" 2497 - source = "registry+https://github.com/rust-lang/crates.io-index" 2498 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 2499 - dependencies = [ 2500 - "cfg-if", 2501 - ] 2502 - 2503 - [[package]] 2504 - name = "ipnet" 2505 - version = "2.9.0" 2506 - source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 2508 - 2509 - [[package]] 2510 - name = "is-terminal" 2511 - version = "0.4.12" 2512 - source = "registry+https://github.com/rust-lang/crates.io-index" 2513 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 2514 - dependencies = [ 2515 - "hermit-abi", 2516 - "libc", 2517 - "windows-sys 0.52.0", 2518 - ] 2519 - 2520 - [[package]] 2521 - name = "is_terminal_polyfill" 2522 - version = "1.70.0" 2523 - source = "registry+https://github.com/rust-lang/crates.io-index" 2524 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 2525 - 2526 - [[package]] 2527 - name = "itertools" 2528 - version = "0.10.5" 2529 - source = "registry+https://github.com/rust-lang/crates.io-index" 2530 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2531 - dependencies = [ 2532 - "either", 2533 - ] 2534 - 2535 - [[package]] 2536 - name = "itertools" 2537 - version = "0.12.1" 2538 - source = "registry+https://github.com/rust-lang/crates.io-index" 2539 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 2540 - dependencies = [ 2541 - "either", 2542 - ] 2543 - 2544 - [[package]] 2545 - name = "itoa" 2546 - version = "1.0.5" 2547 - source = "registry+https://github.com/rust-lang/crates.io-index" 2548 - checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 2549 - 2550 - [[package]] 2551 - name = "jobserver" 2552 - version = "0.1.31" 2553 - source = "registry+https://github.com/rust-lang/crates.io-index" 2554 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 2555 - dependencies = [ 2556 - "libc", 2557 - ] 2558 - 2559 - [[package]] 2560 - name = "js-sys" 2561 - version = "0.3.69" 2562 - source = "registry+https://github.com/rust-lang/crates.io-index" 2563 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 2564 - dependencies = [ 2565 - "wasm-bindgen", 2566 - ] 2567 - 2568 - [[package]] 2569 - name = "jwt-simple" 2570 - version = "0.11.9" 2571 - source = "registry+https://github.com/rust-lang/crates.io-index" 2572 - checksum = "357892bb32159d763abdea50733fadcb9a8e1c319a9aa77592db8555d05af83e" 2573 - dependencies = [ 2574 - "anyhow", 2575 - "binstring", 2576 - "coarsetime", 2577 - "ct-codecs", 2578 - "ed25519-compact", 2579 - "hmac-sha1-compact", 2580 - "hmac-sha256", 2581 - "hmac-sha512", 2582 - "k256", 2583 - "p256 0.13.2", 2584 - "p384", 2585 - "rand", 2586 - "rsa 0.7.2", 2587 - "serde", 2588 - "serde_json", 2589 - "spki 0.6.0", 2590 - "thiserror", 2591 - "zeroize", 2592 - ] 2593 - 2594 - [[package]] 2595 - name = "k256" 2596 - version = "0.13.3" 2597 - source = "registry+https://github.com/rust-lang/crates.io-index" 2598 - checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" 2599 - dependencies = [ 2600 - "cfg-if", 2601 - "ecdsa 0.16.9", 2602 - "elliptic-curve 0.13.8", 2603 - "once_cell", 2604 - "sha2", 2605 - "signature 2.2.0", 2606 - ] 2607 - 2608 - [[package]] 2609 - name = "kqueue" 2610 - version = "1.0.8" 2611 - source = "registry+https://github.com/rust-lang/crates.io-index" 2612 - checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 2613 - dependencies = [ 2614 - "kqueue-sys", 2615 - "libc", 2616 - ] 2617 - 2618 - [[package]] 2619 - name = "kqueue-sys" 2620 - version = "1.0.4" 2621 - source = "registry+https://github.com/rust-lang/crates.io-index" 2622 - checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 2623 - dependencies = [ 2624 - "bitflags 1.3.2", 2625 - "libc", 2626 - ] 2627 - 2628 - [[package]] 2629 - name = "lazy_static" 2630 - version = "1.4.0" 2631 - source = "registry+https://github.com/rust-lang/crates.io-index" 2632 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2633 - dependencies = [ 2634 - "spin 0.5.2", 2635 - ] 2636 - 2637 - [[package]] 2638 - name = "libc" 2639 - version = "0.2.155" 2640 - source = "registry+https://github.com/rust-lang/crates.io-index" 2641 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2642 - 2643 - [[package]] 2644 - name = "libm" 2645 - version = "0.2.8" 2646 - source = "registry+https://github.com/rust-lang/crates.io-index" 2647 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2648 - 2649 - [[package]] 2650 - name = "libsqlite3-sys" 2651 - version = "0.27.0" 2652 - source = "registry+https://github.com/rust-lang/crates.io-index" 2653 - checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 2654 - dependencies = [ 2655 - "cc", 2656 - "pkg-config", 2657 - "vcpkg", 2658 - ] 2659 - 2660 - [[package]] 2661 - name = "link-cplusplus" 2662 - version = "1.0.9" 2663 - source = "registry+https://github.com/rust-lang/crates.io-index" 2664 - checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" 2665 - dependencies = [ 2666 - "cc", 2667 - ] 2668 - 2669 - [[package]] 2670 - name = "linux-raw-sys" 2671 - version = "0.4.14" 2672 - source = "registry+https://github.com/rust-lang/crates.io-index" 2673 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2674 - 2675 - [[package]] 2676 - name = "lock_api" 2677 - version = "0.4.12" 2678 - source = "registry+https://github.com/rust-lang/crates.io-index" 2679 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2680 - dependencies = [ 2681 - "autocfg", 2682 - "scopeguard", 2683 - ] 2684 - 2685 - [[package]] 2686 - name = "log" 2687 - version = "0.4.21" 2688 - source = "registry+https://github.com/rust-lang/crates.io-index" 2689 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 2690 - 2691 - [[package]] 2692 - name = "lru" 2693 - version = "0.12.3" 2694 - source = "registry+https://github.com/rust-lang/crates.io-index" 2695 - checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 2696 - dependencies = [ 2697 - "hashbrown 0.14.5", 2698 - ] 2699 - 2700 - [[package]] 2701 - name = "lzma-sys" 2702 - version = "0.1.20" 2703 - source = "registry+https://github.com/rust-lang/crates.io-index" 2704 - checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 2705 - dependencies = [ 2706 - "cc", 2707 - "libc", 2708 - "pkg-config", 2709 - ] 2710 - 2711 - [[package]] 2712 - name = "matchers" 2713 - version = "0.1.0" 2714 - source = "registry+https://github.com/rust-lang/crates.io-index" 2715 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2716 - dependencies = [ 2717 - "regex-automata 0.1.10", 2718 - ] 2719 - 2720 - [[package]] 2721 - name = "matchit" 2722 - version = "0.7.3" 2723 - source = "registry+https://github.com/rust-lang/crates.io-index" 2724 - checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 2725 - 2726 - [[package]] 2727 - name = "maybe-owned" 2728 - version = "0.3.4" 2729 - source = "registry+https://github.com/rust-lang/crates.io-index" 2730 - checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" 2731 - 2732 - [[package]] 2733 - name = "md-5" 2734 - version = "0.10.6" 2735 - source = "registry+https://github.com/rust-lang/crates.io-index" 2736 - checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2737 - dependencies = [ 2738 - "cfg-if", 2739 - "digest", 2740 - ] 2741 - 2742 - [[package]] 2743 - name = "memchr" 2744 - version = "2.7.2" 2745 - source = "registry+https://github.com/rust-lang/crates.io-index" 2746 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 2747 - 2748 - [[package]] 2749 - name = "mime" 2750 - version = "0.3.17" 2751 - source = "registry+https://github.com/rust-lang/crates.io-index" 2752 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2753 - 2754 - [[package]] 2755 - name = "minimal-lexical" 2756 - version = "0.2.1" 2757 - source = "registry+https://github.com/rust-lang/crates.io-index" 2758 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2759 - 2760 - [[package]] 2761 - name = "miniz_oxide" 2762 - version = "0.7.3" 2763 - source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" 2765 - dependencies = [ 2766 - "adler", 2767 - ] 2768 - 2769 - [[package]] 2770 - name = "mio" 2771 - version = "0.8.11" 2772 - source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 2774 - dependencies = [ 2775 - "libc", 2776 - "wasi", 2777 - "windows-sys 0.48.0", 2778 - ] 2779 - 2780 - [[package]] 2781 - name = "mio" 2782 - version = "1.0.2" 2783 - source = "registry+https://github.com/rust-lang/crates.io-index" 2784 - checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 2785 - dependencies = [ 2786 - "hermit-abi", 2787 - "libc", 2788 - "log", 2789 - "wasi", 2790 - "windows-sys 0.52.0", 2791 - ] 2792 - 2793 - [[package]] 2794 - name = "nix-base32" 2795 - version = "0.2.0" 2796 - source = "registry+https://github.com/rust-lang/crates.io-index" 2797 - checksum = "d2628953ed836273ee4262e3708a8ef63ca38bd8a922070626eef7f9e5d8d536" 2798 - 2799 - [[package]] 2800 - name = "nom" 2801 - version = "7.1.3" 2802 - source = "registry+https://github.com/rust-lang/crates.io-index" 2803 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2804 - dependencies = [ 2805 - "memchr", 2806 - "minimal-lexical", 2807 - ] 2808 - 2809 - [[package]] 2810 - name = "notify" 2811 - version = "7.0.0" 2812 - source = "registry+https://github.com/rust-lang/crates.io-index" 2813 - checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009" 2814 - dependencies = [ 2815 - "bitflags 2.5.0", 2816 - "filetime", 2817 - "inotify", 2818 - "kqueue", 2819 - "libc", 2820 - "log", 2821 - "mio 1.0.2", 2822 - "notify-types", 2823 - "walkdir", 2824 - "windows-sys 0.52.0", 2825 - ] 2826 - 2827 - [[package]] 2828 - name = "notify-types" 2829 - version = "1.0.0" 2830 - source = "registry+https://github.com/rust-lang/crates.io-index" 2831 - checksum = "7393c226621f817964ffb3dc5704f9509e107a8b024b489cc2c1b217378785df" 2832 - dependencies = [ 2833 - "instant", 2834 - ] 2835 - 2836 - [[package]] 2837 - name = "nu-ansi-term" 2838 - version = "0.46.0" 2839 - source = "registry+https://github.com/rust-lang/crates.io-index" 2840 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2841 - dependencies = [ 2842 - "overload", 2843 - "winapi", 2844 - ] 2845 - 2846 - [[package]] 2847 - name = "num-bigint" 2848 - version = "0.4.5" 2849 - source = "registry+https://github.com/rust-lang/crates.io-index" 2850 - checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" 2851 - dependencies = [ 2852 - "num-integer", 2853 - "num-traits", 2854 - ] 2855 - 2856 - [[package]] 2857 - name = "num-bigint-dig" 2858 - version = "0.8.4" 2859 - source = "registry+https://github.com/rust-lang/crates.io-index" 2860 - checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 2861 - dependencies = [ 2862 - "byteorder", 2863 - "lazy_static", 2864 - "libm", 2865 - "num-integer", 2866 - "num-iter", 2867 - "num-traits", 2868 - "rand", 2869 - "smallvec", 2870 - "zeroize", 2871 - ] 2872 - 2873 - [[package]] 2874 - name = "num-conv" 2875 - version = "0.1.0" 2876 - source = "registry+https://github.com/rust-lang/crates.io-index" 2877 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2878 - 2879 - [[package]] 2880 - name = "num-integer" 2881 - version = "0.1.46" 2882 - source = "registry+https://github.com/rust-lang/crates.io-index" 2883 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2884 - dependencies = [ 2885 - "num-traits", 2886 - ] 2887 - 2888 - [[package]] 2889 - name = "num-iter" 2890 - version = "0.1.45" 2891 - source = "registry+https://github.com/rust-lang/crates.io-index" 2892 - checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 2893 - dependencies = [ 2894 - "autocfg", 2895 - "num-integer", 2896 - "num-traits", 2897 - ] 2898 - 2899 - [[package]] 2900 - name = "num-traits" 2901 - version = "0.2.19" 2902 - source = "registry+https://github.com/rust-lang/crates.io-index" 2903 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2904 - dependencies = [ 2905 - "autocfg", 2906 - "libm", 2907 - ] 2908 - 2909 - [[package]] 2910 - name = "num_cpus" 2911 - version = "1.16.0" 2912 - source = "registry+https://github.com/rust-lang/crates.io-index" 2913 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 2914 - dependencies = [ 2915 - "hermit-abi", 2916 - "libc", 2917 - ] 2918 - 2919 - [[package]] 2920 - name = "number_prefix" 2921 - version = "0.4.0" 2922 - source = "registry+https://github.com/rust-lang/crates.io-index" 2923 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 2924 - 2925 - [[package]] 2926 - name = "object" 2927 - version = "0.35.0" 2928 - source = "registry+https://github.com/rust-lang/crates.io-index" 2929 - checksum = "b8ec7ab813848ba4522158d5517a6093db1ded27575b070f4177b8d12b41db5e" 2930 - dependencies = [ 2931 - "memchr", 2932 - ] 2933 - 2934 - [[package]] 2935 - name = "once_cell" 2936 - version = "1.19.0" 2937 - source = "registry+https://github.com/rust-lang/crates.io-index" 2938 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 2939 - 2940 - [[package]] 2941 - name = "oorandom" 2942 - version = "11.1.4" 2943 - source = "registry+https://github.com/rust-lang/crates.io-index" 2944 - checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" 2945 - 2946 - [[package]] 2947 - name = "openssl-probe" 2948 - version = "0.1.5" 2949 - source = "registry+https://github.com/rust-lang/crates.io-index" 2950 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2951 - 2952 - [[package]] 2953 - name = "ordered-float" 2954 - version = "3.9.2" 2955 - source = "registry+https://github.com/rust-lang/crates.io-index" 2956 - checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc" 2957 - dependencies = [ 2958 - "num-traits", 2959 - ] 2960 - 2961 - [[package]] 2962 - name = "ouroboros" 2963 - version = "0.17.2" 2964 - source = "registry+https://github.com/rust-lang/crates.io-index" 2965 - checksum = "e2ba07320d39dfea882faa70554b4bd342a5f273ed59ba7c1c6b4c840492c954" 2966 - dependencies = [ 2967 - "aliasable", 2968 - "ouroboros_macro", 2969 - "static_assertions", 2970 - ] 2971 - 2972 - [[package]] 2973 - name = "ouroboros_macro" 2974 - version = "0.17.2" 2975 - source = "registry+https://github.com/rust-lang/crates.io-index" 2976 - checksum = "ec4c6225c69b4ca778c0aea097321a64c421cf4577b331c61b229267edabb6f8" 2977 - dependencies = [ 2978 - "heck 0.4.1", 2979 - "proc-macro-error", 2980 - "proc-macro2", 2981 - "quote", 2982 - "syn 2.0.66", 2983 - ] 2984 - 2985 - [[package]] 2986 - name = "outref" 2987 - version = "0.5.1" 2988 - source = "registry+https://github.com/rust-lang/crates.io-index" 2989 - checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" 2990 - 2991 - [[package]] 2992 - name = "overload" 2993 - version = "0.1.1" 2994 - source = "registry+https://github.com/rust-lang/crates.io-index" 2995 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2996 - 2997 - [[package]] 2998 - name = "p256" 2999 - version = "0.11.1" 3000 - source = "registry+https://github.com/rust-lang/crates.io-index" 3001 - checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 3002 - dependencies = [ 3003 - "ecdsa 0.14.8", 3004 - "elliptic-curve 0.12.3", 3005 - "sha2", 3006 - ] 3007 - 3008 - [[package]] 3009 - name = "p256" 3010 - version = "0.13.2" 3011 - source = "registry+https://github.com/rust-lang/crates.io-index" 3012 - checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 3013 - dependencies = [ 3014 - "ecdsa 0.16.9", 3015 - "elliptic-curve 0.13.8", 3016 - "primeorder", 3017 - "sha2", 3018 - ] 3019 - 3020 - [[package]] 3021 - name = "p384" 3022 - version = "0.13.0" 3023 - source = "registry+https://github.com/rust-lang/crates.io-index" 3024 - checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 3025 - dependencies = [ 3026 - "ecdsa 0.16.9", 3027 - "elliptic-curve 0.13.8", 3028 - "primeorder", 3029 - "sha2", 3030 - ] 3031 - 3032 - [[package]] 3033 - name = "parking" 3034 - version = "2.2.0" 3035 - source = "registry+https://github.com/rust-lang/crates.io-index" 3036 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 3037 - 3038 - [[package]] 3039 - name = "parking_lot" 3040 - version = "0.12.3" 3041 - source = "registry+https://github.com/rust-lang/crates.io-index" 3042 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 3043 - dependencies = [ 3044 - "lock_api", 3045 - "parking_lot_core", 3046 - ] 3047 - 3048 - [[package]] 3049 - name = "parking_lot_core" 3050 - version = "0.9.10" 3051 - source = "registry+https://github.com/rust-lang/crates.io-index" 3052 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 3053 - dependencies = [ 3054 - "cfg-if", 3055 - "libc", 3056 - "redox_syscall 0.5.1", 3057 - "smallvec", 3058 - "windows-targets 0.52.5", 3059 - ] 3060 - 3061 - [[package]] 3062 - name = "paste" 3063 - version = "1.0.15" 3064 - source = "registry+https://github.com/rust-lang/crates.io-index" 3065 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3066 - 3067 - [[package]] 3068 - name = "pem-rfc7468" 3069 - version = "0.6.0" 3070 - source = "registry+https://github.com/rust-lang/crates.io-index" 3071 - checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" 3072 - dependencies = [ 3073 - "base64ct", 3074 - ] 3075 - 3076 - [[package]] 3077 - name = "pem-rfc7468" 3078 - version = "0.7.0" 3079 - source = "registry+https://github.com/rust-lang/crates.io-index" 3080 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3081 - dependencies = [ 3082 - "base64ct", 3083 - ] 3084 - 3085 - [[package]] 3086 - name = "percent-encoding" 3087 - version = "2.3.1" 3088 - source = "registry+https://github.com/rust-lang/crates.io-index" 3089 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3090 - 3091 - [[package]] 3092 - name = "pin-project" 3093 - version = "1.1.5" 3094 - source = "registry+https://github.com/rust-lang/crates.io-index" 3095 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 3096 - dependencies = [ 3097 - "pin-project-internal", 3098 - ] 3099 - 3100 - [[package]] 3101 - name = "pin-project-internal" 3102 - version = "1.1.5" 3103 - source = "registry+https://github.com/rust-lang/crates.io-index" 3104 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 3105 - dependencies = [ 3106 - "proc-macro2", 3107 - "quote", 3108 - "syn 2.0.66", 3109 - ] 3110 - 3111 - [[package]] 3112 - name = "pin-project-lite" 3113 - version = "0.2.14" 3114 - source = "registry+https://github.com/rust-lang/crates.io-index" 3115 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 3116 - 3117 - [[package]] 3118 - name = "pin-utils" 3119 - version = "0.1.0" 3120 - source = "registry+https://github.com/rust-lang/crates.io-index" 3121 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3122 - 3123 - [[package]] 3124 - name = "pkcs1" 3125 - version = "0.4.1" 3126 - source = "registry+https://github.com/rust-lang/crates.io-index" 3127 - checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" 3128 - dependencies = [ 3129 - "der 0.6.1", 3130 - "pkcs8 0.9.0", 3131 - "spki 0.6.0", 3132 - "zeroize", 3133 - ] 3134 - 3135 - [[package]] 3136 - name = "pkcs1" 3137 - version = "0.7.5" 3138 - source = "registry+https://github.com/rust-lang/crates.io-index" 3139 - checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 3140 - dependencies = [ 3141 - "der 0.7.9", 3142 - "pkcs8 0.10.2", 3143 - "spki 0.7.3", 3144 - ] 3145 - 3146 - [[package]] 3147 - name = "pkcs8" 3148 - version = "0.9.0" 3149 - source = "registry+https://github.com/rust-lang/crates.io-index" 3150 - checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 3151 - dependencies = [ 3152 - "der 0.6.1", 3153 - "spki 0.6.0", 3154 - ] 3155 - 3156 - [[package]] 3157 - name = "pkcs8" 3158 - version = "0.10.2" 3159 - source = "registry+https://github.com/rust-lang/crates.io-index" 3160 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3161 - dependencies = [ 3162 - "der 0.7.9", 3163 - "spki 0.7.3", 3164 - ] 3165 - 3166 - [[package]] 3167 - name = "pkg-config" 3168 - version = "0.3.30" 3169 - source = "registry+https://github.com/rust-lang/crates.io-index" 3170 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 3171 - 3172 - [[package]] 3173 - name = "plotters" 3174 - version = "0.3.6" 3175 - source = "registry+https://github.com/rust-lang/crates.io-index" 3176 - checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3" 3177 - dependencies = [ 3178 - "num-traits", 3179 - "plotters-backend", 3180 - "plotters-svg", 3181 - "wasm-bindgen", 3182 - "web-sys", 3183 - ] 3184 - 3185 - [[package]] 3186 - name = "plotters-backend" 3187 - version = "0.3.6" 3188 - source = "registry+https://github.com/rust-lang/crates.io-index" 3189 - checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7" 3190 - 3191 - [[package]] 3192 - name = "plotters-svg" 3193 - version = "0.3.6" 3194 - source = "registry+https://github.com/rust-lang/crates.io-index" 3195 - checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705" 3196 - dependencies = [ 3197 - "plotters-backend", 3198 - ] 3199 - 3200 - [[package]] 3201 - name = "portable-atomic" 3202 - version = "1.6.0" 3203 - source = "registry+https://github.com/rust-lang/crates.io-index" 3204 - checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 3205 - 3206 - [[package]] 3207 - name = "powerfmt" 3208 - version = "0.2.0" 3209 - source = "registry+https://github.com/rust-lang/crates.io-index" 3210 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3211 - 3212 - [[package]] 3213 - name = "ppv-lite86" 3214 - version = "0.2.17" 3215 - source = "registry+https://github.com/rust-lang/crates.io-index" 3216 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3217 - 3218 - [[package]] 3219 - name = "primeorder" 3220 - version = "0.13.6" 3221 - source = "registry+https://github.com/rust-lang/crates.io-index" 3222 - checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 3223 - dependencies = [ 3224 - "elliptic-curve 0.13.8", 3225 - ] 3226 - 3227 - [[package]] 3228 - name = "proc-macro-crate" 3229 - version = "3.1.0" 3230 - source = "registry+https://github.com/rust-lang/crates.io-index" 3231 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 3232 - dependencies = [ 3233 - "toml_edit 0.21.1", 3234 - ] 3235 - 3236 - [[package]] 3237 - name = "proc-macro-error" 3238 - version = "1.0.4" 3239 - source = "registry+https://github.com/rust-lang/crates.io-index" 3240 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3241 - dependencies = [ 3242 - "proc-macro-error-attr", 3243 - "proc-macro2", 3244 - "quote", 3245 - "syn 1.0.109", 3246 - "version_check", 3247 - ] 3248 - 3249 - [[package]] 3250 - name = "proc-macro-error-attr" 3251 - version = "1.0.4" 3252 - source = "registry+https://github.com/rust-lang/crates.io-index" 3253 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3254 - dependencies = [ 3255 - "proc-macro2", 3256 - "quote", 3257 - "version_check", 3258 - ] 3259 - 3260 - [[package]] 3261 - name = "proc-macro2" 3262 - version = "1.0.84" 3263 - source = "registry+https://github.com/rust-lang/crates.io-index" 3264 - checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6" 3265 - dependencies = [ 3266 - "unicode-ident", 3267 - ] 3268 - 3269 - [[package]] 3270 - name = "prost" 3271 - version = "0.12.6" 3272 - source = "registry+https://github.com/rust-lang/crates.io-index" 3273 - checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" 3274 - dependencies = [ 3275 - "bytes", 3276 - "prost-derive", 3277 - ] 3278 - 3279 - [[package]] 3280 - name = "prost-derive" 3281 - version = "0.12.6" 3282 - source = "registry+https://github.com/rust-lang/crates.io-index" 3283 - checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" 3284 - dependencies = [ 3285 - "anyhow", 3286 - "itertools 0.12.1", 3287 - "proc-macro2", 3288 - "quote", 3289 - "syn 2.0.66", 3290 - ] 3291 - 3292 - [[package]] 3293 - name = "prost-types" 3294 - version = "0.12.6" 3295 - source = "registry+https://github.com/rust-lang/crates.io-index" 3296 - checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" 3297 - dependencies = [ 3298 - "prost", 3299 - ] 3300 - 3301 - [[package]] 3302 - name = "ptr_meta" 3303 - version = "0.1.4" 3304 - source = "registry+https://github.com/rust-lang/crates.io-index" 3305 - checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 3306 - dependencies = [ 3307 - "ptr_meta_derive", 3308 - ] 3309 - 3310 - [[package]] 3311 - name = "ptr_meta_derive" 3312 - version = "0.1.4" 3313 - source = "registry+https://github.com/rust-lang/crates.io-index" 3314 - checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 3315 - dependencies = [ 3316 - "proc-macro2", 3317 - "quote", 3318 - "syn 1.0.109", 3319 - ] 3320 - 3321 - [[package]] 3322 - name = "quote" 3323 - version = "1.0.36" 3324 - source = "registry+https://github.com/rust-lang/crates.io-index" 3325 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 3326 - dependencies = [ 3327 - "proc-macro2", 3328 - ] 3329 - 3330 - [[package]] 3331 - name = "radium" 3332 - version = "0.7.0" 3333 - source = "registry+https://github.com/rust-lang/crates.io-index" 3334 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 3335 - 3336 - [[package]] 3337 - name = "rand" 3338 - version = "0.8.5" 3339 - source = "registry+https://github.com/rust-lang/crates.io-index" 3340 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3341 - dependencies = [ 3342 - "libc", 3343 - "rand_chacha", 3344 - "rand_core", 3345 - ] 3346 - 3347 - [[package]] 3348 - name = "rand_chacha" 3349 - version = "0.3.1" 3350 - source = "registry+https://github.com/rust-lang/crates.io-index" 3351 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3352 - dependencies = [ 3353 - "ppv-lite86", 3354 - "rand_core", 3355 - ] 3356 - 3357 - [[package]] 3358 - name = "rand_core" 3359 - version = "0.6.4" 3360 - source = "registry+https://github.com/rust-lang/crates.io-index" 3361 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3362 - dependencies = [ 3363 - "getrandom", 3364 - ] 3365 - 3366 - [[package]] 3367 - name = "rayon" 3368 - version = "1.10.0" 3369 - source = "registry+https://github.com/rust-lang/crates.io-index" 3370 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 3371 - dependencies = [ 3372 - "either", 3373 - "rayon-core", 3374 - ] 3375 - 3376 - [[package]] 3377 - name = "rayon-core" 3378 - version = "1.12.1" 3379 - source = "registry+https://github.com/rust-lang/crates.io-index" 3380 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 3381 - dependencies = [ 3382 - "crossbeam-deque", 3383 - "crossbeam-utils", 3384 - ] 3385 - 3386 - [[package]] 3387 - name = "redox_syscall" 3388 - version = "0.4.1" 3389 - source = "registry+https://github.com/rust-lang/crates.io-index" 3390 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 3391 - dependencies = [ 3392 - "bitflags 1.3.2", 3393 - ] 3394 - 3395 - [[package]] 3396 - name = "redox_syscall" 3397 - version = "0.5.1" 3398 - source = "registry+https://github.com/rust-lang/crates.io-index" 3399 - checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 3400 - dependencies = [ 3401 - "bitflags 2.5.0", 3402 - ] 3403 - 3404 - [[package]] 3405 - name = "regex" 3406 - version = "1.10.4" 3407 - source = "registry+https://github.com/rust-lang/crates.io-index" 3408 - checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 3409 - dependencies = [ 3410 - "aho-corasick", 3411 - "memchr", 3412 - "regex-automata 0.4.6", 3413 - "regex-syntax 0.8.3", 3414 - ] 3415 - 3416 - [[package]] 3417 - name = "regex-automata" 3418 - version = "0.1.10" 3419 - source = "registry+https://github.com/rust-lang/crates.io-index" 3420 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3421 - dependencies = [ 3422 - "regex-syntax 0.6.29", 3423 - ] 3424 - 3425 - [[package]] 3426 - name = "regex-automata" 3427 - version = "0.4.6" 3428 - source = "registry+https://github.com/rust-lang/crates.io-index" 3429 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 3430 - dependencies = [ 3431 - "aho-corasick", 3432 - "memchr", 3433 - "regex-syntax 0.8.3", 3434 - ] 3435 - 3436 - [[package]] 3437 - name = "regex-lite" 3438 - version = "0.1.5" 3439 - source = "registry+https://github.com/rust-lang/crates.io-index" 3440 - checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e" 3441 - 3442 - [[package]] 3443 - name = "regex-syntax" 3444 - version = "0.6.29" 3445 - source = "registry+https://github.com/rust-lang/crates.io-index" 3446 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3447 - 3448 - [[package]] 3449 - name = "regex-syntax" 3450 - version = "0.8.3" 3451 - source = "registry+https://github.com/rust-lang/crates.io-index" 3452 - checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 3453 - 3454 - [[package]] 3455 - name = "rend" 3456 - version = "0.4.2" 3457 - source = "registry+https://github.com/rust-lang/crates.io-index" 3458 - checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 3459 - dependencies = [ 3460 - "bytecheck", 3461 - ] 3462 - 3463 - [[package]] 3464 - name = "reqwest" 3465 - version = "0.12.4" 3466 - source = "registry+https://github.com/rust-lang/crates.io-index" 3467 - checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" 3468 - dependencies = [ 3469 - "base64 0.22.1", 3470 - "bytes", 3471 - "futures-core", 3472 - "futures-util", 3473 - "http 1.1.0", 3474 - "http-body 1.0.0", 3475 - "http-body-util", 3476 - "hyper 1.3.1", 3477 - "hyper-rustls 0.26.0", 3478 - "hyper-util", 3479 - "ipnet", 3480 - "js-sys", 3481 - "log", 3482 - "mime", 3483 - "once_cell", 3484 - "percent-encoding", 3485 - "pin-project-lite", 3486 - "rustls 0.22.4", 3487 - "rustls-native-certs 0.7.0", 3488 - "rustls-pemfile 2.1.2", 3489 - "rustls-pki-types", 3490 - "serde", 3491 - "serde_json", 3492 - "serde_urlencoded", 3493 - "sync_wrapper 0.1.2", 3494 - "tokio", 3495 - "tokio-rustls 0.25.0", 3496 - "tokio-util", 3497 - "tower-service", 3498 - "url", 3499 - "wasm-bindgen", 3500 - "wasm-bindgen-futures", 3501 - "wasm-streams", 3502 - "web-sys", 3503 - "webpki-roots 0.26.1", 3504 - "winreg", 3505 - ] 3506 - 3507 - [[package]] 3508 - name = "rfc6979" 3509 - version = "0.3.1" 3510 - source = "registry+https://github.com/rust-lang/crates.io-index" 3511 - checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 3512 - dependencies = [ 3513 - "crypto-bigint 0.4.9", 3514 - "hmac", 3515 - "zeroize", 3516 - ] 3517 - 3518 - [[package]] 3519 - name = "rfc6979" 3520 - version = "0.4.0" 3521 - source = "registry+https://github.com/rust-lang/crates.io-index" 3522 - checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 3523 - dependencies = [ 3524 - "hmac", 3525 - "subtle", 3526 - ] 3527 - 3528 - [[package]] 3529 - name = "ring" 3530 - version = "0.17.8" 3531 - source = "registry+https://github.com/rust-lang/crates.io-index" 3532 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 3533 - dependencies = [ 3534 - "cc", 3535 - "cfg-if", 3536 - "getrandom", 3537 - "libc", 3538 - "spin 0.9.8", 3539 - "untrusted", 3540 - "windows-sys 0.52.0", 3541 - ] 3542 - 3543 - [[package]] 3544 - name = "rkyv" 3545 - version = "0.7.44" 3546 - source = "registry+https://github.com/rust-lang/crates.io-index" 3547 - checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 3548 - dependencies = [ 3549 - "bitvec", 3550 - "bytecheck", 3551 - "bytes", 3552 - "hashbrown 0.12.3", 3553 - "ptr_meta", 3554 - "rend", 3555 - "rkyv_derive", 3556 - "seahash", 3557 - "tinyvec", 3558 - "uuid", 3559 - ] 3560 - 3561 - [[package]] 3562 - name = "rkyv_derive" 3563 - version = "0.7.44" 3564 - source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 3566 - dependencies = [ 3567 - "proc-macro2", 3568 - "quote", 3569 - "syn 1.0.109", 3570 - ] 3571 - 3572 - [[package]] 3573 - name = "rsa" 3574 - version = "0.7.2" 3575 - source = "registry+https://github.com/rust-lang/crates.io-index" 3576 - checksum = "094052d5470cbcef561cb848a7209968c9f12dfa6d668f4bca048ac5de51099c" 3577 - dependencies = [ 3578 - "byteorder", 3579 - "digest", 3580 - "num-bigint-dig", 3581 - "num-integer", 3582 - "num-iter", 3583 - "num-traits", 3584 - "pkcs1 0.4.1", 3585 - "pkcs8 0.9.0", 3586 - "rand_core", 3587 - "signature 1.6.4", 3588 - "smallvec", 3589 - "subtle", 3590 - "zeroize", 3591 - ] 3592 - 3593 - [[package]] 3594 - name = "rsa" 3595 - version = "0.9.6" 3596 - source = "registry+https://github.com/rust-lang/crates.io-index" 3597 - checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 3598 - dependencies = [ 3599 - "const-oid", 3600 - "digest", 3601 - "num-bigint-dig", 3602 - "num-integer", 3603 - "num-traits", 3604 - "pkcs1 0.7.5", 3605 - "pkcs8 0.10.2", 3606 - "rand_core", 3607 - "signature 2.2.0", 3608 - "spki 0.7.3", 3609 - "subtle", 3610 - "zeroize", 3611 - ] 3612 - 3613 - [[package]] 3614 - name = "rust_decimal" 3615 - version = "1.35.0" 3616 - source = "registry+https://github.com/rust-lang/crates.io-index" 3617 - checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" 3618 - dependencies = [ 3619 - "arrayvec", 3620 - "borsh", 3621 - "bytes", 3622 - "num-traits", 3623 - "rand", 3624 - "rkyv", 3625 - "serde", 3626 - "serde_json", 3627 - ] 3628 - 3629 - [[package]] 3630 - name = "rustc-demangle" 3631 - version = "0.1.24" 3632 - source = "registry+https://github.com/rust-lang/crates.io-index" 3633 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3634 - 3635 - [[package]] 3636 - name = "rustc_version" 3637 - version = "0.4.0" 3638 - source = "registry+https://github.com/rust-lang/crates.io-index" 3639 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 3640 - dependencies = [ 3641 - "semver", 3642 - ] 3643 - 3644 - [[package]] 3645 - name = "rustix" 3646 - version = "0.38.34" 3647 - source = "registry+https://github.com/rust-lang/crates.io-index" 3648 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3649 - dependencies = [ 3650 - "bitflags 2.5.0", 3651 - "errno", 3652 - "libc", 3653 - "linux-raw-sys", 3654 - "windows-sys 0.52.0", 3655 - ] 3656 - 3657 - [[package]] 3658 - name = "rustls" 3659 - version = "0.21.12" 3660 - source = "registry+https://github.com/rust-lang/crates.io-index" 3661 - checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 3662 - dependencies = [ 3663 - "log", 3664 - "ring", 3665 - "rustls-webpki 0.101.7", 3666 - "sct", 3667 - ] 3668 - 3669 - [[package]] 3670 - name = "rustls" 3671 - version = "0.22.4" 3672 - source = "registry+https://github.com/rust-lang/crates.io-index" 3673 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 3674 - dependencies = [ 3675 - "log", 3676 - "ring", 3677 - "rustls-pki-types", 3678 - "rustls-webpki 0.102.4", 3679 - "subtle", 3680 - "zeroize", 3681 - ] 3682 - 3683 - [[package]] 3684 - name = "rustls-native-certs" 3685 - version = "0.6.3" 3686 - source = "registry+https://github.com/rust-lang/crates.io-index" 3687 - checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 3688 - dependencies = [ 3689 - "openssl-probe", 3690 - "rustls-pemfile 1.0.4", 3691 - "schannel", 3692 - "security-framework", 3693 - ] 3694 - 3695 - [[package]] 3696 - name = "rustls-native-certs" 3697 - version = "0.7.0" 3698 - source = "registry+https://github.com/rust-lang/crates.io-index" 3699 - checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" 3700 - dependencies = [ 3701 - "openssl-probe", 3702 - "rustls-pemfile 2.1.2", 3703 - "rustls-pki-types", 3704 - "schannel", 3705 - "security-framework", 3706 - ] 3707 - 3708 - [[package]] 3709 - name = "rustls-pemfile" 3710 - version = "1.0.4" 3711 - source = "registry+https://github.com/rust-lang/crates.io-index" 3712 - checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 3713 - dependencies = [ 3714 - "base64 0.21.7", 3715 - ] 3716 - 3717 - [[package]] 3718 - name = "rustls-pemfile" 3719 - version = "2.1.2" 3720 - source = "registry+https://github.com/rust-lang/crates.io-index" 3721 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 3722 - dependencies = [ 3723 - "base64 0.22.1", 3724 - "rustls-pki-types", 3725 - ] 3726 - 3727 - [[package]] 3728 - name = "rustls-pki-types" 3729 - version = "1.7.0" 3730 - source = "registry+https://github.com/rust-lang/crates.io-index" 3731 - checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 3732 - 3733 - [[package]] 3734 - name = "rustls-webpki" 3735 - version = "0.101.7" 3736 - source = "registry+https://github.com/rust-lang/crates.io-index" 3737 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 3738 - dependencies = [ 3739 - "ring", 3740 - "untrusted", 3741 - ] 3742 - 3743 - [[package]] 3744 - name = "rustls-webpki" 3745 - version = "0.102.4" 3746 - source = "registry+https://github.com/rust-lang/crates.io-index" 3747 - checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" 3748 - dependencies = [ 3749 - "ring", 3750 - "rustls-pki-types", 3751 - "untrusted", 3752 - ] 3753 - 3754 - [[package]] 3755 - name = "rustversion" 3756 - version = "1.0.17" 3757 - source = "registry+https://github.com/rust-lang/crates.io-index" 3758 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 3759 - 3760 - [[package]] 3761 - name = "ryu" 3762 - version = "1.0.18" 3763 - source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 3765 - 3766 - [[package]] 3767 - name = "same-file" 3768 - version = "1.0.6" 3769 - source = "registry+https://github.com/rust-lang/crates.io-index" 3770 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3771 - dependencies = [ 3772 - "winapi-util", 3773 - ] 3774 - 3775 - [[package]] 3776 - name = "schannel" 3777 - version = "0.1.23" 3778 - source = "registry+https://github.com/rust-lang/crates.io-index" 3779 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 3780 - dependencies = [ 3781 - "windows-sys 0.52.0", 3782 - ] 3783 - 3784 - [[package]] 3785 - name = "scopeguard" 3786 - version = "1.2.0" 3787 - source = "registry+https://github.com/rust-lang/crates.io-index" 3788 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3789 - 3790 - [[package]] 3791 - name = "scratch" 3792 - version = "1.0.7" 3793 - source = "registry+https://github.com/rust-lang/crates.io-index" 3794 - checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" 3795 - 3796 - [[package]] 3797 - name = "sct" 3798 - version = "0.7.1" 3799 - source = "registry+https://github.com/rust-lang/crates.io-index" 3800 - checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 3801 - dependencies = [ 3802 - "ring", 3803 - "untrusted", 3804 - ] 3805 - 3806 - [[package]] 3807 - name = "sea-bae" 3808 - version = "0.2.0" 3809 - source = "registry+https://github.com/rust-lang/crates.io-index" 3810 - checksum = "3bd3534a9978d0aa7edd2808dc1f8f31c4d0ecd31ddf71d997b3c98e9f3c9114" 3811 - dependencies = [ 3812 - "heck 0.4.1", 3813 - "proc-macro-error", 3814 - "proc-macro2", 3815 - "quote", 3816 - "syn 2.0.66", 3817 - ] 3818 - 3819 - [[package]] 3820 - name = "sea-orm" 3821 - version = "0.12.15" 3822 - source = "registry+https://github.com/rust-lang/crates.io-index" 3823 - checksum = "c8814e37dc25de54398ee62228323657520b7f29713b8e238649385dbe473ee0" 3824 - dependencies = [ 3825 - "async-stream", 3826 - "async-trait", 3827 - "bigdecimal", 3828 - "chrono", 3829 - "futures", 3830 - "log", 3831 - "ouroboros", 3832 - "rust_decimal", 3833 - "sea-orm-macros", 3834 - "sea-query", 3835 - "sea-query-binder", 3836 - "serde", 3837 - "serde_json", 3838 - "sqlx", 3839 - "strum", 3840 - "thiserror", 3841 - "time", 3842 - "tracing", 3843 - "url", 3844 - "uuid", 3845 - ] 3846 - 3847 - [[package]] 3848 - name = "sea-orm-cli" 3849 - version = "0.12.15" 3850 - source = "registry+https://github.com/rust-lang/crates.io-index" 3851 - checksum = "620bc560062ae251b1366bde43b3f1508445cab5c2c8cbdb397034638ab1b357" 3852 - dependencies = [ 3853 - "chrono", 3854 - "clap", 3855 - "dotenvy", 3856 - "glob", 3857 - "regex", 3858 - "sea-schema", 3859 - "tracing", 3860 - "tracing-subscriber", 3861 - "url", 3862 - ] 3863 - 3864 - [[package]] 3865 - name = "sea-orm-macros" 3866 - version = "0.12.15" 3867 - source = "registry+https://github.com/rust-lang/crates.io-index" 3868 - checksum = "5e115c6b078e013aa963cc2d38c196c2c40b05f03d0ac872fe06b6e0d5265603" 3869 - dependencies = [ 3870 - "heck 0.4.1", 3871 - "proc-macro2", 3872 - "quote", 3873 - "sea-bae", 3874 - "syn 2.0.66", 3875 - "unicode-ident", 3876 - ] 3877 - 3878 - [[package]] 3879 - name = "sea-orm-migration" 3880 - version = "0.12.15" 3881 - source = "registry+https://github.com/rust-lang/crates.io-index" 3882 - checksum = "ee8269bc6ff71afd6b78aa4333ac237a69eebd2cdb439036291e64fb4b8db23c" 3883 - dependencies = [ 3884 - "async-trait", 3885 - "clap", 3886 - "dotenvy", 3887 - "futures", 3888 - "sea-orm", 3889 - "sea-orm-cli", 3890 - "sea-schema", 3891 - "tracing", 3892 - "tracing-subscriber", 3893 - ] 3894 - 3895 - [[package]] 3896 - name = "sea-query" 3897 - version = "0.30.7" 3898 - source = "registry+https://github.com/rust-lang/crates.io-index" 3899 - checksum = "4166a1e072292d46dc91f31617c2a1cdaf55a8be4b5c9f4bf2ba248e3ac4999b" 3900 - dependencies = [ 3901 - "bigdecimal", 3902 - "chrono", 3903 - "derivative", 3904 - "inherent", 3905 - "ordered-float", 3906 - "rust_decimal", 3907 - "sea-query-derive", 3908 - "serde_json", 3909 - "time", 3910 - "uuid", 3911 - ] 3912 - 3913 - [[package]] 3914 - name = "sea-query-binder" 3915 - version = "0.5.0" 3916 - source = "registry+https://github.com/rust-lang/crates.io-index" 3917 - checksum = "36bbb68df92e820e4d5aeb17b4acd5cc8b5d18b2c36a4dd6f4626aabfa7ab1b9" 3918 - dependencies = [ 3919 - "bigdecimal", 3920 - "chrono", 3921 - "rust_decimal", 3922 - "sea-query", 3923 - "serde_json", 3924 - "sqlx", 3925 - "time", 3926 - "uuid", 3927 - ] 3928 - 3929 - [[package]] 3930 - name = "sea-query-derive" 3931 - version = "0.4.1" 3932 - source = "registry+https://github.com/rust-lang/crates.io-index" 3933 - checksum = "25a82fcb49253abcb45cdcb2adf92956060ec0928635eb21b4f7a6d8f25ab0bc" 3934 - dependencies = [ 3935 - "heck 0.4.1", 3936 - "proc-macro2", 3937 - "quote", 3938 - "syn 2.0.66", 3939 - "thiserror", 3940 - ] 3941 - 3942 - [[package]] 3943 - name = "sea-schema" 3944 - version = "0.14.2" 3945 - source = "registry+https://github.com/rust-lang/crates.io-index" 3946 - checksum = "30d148608012d25222442d1ebbfafd1228dbc5221baf4ec35596494e27a2394e" 3947 - dependencies = [ 3948 - "futures", 3949 - "sea-query", 3950 - "sea-schema-derive", 3951 - ] 3952 - 3953 - [[package]] 3954 - name = "sea-schema-derive" 3955 - version = "0.2.0" 3956 - source = "registry+https://github.com/rust-lang/crates.io-index" 3957 - checksum = "c6f686050f76bffc4f635cda8aea6df5548666b830b52387e8bc7de11056d11e" 3958 - dependencies = [ 3959 - "heck 0.4.1", 3960 - "proc-macro2", 3961 - "quote", 3962 - "syn 1.0.109", 3963 - ] 3964 - 3965 - [[package]] 3966 - name = "seahash" 3967 - version = "4.1.0" 3968 - source = "registry+https://github.com/rust-lang/crates.io-index" 3969 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 3970 - 3971 - [[package]] 3972 - name = "sec1" 3973 - version = "0.3.0" 3974 - source = "registry+https://github.com/rust-lang/crates.io-index" 3975 - checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 3976 - dependencies = [ 3977 - "base16ct 0.1.1", 3978 - "der 0.6.1", 3979 - "generic-array", 3980 - "pkcs8 0.9.0", 3981 - "subtle", 3982 - "zeroize", 3983 - ] 3984 - 3985 - [[package]] 3986 - name = "sec1" 3987 - version = "0.7.3" 3988 - source = "registry+https://github.com/rust-lang/crates.io-index" 3989 - checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 3990 - dependencies = [ 3991 - "base16ct 0.2.0", 3992 - "der 0.7.9", 3993 - "generic-array", 3994 - "pkcs8 0.10.2", 3995 - "subtle", 3996 - "zeroize", 3997 - ] 3998 - 3999 - [[package]] 4000 - name = "security-framework" 4001 - version = "2.11.0" 4002 - source = "registry+https://github.com/rust-lang/crates.io-index" 4003 - checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 4004 - dependencies = [ 4005 - "bitflags 2.5.0", 4006 - "core-foundation", 4007 - "core-foundation-sys", 4008 - "libc", 4009 - "security-framework-sys", 4010 - ] 4011 - 4012 - [[package]] 4013 - name = "security-framework-sys" 4014 - version = "2.11.0" 4015 - source = "registry+https://github.com/rust-lang/crates.io-index" 4016 - checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 4017 - dependencies = [ 4018 - "core-foundation-sys", 4019 - "libc", 4020 - ] 4021 - 4022 - [[package]] 4023 - name = "semver" 4024 - version = "1.0.23" 4025 - source = "registry+https://github.com/rust-lang/crates.io-index" 4026 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 4027 - 4028 - [[package]] 4029 - name = "serde" 4030 - version = "1.0.203" 4031 - source = "registry+https://github.com/rust-lang/crates.io-index" 4032 - checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 4033 - dependencies = [ 4034 - "serde_derive", 4035 - ] 4036 - 4037 - [[package]] 4038 - name = "serde_derive" 4039 - version = "1.0.203" 4040 - source = "registry+https://github.com/rust-lang/crates.io-index" 4041 - checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 4042 - dependencies = [ 4043 - "proc-macro2", 4044 - "quote", 4045 - "syn 2.0.66", 4046 - ] 4047 - 4048 - [[package]] 4049 - name = "serde_json" 4050 - version = "1.0.117" 4051 - source = "registry+https://github.com/rust-lang/crates.io-index" 4052 - checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 4053 - dependencies = [ 4054 - "itoa", 4055 - "ryu", 4056 - "serde", 4057 - ] 4058 - 4059 - [[package]] 4060 - name = "serde_path_to_error" 4061 - version = "0.1.16" 4062 - source = "registry+https://github.com/rust-lang/crates.io-index" 4063 - checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 4064 - dependencies = [ 4065 - "itoa", 4066 - "serde", 4067 - ] 4068 - 4069 - [[package]] 4070 - name = "serde_spanned" 4071 - version = "0.6.6" 4072 - source = "registry+https://github.com/rust-lang/crates.io-index" 4073 - checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 4074 - dependencies = [ 4075 - "serde", 4076 - ] 4077 - 4078 - [[package]] 4079 - name = "serde_urlencoded" 4080 - version = "0.7.1" 4081 - source = "registry+https://github.com/rust-lang/crates.io-index" 4082 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4083 - dependencies = [ 4084 - "form_urlencoded", 4085 - "itoa", 4086 - "ryu", 4087 - "serde", 4088 - ] 4089 - 4090 - [[package]] 4091 - name = "serde_with" 4092 - version = "3.8.1" 4093 - source = "registry+https://github.com/rust-lang/crates.io-index" 4094 - checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20" 4095 - dependencies = [ 4096 - "base64 0.22.1", 4097 - "chrono", 4098 - "hex", 4099 - "indexmap 1.9.3", 4100 - "indexmap 2.2.6", 4101 - "serde", 4102 - "serde_derive", 4103 - "serde_json", 4104 - "serde_with_macros", 4105 - "time", 4106 - ] 4107 - 4108 - [[package]] 4109 - name = "serde_with_macros" 4110 - version = "3.8.1" 4111 - source = "registry+https://github.com/rust-lang/crates.io-index" 4112 - checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2" 4113 - dependencies = [ 4114 - "darling", 4115 - "proc-macro2", 4116 - "quote", 4117 - "syn 2.0.66", 4118 - ] 4119 - 4120 - [[package]] 4121 - name = "serde_yaml" 4122 - version = "0.9.34+deprecated" 4123 - source = "registry+https://github.com/rust-lang/crates.io-index" 4124 - checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 4125 - dependencies = [ 4126 - "indexmap 2.2.6", 4127 - "itoa", 4128 - "ryu", 4129 - "serde", 4130 - "unsafe-libyaml", 4131 - ] 4132 - 4133 - [[package]] 4134 - name = "sha1" 4135 - version = "0.10.6" 4136 - source = "registry+https://github.com/rust-lang/crates.io-index" 4137 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4138 - dependencies = [ 4139 - "cfg-if", 4140 - "cpufeatures", 4141 - "digest", 4142 - ] 4143 - 4144 - [[package]] 4145 - name = "sha2" 4146 - version = "0.10.8" 4147 - source = "registry+https://github.com/rust-lang/crates.io-index" 4148 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 4149 - dependencies = [ 4150 - "cfg-if", 4151 - "cpufeatures", 4152 - "digest", 4153 - "sha2-asm", 4154 - ] 4155 - 4156 - [[package]] 4157 - name = "sha2-asm" 4158 - version = "0.6.4" 4159 - source = "registry+https://github.com/rust-lang/crates.io-index" 4160 - checksum = "b845214d6175804686b2bd482bcffe96651bb2d1200742b712003504a2dac1ab" 4161 - dependencies = [ 4162 - "cc", 4163 - ] 4164 - 4165 - [[package]] 4166 - name = "sharded-slab" 4167 - version = "0.1.7" 4168 - source = "registry+https://github.com/rust-lang/crates.io-index" 4169 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 4170 - dependencies = [ 4171 - "lazy_static", 4172 - ] 4173 - 4174 - [[package]] 4175 - name = "shell-words" 4176 - version = "1.1.0" 4177 - source = "registry+https://github.com/rust-lang/crates.io-index" 4178 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 4179 - 4180 - [[package]] 4181 - name = "shlex" 4182 - version = "1.3.0" 4183 - source = "registry+https://github.com/rust-lang/crates.io-index" 4184 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4185 - 4186 - [[package]] 4187 - name = "signal-hook-registry" 4188 - version = "1.4.2" 4189 - source = "registry+https://github.com/rust-lang/crates.io-index" 4190 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 4191 - dependencies = [ 4192 - "libc", 4193 - ] 4194 - 4195 - [[package]] 4196 - name = "signature" 4197 - version = "1.6.4" 4198 - source = "registry+https://github.com/rust-lang/crates.io-index" 4199 - checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 4200 - dependencies = [ 4201 - "digest", 4202 - "rand_core", 4203 - ] 4204 - 4205 - [[package]] 4206 - name = "signature" 4207 - version = "2.2.0" 4208 - source = "registry+https://github.com/rust-lang/crates.io-index" 4209 - checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 4210 - dependencies = [ 4211 - "digest", 4212 - "rand_core", 4213 - ] 4214 - 4215 - [[package]] 4216 - name = "simdutf8" 4217 - version = "0.1.4" 4218 - source = "registry+https://github.com/rust-lang/crates.io-index" 4219 - checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 4220 - 4221 - [[package]] 4222 - name = "slab" 4223 - version = "0.4.9" 4224 - source = "registry+https://github.com/rust-lang/crates.io-index" 4225 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 4226 - dependencies = [ 4227 - "autocfg", 4228 - ] 4229 - 4230 - [[package]] 4231 - name = "smallvec" 4232 - version = "1.13.2" 4233 - source = "registry+https://github.com/rust-lang/crates.io-index" 4234 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 4235 - 4236 - [[package]] 4237 - name = "socket2" 4238 - version = "0.5.7" 4239 - source = "registry+https://github.com/rust-lang/crates.io-index" 4240 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 4241 - dependencies = [ 4242 - "libc", 4243 - "windows-sys 0.52.0", 4244 - ] 4245 - 4246 - [[package]] 4247 - name = "spin" 4248 - version = "0.5.2" 4249 - source = "registry+https://github.com/rust-lang/crates.io-index" 4250 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 4251 - 4252 - [[package]] 4253 - name = "spin" 4254 - version = "0.9.8" 4255 - source = "registry+https://github.com/rust-lang/crates.io-index" 4256 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4257 - dependencies = [ 4258 - "lock_api", 4259 - ] 4260 - 4261 - [[package]] 4262 - name = "spki" 4263 - version = "0.6.0" 4264 - source = "registry+https://github.com/rust-lang/crates.io-index" 4265 - checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 4266 - dependencies = [ 4267 - "base64ct", 4268 - "der 0.6.1", 4269 - ] 4270 - 4271 - [[package]] 4272 - name = "spki" 4273 - version = "0.7.3" 4274 - source = "registry+https://github.com/rust-lang/crates.io-index" 4275 - checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 4276 - dependencies = [ 4277 - "base64ct", 4278 - "der 0.7.9", 4279 - ] 4280 - 4281 - [[package]] 4282 - name = "sqlformat" 4283 - version = "0.2.3" 4284 - source = "registry+https://github.com/rust-lang/crates.io-index" 4285 - checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c" 4286 - dependencies = [ 4287 - "itertools 0.12.1", 4288 - "nom", 4289 - "unicode_categories", 4290 - ] 4291 - 4292 - [[package]] 4293 - name = "sqlx" 4294 - version = "0.7.4" 4295 - source = "registry+https://github.com/rust-lang/crates.io-index" 4296 - checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" 4297 - dependencies = [ 4298 - "sqlx-core", 4299 - "sqlx-macros", 4300 - "sqlx-mysql", 4301 - "sqlx-postgres", 4302 - "sqlx-sqlite", 4303 - ] 4304 - 4305 - [[package]] 4306 - name = "sqlx-core" 4307 - version = "0.7.4" 4308 - source = "registry+https://github.com/rust-lang/crates.io-index" 4309 - checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" 4310 - dependencies = [ 4311 - "ahash 0.8.11", 4312 - "atoi", 4313 - "bigdecimal", 4314 - "byteorder", 4315 - "bytes", 4316 - "chrono", 4317 - "crc", 4318 - "crossbeam-queue", 4319 - "either", 4320 - "event-listener 2.5.3", 4321 - "futures-channel", 4322 - "futures-core", 4323 - "futures-intrusive", 4324 - "futures-io", 4325 - "futures-util", 4326 - "hashlink", 4327 - "hex", 4328 - "indexmap 2.2.6", 4329 - "log", 4330 - "memchr", 4331 - "once_cell", 4332 - "paste", 4333 - "percent-encoding", 4334 - "rust_decimal", 4335 - "rustls 0.21.12", 4336 - "rustls-pemfile 1.0.4", 4337 - "serde", 4338 - "serde_json", 4339 - "sha2", 4340 - "smallvec", 4341 - "sqlformat", 4342 - "thiserror", 4343 - "time", 4344 - "tokio", 4345 - "tokio-stream", 4346 - "tracing", 4347 - "url", 4348 - "uuid", 4349 - "webpki-roots 0.25.4", 4350 - ] 4351 - 4352 - [[package]] 4353 - name = "sqlx-macros" 4354 - version = "0.7.4" 4355 - source = "registry+https://github.com/rust-lang/crates.io-index" 4356 - checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" 4357 - dependencies = [ 4358 - "proc-macro2", 4359 - "quote", 4360 - "sqlx-core", 4361 - "sqlx-macros-core", 4362 - "syn 1.0.109", 4363 - ] 4364 - 4365 - [[package]] 4366 - name = "sqlx-macros-core" 4367 - version = "0.7.4" 4368 - source = "registry+https://github.com/rust-lang/crates.io-index" 4369 - checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" 4370 - dependencies = [ 4371 - "dotenvy", 4372 - "either", 4373 - "heck 0.4.1", 4374 - "hex", 4375 - "once_cell", 4376 - "proc-macro2", 4377 - "quote", 4378 - "serde", 4379 - "serde_json", 4380 - "sha2", 4381 - "sqlx-core", 4382 - "sqlx-mysql", 4383 - "sqlx-postgres", 4384 - "sqlx-sqlite", 4385 - "syn 1.0.109", 4386 - "tempfile", 4387 - "tokio", 4388 - "url", 4389 - ] 4390 - 4391 - [[package]] 4392 - name = "sqlx-mysql" 4393 - version = "0.7.4" 4394 - source = "registry+https://github.com/rust-lang/crates.io-index" 4395 - checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" 4396 - dependencies = [ 4397 - "atoi", 4398 - "base64 0.21.7", 4399 - "bigdecimal", 4400 - "bitflags 2.5.0", 4401 - "byteorder", 4402 - "bytes", 4403 - "chrono", 4404 - "crc", 4405 - "digest", 4406 - "dotenvy", 4407 - "either", 4408 - "futures-channel", 4409 - "futures-core", 4410 - "futures-io", 4411 - "futures-util", 4412 - "generic-array", 4413 - "hex", 4414 - "hkdf", 4415 - "hmac", 4416 - "itoa", 4417 - "log", 4418 - "md-5", 4419 - "memchr", 4420 - "once_cell", 4421 - "percent-encoding", 4422 - "rand", 4423 - "rsa 0.9.6", 4424 - "rust_decimal", 4425 - "serde", 4426 - "sha1", 4427 - "sha2", 4428 - "smallvec", 4429 - "sqlx-core", 4430 - "stringprep", 4431 - "thiserror", 4432 - "time", 4433 - "tracing", 4434 - "uuid", 4435 - "whoami", 4436 - ] 4437 - 4438 - [[package]] 4439 - name = "sqlx-postgres" 4440 - version = "0.7.4" 4441 - source = "registry+https://github.com/rust-lang/crates.io-index" 4442 - checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" 4443 - dependencies = [ 4444 - "atoi", 4445 - "base64 0.21.7", 4446 - "bigdecimal", 4447 - "bitflags 2.5.0", 4448 - "byteorder", 4449 - "chrono", 4450 - "crc", 4451 - "dotenvy", 4452 - "etcetera", 4453 - "futures-channel", 4454 - "futures-core", 4455 - "futures-io", 4456 - "futures-util", 4457 - "hex", 4458 - "hkdf", 4459 - "hmac", 4460 - "home", 4461 - "itoa", 4462 - "log", 4463 - "md-5", 4464 - "memchr", 4465 - "num-bigint", 4466 - "once_cell", 4467 - "rand", 4468 - "rust_decimal", 4469 - "serde", 4470 - "serde_json", 4471 - "sha2", 4472 - "smallvec", 4473 - "sqlx-core", 4474 - "stringprep", 4475 - "thiserror", 4476 - "time", 4477 - "tracing", 4478 - "uuid", 4479 - "whoami", 4480 - ] 4481 - 4482 - [[package]] 4483 - name = "sqlx-sqlite" 4484 - version = "0.7.4" 4485 - source = "registry+https://github.com/rust-lang/crates.io-index" 4486 - checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" 4487 - dependencies = [ 4488 - "atoi", 4489 - "chrono", 4490 - "flume", 4491 - "futures-channel", 4492 - "futures-core", 4493 - "futures-executor", 4494 - "futures-intrusive", 4495 - "futures-util", 4496 - "libsqlite3-sys", 4497 - "log", 4498 - "percent-encoding", 4499 - "serde", 4500 - "sqlx-core", 4501 - "time", 4502 - "tracing", 4503 - "url", 4504 - "urlencoding", 4505 - "uuid", 4506 - ] 4507 - 4508 - [[package]] 4509 - name = "static_assertions" 4510 - version = "1.1.0" 4511 - source = "registry+https://github.com/rust-lang/crates.io-index" 4512 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4513 - 4514 - [[package]] 4515 - name = "stringprep" 4516 - version = "0.1.5" 4517 - source = "registry+https://github.com/rust-lang/crates.io-index" 4518 - checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 4519 - dependencies = [ 4520 - "unicode-bidi", 4521 - "unicode-normalization", 4522 - "unicode-properties", 4523 - ] 4524 - 4525 - [[package]] 4526 - name = "strsim" 4527 - version = "0.11.1" 4528 - source = "registry+https://github.com/rust-lang/crates.io-index" 4529 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 4530 - 4531 - [[package]] 4532 - name = "strum" 4533 - version = "0.25.0" 4534 - source = "registry+https://github.com/rust-lang/crates.io-index" 4535 - checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 4536 - 4537 - [[package]] 4538 - name = "subtle" 4539 - version = "2.5.0" 4540 - source = "registry+https://github.com/rust-lang/crates.io-index" 4541 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 4542 - 4543 - [[package]] 4544 - name = "syn" 4545 - version = "1.0.109" 4546 - source = "registry+https://github.com/rust-lang/crates.io-index" 4547 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4548 - dependencies = [ 4549 - "proc-macro2", 4550 - "quote", 4551 - "unicode-ident", 4552 - ] 4553 - 4554 - [[package]] 4555 - name = "syn" 4556 - version = "2.0.66" 4557 - source = "registry+https://github.com/rust-lang/crates.io-index" 4558 - checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" 4559 - dependencies = [ 4560 - "proc-macro2", 4561 - "quote", 4562 - "unicode-ident", 4563 - ] 4564 - 4565 - [[package]] 4566 - name = "syn_derive" 4567 - version = "0.1.8" 4568 - source = "registry+https://github.com/rust-lang/crates.io-index" 4569 - checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 4570 - dependencies = [ 4571 - "proc-macro-error", 4572 - "proc-macro2", 4573 - "quote", 4574 - "syn 2.0.66", 4575 - ] 4576 - 4577 - [[package]] 4578 - name = "sync_wrapper" 4579 - version = "0.1.2" 4580 - source = "registry+https://github.com/rust-lang/crates.io-index" 4581 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 4582 - 4583 - [[package]] 4584 - name = "sync_wrapper" 4585 - version = "1.0.1" 4586 - source = "registry+https://github.com/rust-lang/crates.io-index" 4587 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 4588 - 4589 - [[package]] 4590 - name = "tap" 4591 - version = "1.0.1" 4592 - source = "registry+https://github.com/rust-lang/crates.io-index" 4593 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 4594 - 4595 - [[package]] 4596 - name = "tempfile" 4597 - version = "3.10.1" 4598 - source = "registry+https://github.com/rust-lang/crates.io-index" 4599 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 4600 - dependencies = [ 4601 - "cfg-if", 4602 - "fastrand", 4603 - "rustix", 4604 - "windows-sys 0.52.0", 4605 - ] 4606 - 4607 - [[package]] 4608 - name = "termcolor" 4609 - version = "1.4.1" 4610 - source = "registry+https://github.com/rust-lang/crates.io-index" 4611 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4612 - dependencies = [ 4613 - "winapi-util", 4614 - ] 4615 - 4616 - [[package]] 4617 - name = "thiserror" 4618 - version = "1.0.61" 4619 - source = "registry+https://github.com/rust-lang/crates.io-index" 4620 - checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 4621 - dependencies = [ 4622 - "thiserror-impl", 4623 - ] 4624 - 4625 - [[package]] 4626 - name = "thiserror-impl" 4627 - version = "1.0.61" 4628 - source = "registry+https://github.com/rust-lang/crates.io-index" 4629 - checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 4630 - dependencies = [ 4631 - "proc-macro2", 4632 - "quote", 4633 - "syn 2.0.66", 4634 - ] 4635 - 4636 - [[package]] 4637 - name = "thread_local" 4638 - version = "1.1.8" 4639 - source = "registry+https://github.com/rust-lang/crates.io-index" 4640 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 4641 - dependencies = [ 4642 - "cfg-if", 4643 - "once_cell", 4644 - ] 4645 - 4646 - [[package]] 4647 - name = "time" 4648 - version = "0.3.36" 4649 - source = "registry+https://github.com/rust-lang/crates.io-index" 4650 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 4651 - dependencies = [ 4652 - "deranged", 4653 - "itoa", 4654 - "num-conv", 4655 - "powerfmt", 4656 - "serde", 4657 - "time-core", 4658 - "time-macros", 4659 - ] 4660 - 4661 - [[package]] 4662 - name = "time-core" 4663 - version = "0.1.2" 4664 - source = "registry+https://github.com/rust-lang/crates.io-index" 4665 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 4666 - 4667 - [[package]] 4668 - name = "time-macros" 4669 - version = "0.2.18" 4670 - source = "registry+https://github.com/rust-lang/crates.io-index" 4671 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 4672 - dependencies = [ 4673 - "num-conv", 4674 - "time-core", 4675 - ] 4676 - 4677 - [[package]] 4678 - name = "tinytemplate" 4679 - version = "1.2.1" 4680 - source = "registry+https://github.com/rust-lang/crates.io-index" 4681 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 4682 - dependencies = [ 4683 - "serde", 4684 - "serde_json", 4685 - ] 4686 - 4687 - [[package]] 4688 - name = "tinyvec" 4689 - version = "1.6.0" 4690 - source = "registry+https://github.com/rust-lang/crates.io-index" 4691 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4692 - dependencies = [ 4693 - "tinyvec_macros", 4694 - ] 4695 - 4696 - [[package]] 4697 - name = "tinyvec_macros" 4698 - version = "0.1.1" 4699 - source = "registry+https://github.com/rust-lang/crates.io-index" 4700 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4701 - 4702 - [[package]] 4703 - name = "tokio" 4704 - version = "1.38.0" 4705 - source = "registry+https://github.com/rust-lang/crates.io-index" 4706 - checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 4707 - dependencies = [ 4708 - "backtrace", 4709 - "bytes", 4710 - "libc", 4711 - "mio 0.8.11", 4712 - "num_cpus", 4713 - "pin-project-lite", 4714 - "signal-hook-registry", 4715 - "socket2", 4716 - "tokio-macros", 4717 - "tracing", 4718 - "windows-sys 0.48.0", 4719 - ] 4720 - 4721 - [[package]] 4722 - name = "tokio-io-timeout" 4723 - version = "1.2.0" 4724 - source = "registry+https://github.com/rust-lang/crates.io-index" 4725 - checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 4726 - dependencies = [ 4727 - "pin-project-lite", 4728 - "tokio", 4729 - ] 4730 - 4731 - [[package]] 4732 - name = "tokio-macros" 4733 - version = "2.3.0" 4734 - source = "registry+https://github.com/rust-lang/crates.io-index" 4735 - checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 4736 - dependencies = [ 4737 - "proc-macro2", 4738 - "quote", 4739 - "syn 2.0.66", 4740 - ] 4741 - 4742 - [[package]] 4743 - name = "tokio-rustls" 4744 - version = "0.24.1" 4745 - source = "registry+https://github.com/rust-lang/crates.io-index" 4746 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 4747 - dependencies = [ 4748 - "rustls 0.21.12", 4749 - "tokio", 4750 - ] 4751 - 4752 - [[package]] 4753 - name = "tokio-rustls" 4754 - version = "0.25.0" 4755 - source = "registry+https://github.com/rust-lang/crates.io-index" 4756 - checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 4757 - dependencies = [ 4758 - "rustls 0.22.4", 4759 - "rustls-pki-types", 4760 - "tokio", 4761 - ] 4762 - 4763 - [[package]] 4764 - name = "tokio-stream" 4765 - version = "0.1.15" 4766 - source = "registry+https://github.com/rust-lang/crates.io-index" 4767 - checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 4768 - dependencies = [ 4769 - "futures-core", 4770 - "pin-project-lite", 4771 - "tokio", 4772 - ] 4773 - 4774 - [[package]] 4775 - name = "tokio-util" 4776 - version = "0.7.11" 4777 - source = "registry+https://github.com/rust-lang/crates.io-index" 4778 - checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 4779 - dependencies = [ 4780 - "bytes", 4781 - "futures-core", 4782 - "futures-sink", 4783 - "pin-project-lite", 4784 - "tokio", 4785 - ] 4786 - 4787 - [[package]] 4788 - name = "toml" 4789 - version = "0.8.13" 4790 - source = "registry+https://github.com/rust-lang/crates.io-index" 4791 - checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" 4792 - dependencies = [ 4793 - "serde", 4794 - "serde_spanned", 4795 - "toml_datetime", 4796 - "toml_edit 0.22.13", 4797 - ] 4798 - 4799 - [[package]] 4800 - name = "toml_datetime" 4801 - version = "0.6.6" 4802 - source = "registry+https://github.com/rust-lang/crates.io-index" 4803 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 4804 - dependencies = [ 4805 - "serde", 4806 - ] 4807 - 4808 - [[package]] 4809 - name = "toml_edit" 4810 - version = "0.21.1" 4811 - source = "registry+https://github.com/rust-lang/crates.io-index" 4812 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 4813 - dependencies = [ 4814 - "indexmap 2.2.6", 4815 - "toml_datetime", 4816 - "winnow 0.5.40", 4817 - ] 4818 - 4819 - [[package]] 4820 - name = "toml_edit" 4821 - version = "0.22.13" 4822 - source = "registry+https://github.com/rust-lang/crates.io-index" 4823 - checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" 4824 - dependencies = [ 4825 - "indexmap 2.2.6", 4826 - "serde", 4827 - "serde_spanned", 4828 - "toml_datetime", 4829 - "winnow 0.6.9", 4830 - ] 4831 - 4832 - [[package]] 4833 - name = "tonic" 4834 - version = "0.10.2" 4835 - source = "registry+https://github.com/rust-lang/crates.io-index" 4836 - checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e" 4837 - dependencies = [ 4838 - "async-stream", 4839 - "async-trait", 4840 - "axum 0.6.20", 4841 - "base64 0.21.7", 4842 - "bytes", 4843 - "h2", 4844 - "http 0.2.12", 4845 - "http-body 0.4.6", 4846 - "hyper 0.14.28", 4847 - "hyper-timeout", 4848 - "percent-encoding", 4849 - "pin-project", 4850 - "prost", 4851 - "tokio", 4852 - "tokio-stream", 4853 - "tower", 4854 - "tower-layer", 4855 - "tower-service", 4856 - "tracing", 4857 - ] 4858 - 4859 - [[package]] 4860 - name = "tower" 4861 - version = "0.4.13" 4862 - source = "registry+https://github.com/rust-lang/crates.io-index" 4863 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 4864 - dependencies = [ 4865 - "futures-core", 4866 - "futures-util", 4867 - "indexmap 1.9.3", 4868 - "pin-project", 4869 - "pin-project-lite", 4870 - "rand", 4871 - "slab", 4872 - "tokio", 4873 - "tokio-util", 4874 - "tower-layer", 4875 - "tower-service", 4876 - "tracing", 4877 - ] 4878 - 4879 - [[package]] 4880 - name = "tower-http" 4881 - version = "0.5.2" 4882 - source = "registry+https://github.com/rust-lang/crates.io-index" 4883 - checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" 4884 - dependencies = [ 4885 - "bitflags 2.5.0", 4886 - "bytes", 4887 - "futures-util", 4888 - "http 1.1.0", 4889 - "http-body 1.0.0", 4890 - "http-body-util", 4891 - "pin-project-lite", 4892 - "tower-layer", 4893 - "tower-service", 4894 - "tracing", 4895 - ] 4896 - 4897 - [[package]] 4898 - name = "tower-layer" 4899 - version = "0.3.2" 4900 - source = "registry+https://github.com/rust-lang/crates.io-index" 4901 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 4902 - 4903 - [[package]] 4904 - name = "tower-service" 4905 - version = "0.3.2" 4906 - source = "registry+https://github.com/rust-lang/crates.io-index" 4907 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4908 - 4909 - [[package]] 4910 - name = "tracing" 4911 - version = "0.1.40" 4912 - source = "registry+https://github.com/rust-lang/crates.io-index" 4913 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 4914 - dependencies = [ 4915 - "log", 4916 - "pin-project-lite", 4917 - "tracing-attributes", 4918 - "tracing-core", 4919 - ] 4920 - 4921 - [[package]] 4922 - name = "tracing-attributes" 4923 - version = "0.1.27" 4924 - source = "registry+https://github.com/rust-lang/crates.io-index" 4925 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 4926 - dependencies = [ 4927 - "proc-macro2", 4928 - "quote", 4929 - "syn 2.0.66", 4930 - ] 4931 - 4932 - [[package]] 4933 - name = "tracing-core" 4934 - version = "0.1.32" 4935 - source = "registry+https://github.com/rust-lang/crates.io-index" 4936 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4937 - dependencies = [ 4938 - "once_cell", 4939 - "valuable", 4940 - ] 4941 - 4942 - [[package]] 4943 - name = "tracing-error" 4944 - version = "0.2.0" 4945 - source = "registry+https://github.com/rust-lang/crates.io-index" 4946 - checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e" 4947 - dependencies = [ 4948 - "tracing", 4949 - "tracing-subscriber", 4950 - ] 4951 - 4952 - [[package]] 4953 - name = "tracing-log" 4954 - version = "0.2.0" 4955 - source = "registry+https://github.com/rust-lang/crates.io-index" 4956 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 4957 - dependencies = [ 4958 - "log", 4959 - "once_cell", 4960 - "tracing-core", 4961 - ] 4962 - 4963 - [[package]] 4964 - name = "tracing-serde" 4965 - version = "0.1.3" 4966 - source = "registry+https://github.com/rust-lang/crates.io-index" 4967 - checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" 4968 - dependencies = [ 4969 - "serde", 4970 - "tracing-core", 4971 - ] 4972 - 4973 - [[package]] 4974 - name = "tracing-subscriber" 4975 - version = "0.3.18" 4976 - source = "registry+https://github.com/rust-lang/crates.io-index" 4977 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 4978 - dependencies = [ 4979 - "matchers", 4980 - "nu-ansi-term", 4981 - "once_cell", 4982 - "regex", 4983 - "serde", 4984 - "serde_json", 4985 - "sharded-slab", 4986 - "smallvec", 4987 - "thread_local", 4988 - "tracing", 4989 - "tracing-core", 4990 - "tracing-log", 4991 - "tracing-serde", 4992 - ] 4993 - 4994 - [[package]] 4995 - name = "try-lock" 4996 - version = "0.2.5" 4997 - source = "registry+https://github.com/rust-lang/crates.io-index" 4998 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4999 - 5000 - [[package]] 5001 - name = "typenum" 5002 - version = "1.17.0" 5003 - source = "registry+https://github.com/rust-lang/crates.io-index" 5004 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 5005 - 5006 - [[package]] 5007 - name = "unicode-bidi" 5008 - version = "0.3.15" 5009 - source = "registry+https://github.com/rust-lang/crates.io-index" 5010 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 5011 - 5012 - [[package]] 5013 - name = "unicode-ident" 5014 - version = "1.0.12" 5015 - source = "registry+https://github.com/rust-lang/crates.io-index" 5016 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 5017 - 5018 - [[package]] 5019 - name = "unicode-normalization" 5020 - version = "0.1.23" 5021 - source = "registry+https://github.com/rust-lang/crates.io-index" 5022 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 5023 - dependencies = [ 5024 - "tinyvec", 5025 - ] 5026 - 5027 - [[package]] 5028 - name = "unicode-properties" 5029 - version = "0.1.1" 5030 - source = "registry+https://github.com/rust-lang/crates.io-index" 5031 - checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 5032 - 5033 - [[package]] 5034 - name = "unicode-segmentation" 5035 - version = "1.11.0" 5036 - source = "registry+https://github.com/rust-lang/crates.io-index" 5037 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 5038 - 5039 - [[package]] 5040 - name = "unicode-width" 5041 - version = "0.1.12" 5042 - source = "registry+https://github.com/rust-lang/crates.io-index" 5043 - checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" 5044 - 5045 - [[package]] 5046 - name = "unicode-xid" 5047 - version = "0.2.4" 5048 - source = "registry+https://github.com/rust-lang/crates.io-index" 5049 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 5050 - 5051 - [[package]] 5052 - name = "unicode_categories" 5053 - version = "0.1.1" 5054 - source = "registry+https://github.com/rust-lang/crates.io-index" 5055 - checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 5056 - 5057 - [[package]] 5058 - name = "unsafe-libyaml" 5059 - version = "0.2.11" 5060 - source = "registry+https://github.com/rust-lang/crates.io-index" 5061 - checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 5062 - 5063 - [[package]] 5064 - name = "untrusted" 5065 - version = "0.9.0" 5066 - source = "registry+https://github.com/rust-lang/crates.io-index" 5067 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 5068 - 5069 - [[package]] 5070 - name = "url" 5071 - version = "2.5.0" 5072 - source = "registry+https://github.com/rust-lang/crates.io-index" 5073 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 5074 - dependencies = [ 5075 - "form_urlencoded", 5076 - "idna", 5077 - "percent-encoding", 5078 - ] 5079 - 5080 - [[package]] 5081 - name = "urlencoding" 5082 - version = "2.1.3" 5083 - source = "registry+https://github.com/rust-lang/crates.io-index" 5084 - checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 5085 - 5086 - [[package]] 5087 - name = "utf8parse" 5088 - version = "0.2.1" 5089 - source = "registry+https://github.com/rust-lang/crates.io-index" 5090 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 5091 - 5092 - [[package]] 5093 - name = "uuid" 5094 - version = "1.8.0" 5095 - source = "registry+https://github.com/rust-lang/crates.io-index" 5096 - checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 5097 - dependencies = [ 5098 - "getrandom", 5099 - "serde", 5100 - ] 5101 - 5102 - [[package]] 5103 - name = "valuable" 5104 - version = "0.1.0" 5105 - source = "registry+https://github.com/rust-lang/crates.io-index" 5106 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 5107 - 5108 - [[package]] 5109 - name = "vcpkg" 5110 - version = "0.2.15" 5111 - source = "registry+https://github.com/rust-lang/crates.io-index" 5112 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5113 - 5114 - [[package]] 5115 - name = "version-compare" 5116 - version = "0.2.0" 5117 - source = "registry+https://github.com/rust-lang/crates.io-index" 5118 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 5119 - 5120 - [[package]] 5121 - name = "version_check" 5122 - version = "0.9.4" 5123 - source = "registry+https://github.com/rust-lang/crates.io-index" 5124 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5125 - 5126 - [[package]] 5127 - name = "vsimd" 5128 - version = "0.8.0" 5129 - source = "registry+https://github.com/rust-lang/crates.io-index" 5130 - checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 5131 - 5132 - [[package]] 5133 - name = "walkdir" 5134 - version = "2.5.0" 5135 - source = "registry+https://github.com/rust-lang/crates.io-index" 5136 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 5137 - dependencies = [ 5138 - "same-file", 5139 - "winapi-util", 5140 - ] 5141 - 5142 - [[package]] 5143 - name = "want" 5144 - version = "0.3.1" 5145 - source = "registry+https://github.com/rust-lang/crates.io-index" 5146 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 5147 - dependencies = [ 5148 - "try-lock", 5149 - ] 5150 - 5151 - [[package]] 5152 - name = "wasi" 5153 - version = "0.11.0+wasi-snapshot-preview1" 5154 - source = "registry+https://github.com/rust-lang/crates.io-index" 5155 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5156 - 5157 - [[package]] 5158 - name = "wasite" 5159 - version = "0.1.0" 5160 - source = "registry+https://github.com/rust-lang/crates.io-index" 5161 - checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 5162 - 5163 - [[package]] 5164 - name = "wasix" 5165 - version = "0.12.21" 5166 - source = "registry+https://github.com/rust-lang/crates.io-index" 5167 - checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d" 5168 - dependencies = [ 5169 - "wasi", 5170 - ] 5171 - 5172 - [[package]] 5173 - name = "wasm-bindgen" 5174 - version = "0.2.92" 5175 - source = "registry+https://github.com/rust-lang/crates.io-index" 5176 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 5177 - dependencies = [ 5178 - "cfg-if", 5179 - "wasm-bindgen-macro", 5180 - ] 5181 - 5182 - [[package]] 5183 - name = "wasm-bindgen-backend" 5184 - version = "0.2.92" 5185 - source = "registry+https://github.com/rust-lang/crates.io-index" 5186 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 5187 - dependencies = [ 5188 - "bumpalo", 5189 - "log", 5190 - "once_cell", 5191 - "proc-macro2", 5192 - "quote", 5193 - "syn 2.0.66", 5194 - "wasm-bindgen-shared", 5195 - ] 5196 - 5197 - [[package]] 5198 - name = "wasm-bindgen-futures" 5199 - version = "0.4.42" 5200 - source = "registry+https://github.com/rust-lang/crates.io-index" 5201 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 5202 - dependencies = [ 5203 - "cfg-if", 5204 - "js-sys", 5205 - "wasm-bindgen", 5206 - "web-sys", 5207 - ] 5208 - 5209 - [[package]] 5210 - name = "wasm-bindgen-macro" 5211 - version = "0.2.92" 5212 - source = "registry+https://github.com/rust-lang/crates.io-index" 5213 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 5214 - dependencies = [ 5215 - "quote", 5216 - "wasm-bindgen-macro-support", 5217 - ] 5218 - 5219 - [[package]] 5220 - name = "wasm-bindgen-macro-support" 5221 - version = "0.2.92" 5222 - source = "registry+https://github.com/rust-lang/crates.io-index" 5223 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 5224 - dependencies = [ 5225 - "proc-macro2", 5226 - "quote", 5227 - "syn 2.0.66", 5228 - "wasm-bindgen-backend", 5229 - "wasm-bindgen-shared", 5230 - ] 5231 - 5232 - [[package]] 5233 - name = "wasm-bindgen-shared" 5234 - version = "0.2.92" 5235 - source = "registry+https://github.com/rust-lang/crates.io-index" 5236 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 5237 - 5238 - [[package]] 5239 - name = "wasm-streams" 5240 - version = "0.4.0" 5241 - source = "registry+https://github.com/rust-lang/crates.io-index" 5242 - checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 5243 - dependencies = [ 5244 - "futures-util", 5245 - "js-sys", 5246 - "wasm-bindgen", 5247 - "wasm-bindgen-futures", 5248 - "web-sys", 5249 - ] 5250 - 5251 - [[package]] 5252 - name = "web-sys" 5253 - version = "0.3.69" 5254 - source = "registry+https://github.com/rust-lang/crates.io-index" 5255 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 5256 - dependencies = [ 5257 - "js-sys", 5258 - "wasm-bindgen", 5259 - ] 5260 - 5261 - [[package]] 5262 - name = "webpki-roots" 5263 - version = "0.25.4" 5264 - source = "registry+https://github.com/rust-lang/crates.io-index" 5265 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 5266 - 5267 - [[package]] 5268 - name = "webpki-roots" 5269 - version = "0.26.1" 5270 - source = "registry+https://github.com/rust-lang/crates.io-index" 5271 - checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 5272 - dependencies = [ 5273 - "rustls-pki-types", 5274 - ] 5275 - 5276 - [[package]] 5277 - name = "whoami" 5278 - version = "1.5.1" 5279 - source = "registry+https://github.com/rust-lang/crates.io-index" 5280 - checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" 5281 - dependencies = [ 5282 - "redox_syscall 0.4.1", 5283 - "wasite", 5284 - ] 5285 - 5286 - [[package]] 5287 - name = "wildmatch" 5288 - version = "2.3.4" 5289 - source = "registry+https://github.com/rust-lang/crates.io-index" 5290 - checksum = "3928939971918220fed093266b809d1ee4ec6c1a2d72692ff6876898f3b16c19" 5291 - 5292 - [[package]] 5293 - name = "winapi" 5294 - version = "0.3.9" 5295 - source = "registry+https://github.com/rust-lang/crates.io-index" 5296 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5297 - dependencies = [ 5298 - "winapi-i686-pc-windows-gnu", 5299 - "winapi-x86_64-pc-windows-gnu", 5300 - ] 5301 - 5302 - [[package]] 5303 - name = "winapi-i686-pc-windows-gnu" 5304 - version = "0.4.0" 5305 - source = "registry+https://github.com/rust-lang/crates.io-index" 5306 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5307 - 5308 - [[package]] 5309 - name = "winapi-util" 5310 - version = "0.1.8" 5311 - source = "registry+https://github.com/rust-lang/crates.io-index" 5312 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 5313 - dependencies = [ 5314 - "windows-sys 0.52.0", 5315 - ] 5316 - 5317 - [[package]] 5318 - name = "winapi-x86_64-pc-windows-gnu" 5319 - version = "0.4.0" 5320 - source = "registry+https://github.com/rust-lang/crates.io-index" 5321 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5322 - 5323 - [[package]] 5324 - name = "windows-core" 5325 - version = "0.52.0" 5326 - source = "registry+https://github.com/rust-lang/crates.io-index" 5327 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 5328 - dependencies = [ 5329 - "windows-targets 0.52.5", 5330 - ] 5331 - 5332 - [[package]] 5333 - name = "windows-sys" 5334 - version = "0.48.0" 5335 - source = "registry+https://github.com/rust-lang/crates.io-index" 5336 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5337 - dependencies = [ 5338 - "windows-targets 0.48.5", 5339 - ] 5340 - 5341 - [[package]] 5342 - name = "windows-sys" 5343 - version = "0.52.0" 5344 - source = "registry+https://github.com/rust-lang/crates.io-index" 5345 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5346 - dependencies = [ 5347 - "windows-targets 0.52.5", 5348 - ] 5349 - 5350 - [[package]] 5351 - name = "windows-targets" 5352 - version = "0.48.5" 5353 - source = "registry+https://github.com/rust-lang/crates.io-index" 5354 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5355 - dependencies = [ 5356 - "windows_aarch64_gnullvm 0.48.5", 5357 - "windows_aarch64_msvc 0.48.5", 5358 - "windows_i686_gnu 0.48.5", 5359 - "windows_i686_msvc 0.48.5", 5360 - "windows_x86_64_gnu 0.48.5", 5361 - "windows_x86_64_gnullvm 0.48.5", 5362 - "windows_x86_64_msvc 0.48.5", 5363 - ] 5364 - 5365 - [[package]] 5366 - name = "windows-targets" 5367 - version = "0.52.5" 5368 - source = "registry+https://github.com/rust-lang/crates.io-index" 5369 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 5370 - dependencies = [ 5371 - "windows_aarch64_gnullvm 0.52.5", 5372 - "windows_aarch64_msvc 0.52.5", 5373 - "windows_i686_gnu 0.52.5", 5374 - "windows_i686_gnullvm", 5375 - "windows_i686_msvc 0.52.5", 5376 - "windows_x86_64_gnu 0.52.5", 5377 - "windows_x86_64_gnullvm 0.52.5", 5378 - "windows_x86_64_msvc 0.52.5", 5379 - ] 5380 - 5381 - [[package]] 5382 - name = "windows_aarch64_gnullvm" 5383 - version = "0.48.5" 5384 - source = "registry+https://github.com/rust-lang/crates.io-index" 5385 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5386 - 5387 - [[package]] 5388 - name = "windows_aarch64_gnullvm" 5389 - version = "0.52.5" 5390 - source = "registry+https://github.com/rust-lang/crates.io-index" 5391 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 5392 - 5393 - [[package]] 5394 - name = "windows_aarch64_msvc" 5395 - version = "0.48.5" 5396 - source = "registry+https://github.com/rust-lang/crates.io-index" 5397 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5398 - 5399 - [[package]] 5400 - name = "windows_aarch64_msvc" 5401 - version = "0.52.5" 5402 - source = "registry+https://github.com/rust-lang/crates.io-index" 5403 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 5404 - 5405 - [[package]] 5406 - name = "windows_i686_gnu" 5407 - version = "0.48.5" 5408 - source = "registry+https://github.com/rust-lang/crates.io-index" 5409 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5410 - 5411 - [[package]] 5412 - name = "windows_i686_gnu" 5413 - version = "0.52.5" 5414 - source = "registry+https://github.com/rust-lang/crates.io-index" 5415 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 5416 - 5417 - [[package]] 5418 - name = "windows_i686_gnullvm" 5419 - version = "0.52.5" 5420 - source = "registry+https://github.com/rust-lang/crates.io-index" 5421 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 5422 - 5423 - [[package]] 5424 - name = "windows_i686_msvc" 5425 - version = "0.48.5" 5426 - source = "registry+https://github.com/rust-lang/crates.io-index" 5427 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5428 - 5429 - [[package]] 5430 - name = "windows_i686_msvc" 5431 - version = "0.52.5" 5432 - source = "registry+https://github.com/rust-lang/crates.io-index" 5433 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 5434 - 5435 - [[package]] 5436 - name = "windows_x86_64_gnu" 5437 - version = "0.48.5" 5438 - source = "registry+https://github.com/rust-lang/crates.io-index" 5439 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5440 - 5441 - [[package]] 5442 - name = "windows_x86_64_gnu" 5443 - version = "0.52.5" 5444 - source = "registry+https://github.com/rust-lang/crates.io-index" 5445 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 5446 - 5447 - [[package]] 5448 - name = "windows_x86_64_gnullvm" 5449 - version = "0.48.5" 5450 - source = "registry+https://github.com/rust-lang/crates.io-index" 5451 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5452 - 5453 - [[package]] 5454 - name = "windows_x86_64_gnullvm" 5455 - version = "0.52.5" 5456 - source = "registry+https://github.com/rust-lang/crates.io-index" 5457 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 5458 - 5459 - [[package]] 5460 - name = "windows_x86_64_msvc" 5461 - version = "0.48.5" 5462 - source = "registry+https://github.com/rust-lang/crates.io-index" 5463 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5464 - 5465 - [[package]] 5466 - name = "windows_x86_64_msvc" 5467 - version = "0.52.5" 5468 - source = "registry+https://github.com/rust-lang/crates.io-index" 5469 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 5470 - 5471 - [[package]] 5472 - name = "winnow" 5473 - version = "0.5.40" 5474 - source = "registry+https://github.com/rust-lang/crates.io-index" 5475 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5476 - dependencies = [ 5477 - "memchr", 5478 - ] 5479 - 5480 - [[package]] 5481 - name = "winnow" 5482 - version = "0.6.9" 5483 - source = "registry+https://github.com/rust-lang/crates.io-index" 5484 - checksum = "86c949fede1d13936a99f14fafd3e76fd642b556dd2ce96287fbe2e0151bfac6" 5485 - dependencies = [ 5486 - "memchr", 5487 - ] 5488 - 5489 - [[package]] 5490 - name = "winreg" 5491 - version = "0.52.0" 5492 - source = "registry+https://github.com/rust-lang/crates.io-index" 5493 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 5494 - dependencies = [ 5495 - "cfg-if", 5496 - "windows-sys 0.48.0", 5497 - ] 5498 - 5499 - [[package]] 5500 - name = "wyz" 5501 - version = "0.5.1" 5502 - source = "registry+https://github.com/rust-lang/crates.io-index" 5503 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 5504 - dependencies = [ 5505 - "tap", 5506 - ] 5507 - 5508 - [[package]] 5509 - name = "xdg" 5510 - version = "2.5.2" 5511 - source = "registry+https://github.com/rust-lang/crates.io-index" 5512 - checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 5513 - 5514 - [[package]] 5515 - name = "xmlparser" 5516 - version = "0.13.6" 5517 - source = "registry+https://github.com/rust-lang/crates.io-index" 5518 - checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 5519 - 5520 - [[package]] 5521 - name = "xz2" 5522 - version = "0.1.7" 5523 - source = "registry+https://github.com/rust-lang/crates.io-index" 5524 - checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 5525 - dependencies = [ 5526 - "lzma-sys", 5527 - ] 5528 - 5529 - [[package]] 5530 - name = "zerocopy" 5531 - version = "0.7.34" 5532 - source = "registry+https://github.com/rust-lang/crates.io-index" 5533 - checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" 5534 - dependencies = [ 5535 - "zerocopy-derive", 5536 - ] 5537 - 5538 - [[package]] 5539 - name = "zerocopy-derive" 5540 - version = "0.7.34" 5541 - source = "registry+https://github.com/rust-lang/crates.io-index" 5542 - checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" 5543 - dependencies = [ 5544 - "proc-macro2", 5545 - "quote", 5546 - "syn 2.0.66", 5547 - ] 5548 - 5549 - [[package]] 5550 - name = "zeroize" 5551 - version = "1.8.1" 5552 - source = "registry+https://github.com/rust-lang/crates.io-index" 5553 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 5554 - 5555 - [[package]] 5556 - name = "zstd" 5557 - version = "0.13.1" 5558 - source = "registry+https://github.com/rust-lang/crates.io-index" 5559 - checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" 5560 - dependencies = [ 5561 - "zstd-safe", 5562 - ] 5563 - 5564 - [[package]] 5565 - name = "zstd-safe" 5566 - version = "7.1.0" 5567 - source = "registry+https://github.com/rust-lang/crates.io-index" 5568 - checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" 5569 - dependencies = [ 5570 - "zstd-sys", 5571 - ] 5572 - 5573 - [[package]] 5574 - name = "zstd-sys" 5575 - version = "2.0.10+zstd.1.5.6" 5576 - source = "registry+https://github.com/rust-lang/crates.io-index" 5577 - checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" 5578 - dependencies = [ 5579 - "cc", 5580 - "pkg-config", 5581 - ]
+2 -3
pkgs/by-name/at/attic-client/package.nix
··· 39 39 ] 40 40 ); 41 41 42 - cargoLock = { 43 - lockFile = ./Cargo.lock; 44 - }; 45 42 cargoBuildFlags = lib.concatMapStrings (c: "-p ${c} ") crates; 43 + cargoHash = "sha256-AbpWnYfBMrR6oOfy2LkQvIPYsClCWE89bJav+iHTtLM="; 44 + useFetchCargoVendor = true; 46 45 47 46 ATTIC_DISTRIBUTOR = "nixpkgs"; 48 47 NIX_INCLUDE_PATH = "${lib.getDev nix}/include";
+20 -3
pkgs/by-name/da/dashy-ui/package.nix
··· 5 5 fetchYarnDeps, 6 6 yarnConfigHook, 7 7 yarnBuildHook, 8 - nodejs, 8 + yarn, 9 + fixup-yarn-lock, 10 + prefetch-yarn-deps, 11 + nodejs_20, 12 + nodejs-slim_20, 9 13 yq-go, 10 14 settings ? { }, 11 15 }: ··· 41 45 ''; 42 46 43 47 nativeBuildInputs = [ 44 - yarnConfigHook 48 + # This is required to fully pin the NodeJS version, since yarn*Hooks pull in the latest LTS in nixpkgs 49 + # The yarn override is the only one technically required (fixup-yarn-lock and prefetch-yarn-deps' node version doesn't affect the end result), 50 + # but they've been overridden for the sake of consistency/in case future updates to dashy/node would cause issues with differing major versions 51 + (yarnConfigHook.override { 52 + fixup-yarn-lock = fixup-yarn-lock.override { 53 + nodejs-slim = nodejs-slim_20; 54 + }; 55 + prefetch-yarn-deps = prefetch-yarn-deps.override { 56 + nodejs-slim = nodejs-slim_20; 57 + }; 58 + yarn = yarn.override { 59 + nodejs = nodejs_20; 60 + }; 61 + }) 45 62 yarnBuildHook 46 - nodejs 63 + nodejs_20 47 64 # For yaml parsing 48 65 yq-go 49 66 ];
+14
pkgs/by-name/dr/drat-trim/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 }: 6 7 7 8 stdenv.mkDerivation { ··· 15 16 hash = "sha256-sV3A0f1TLSaTIdAtT6y8rU3ZS2UqEePJYSf3UySOlSA="; 16 17 }; 17 18 19 + patches = [ 20 + # gcc-14 build fix: https://github.com/marijnheule/drat-trim/pull/40 21 + (fetchpatch { 22 + name = "gcc-14-fix.patch"; 23 + url = "https://github.com/marijnheule/drat-trim/commit/8186a7dc083a3951ba87e5ff35d36f1ea2c03f0d.patch"; 24 + hash = "sha256-jgsOYcRYD2VGdOrXW9D8Jh80Nqd+Kp3d2IU+bNK1yGg="; 25 + }) 26 + ]; 27 + 18 28 postPatch = '' 19 29 substituteInPlace Makefile --replace gcc cc 20 30 ''; 21 31 22 32 installPhase = '' 33 + runHook preInstall 34 + 23 35 install -Dt $out/bin drat-trim lrat-check 36 + 37 + runHook postInstall 24 38 ''; 25 39 26 40 meta = with lib; {
+1
pkgs/by-name/en/envision/package.nix
··· 94 94 x264 95 95 glslang 96 96 libdrm 97 + libnotify 97 98 openssl 98 99 ]) 99 100 );
+3 -2
pkgs/by-name/ge/gerrit/package.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "gerrit"; 10 - version = "3.11.0"; 10 + version = "3.11.1"; 11 11 12 12 src = fetchurl { 13 13 url = "https://gerrit-releases.storage.googleapis.com/gerrit-${version}.war"; 14 - hash = "sha256-wFUks4yGzO4obPWIIfCgL+/ZF37RDgXKvlOMSFvU5Bk="; 14 + hash = "sha256-7gJyvFOisukzd2Vmqci7CiJqegYQSYQZvnSvR+Y9HM4="; 15 15 }; 16 16 17 17 buildCommand = '' ··· 48 48 maintainers = with maintainers; [ 49 49 flokli 50 50 zimbatm 51 + felixsinger 51 52 ]; 52 53 platforms = platforms.unix; 53 54 };
+3 -3
pkgs/by-name/go/goread/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "goread"; 9 - version = "1.7.2"; 9 + version = "1.7.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "TypicalAM"; 13 13 repo = "goread"; 14 14 rev = "v${version}"; 15 - hash = "sha256-8QjroS0aKALcrDJkpihD70iJJBdiVP4Q2j2n3BsY71w="; 15 + hash = "sha256-2C/PejWCwLdWu9n2hpbm3u/UrD56JCJqG+A7xnn/bP4="; 16 16 }; 17 17 18 - vendorHash = "sha256-S/0uuy/G7ZT239OgKaOT1dmY+u5/lnZKL4GtbEi2zCI="; 18 + vendorHash = "sha256-3H2n/VsJHZ/69YR6P38B36mFz85cNHaTtT9N0YQOVew="; 19 19 20 20 env.TEST_OFFLINE_ONLY = 1; 21 21
+3 -3
pkgs/by-name/mi/mise/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "mise"; 23 - version = "2025.1.0"; 23 + version = "2025.1.6"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "jdx"; 27 27 repo = "mise"; 28 28 rev = "v${version}"; 29 - hash = "sha256-q6kzDs2YBeO3H/4LuKszkelT1SKfe5yK8j5yG41WHQQ="; 29 + hash = "sha256-eMKrRrthV37ndsF47jjNxigsJ5WDsCDCit9J88l5dHE="; 30 30 }; 31 31 32 - cargoHash = "sha256-c/PgxIdLrKfDdeHL3HNuhvmgtSsFr/lhMPR6r2NVWBg="; 32 + cargoHash = "sha256-Mh7vyIVkQ0N1dYD4KVue0eiBm+z0JFPt89qYpu+wVd0="; 33 33 34 34 nativeBuildInputs = [ 35 35 installShellFiles
+9 -3
pkgs/by-name/on/onboard/package.nix
··· 1 1 { 2 2 fetchurl, 3 3 fetchpatch, 4 + stdenv, 4 5 lib, 5 6 substituteAll, 6 7 aspellWithDicts, ··· 79 80 intltool 80 81 pkg-config 81 82 wrapGAppsHook3 83 + python3.pkgs.setuptools 82 84 ]; 83 85 84 86 buildInputs = [ ··· 140 142 141 143 chmod -x ./scripts/sokSettings.py 142 144 143 - patchShebangs . 145 + patchShebangs --host Onboard/ onboard-settings onboard 144 146 145 147 substituteInPlace setup.py \ 148 + --replace-fail "pkg-config" "${stdenv.cc.targetPrefix}pkg-config" \ 146 149 --replace "/etc" "$out/etc" 147 150 148 151 substituteInPlace ./Onboard/LanguageSupport.py \ ··· 177 180 178 181 # setuptools to get distutils with python 3.12 179 182 installPhase = '' 180 - ${(python3.withPackages (p: [ p.setuptools ])).interpreter} setup.py install --prefix="$out" 181 - 183 + runHook preInstall 184 + ${ 185 + (python3.pythonOnBuildForHost.withPackages (p: [ p.setuptools ])).interpreter 186 + } setup.py install --prefix="$out" 182 187 cp onboard-default-settings.gschema.override.example $out/share/glib-2.0/schemas/10_onboard-default-settings.gschema.override 183 188 glib-compile-schemas $out/share/glib-2.0/schemas/ 189 + runHook postInstall 184 190 ''; 185 191 186 192 # Remove ubuntu icons.
+3 -3
pkgs/by-name/pl/pluto/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "pluto"; 9 - version = "5.21.0"; 9 + version = "5.21.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "FairwindsOps"; 13 13 repo = "pluto"; 14 14 rev = "v${version}"; 15 - hash = "sha256-jz1hne6Lwow1a2Ckfp4C1/gD57V2kYFdik9DQ/EkjLI="; 15 + hash = "sha256-BGfTgL5xAudgGAyINVq9eyyUHRb6iZ/eEO5qxUl5cI0="; 16 16 }; 17 17 18 - vendorHash = "sha256-VkaFANSzKOpmHWUwFp7YjwvsJegcJOrvJOBNNAIxOak="; 18 + vendorHash = "sha256-PABCma+pfguDHxRhvQYCHcjr7Epy2AteC+QiXbAx04k="; 19 19 20 20 ldflags = [ 21 21 "-w"
+34 -12
pkgs/by-name/ra/rattler-build/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 fetchFromGitHub, 4 5 rustPlatform, 5 - versionCheckHook, 6 6 7 7 openssl, 8 8 pkg-config, 9 + installShellFiles, 10 + buildPackages, 11 + versionCheckHook, 12 + nix-update-script, 9 13 }: 10 14 11 15 rustPlatform.buildRustPackage rec { 12 16 pname = "rattler-build"; 13 - version = "0.33.1"; 17 + version = "0.34.1"; 14 18 15 19 src = fetchFromGitHub { 16 20 owner = "prefix-dev"; 17 21 repo = "rattler-build"; 18 - rev = "refs/tags/v${version}"; 19 - hash = "sha256-yceScRfZuMVnNVNVg3Xs+jU3spdFn0hPMmwMLaYzkNE="; 22 + tag = "v${version}"; 23 + hash = "sha256-HDRQveWOJKGBWxN7ZyIECo1HBfz+vSaLW7ueSok+d64="; 20 24 }; 21 25 22 26 useFetchCargoVendor = true; 23 - cargoHash = "sha256-eJH7a+9asSPDv0gBwvLc4zssJGCY2jAfVKKOWb3oQ/Q="; 27 + cargoHash = "sha256-b44bL/xVUwBdqwr/jawZbyV+yHsGR3hREm4nvHDMCWA="; 24 28 25 29 doCheck = false; # test requires network access 30 + 31 + buildInputs = [ 32 + openssl 33 + ]; 26 34 27 35 nativeBuildInputs = [ 28 36 pkg-config 37 + installShellFiles 29 38 ]; 30 39 31 - buildInputs = [ 32 - openssl 33 - ]; 40 + cargoBuildFlags = [ "--bin rattler-build" ]; # other bin like `generate-cli-docs` shouldn't be distributed. 41 + 42 + postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) ( 43 + let 44 + emulator = stdenv.hostPlatform.emulator buildPackages; 45 + in 46 + '' 47 + installShellCompletion --cmd rattler-build \ 48 + --bash <(${emulator} $out/bin/rattler-build completion --shell bash) \ 49 + --fish <(${emulator} $out/bin/rattler-build completion --shell fish) \ 50 + --zsh <(${emulator} $out/bin/rattler-build completion --shell zsh) 51 + '' 52 + ); 34 53 35 54 doInstallCheck = true; 36 - 37 55 nativeInstallCheckInputs = [ 38 56 versionCheckHook 39 57 ]; 58 + versionCheckProgramArg = [ "--version" ]; 40 59 41 - versionCheckProgramArg = [ "-V" ]; 60 + passthru.updateScript = nix-update-script { }; 42 61 43 62 meta = { 44 63 description = "Universal package builder for Windows, macOS and Linux"; 45 - homepage = "https://github.com/prefix-dev/rattler-build"; 64 + homepage = "https://rattler.build/"; 46 65 changelog = "https://github.com/prefix-dev/rattler-build/releases/tag/v${version}"; 47 66 license = lib.licenses.bsd3; 48 - maintainers = with lib.maintainers; [ genga898 ]; 67 + maintainers = with lib.maintainers; [ 68 + genga898 69 + xiaoxiangmoe 70 + ]; 49 71 mainProgram = "rattler-build"; 50 72 }; 51 73 }
+3 -3
pkgs/by-name/su/supabase-cli/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "supabase-cli"; 13 - version = "2.2.1"; 13 + version = "2.6.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "supabase"; 17 17 repo = "cli"; 18 18 rev = "v${version}"; 19 - hash = "sha256-m7v31fG3ASbOFGv+IsV5IwnKyr+31i4yAAVpawvFHpo="; 19 + hash = "sha256-kMVVb5f8SEo/fc+PmRh1QskIxzbG+Y9gOufVvq5mN30="; 20 20 }; 21 21 22 - vendorHash = "sha256-QIt7a+NVd3hubxKOA2kGjouBO5ve7qmIRTIVRpsXmdk="; 22 + vendorHash = "sha256-H4o38npYbF77NSO7EALjoH3EXdUCjIPDboWEhWE4hXo="; 23 23 24 24 ldflags = [ 25 25 "-s"
+14 -12
pkgs/by-name/sy/systemctl-tui/package.nix
··· 1 1 { 2 2 lib, 3 3 rustPlatform, 4 - fetchCrate, 5 - stdenv, 6 - darwin, 4 + fetchFromGitHub, 5 + versionCheckHook, 7 6 nix-update-script, 8 - testers, 9 - systemctl-tui, 10 7 }: 11 8 12 9 rustPlatform.buildRustPackage rec { 13 10 pname = "systemctl-tui"; 14 - version = "0.3.8"; 11 + version = "0.3.9"; 15 12 16 - src = fetchCrate { 17 - inherit pname version; 18 - hash = "sha256-i2PKSvjsrITLp3a3EgfFF3IR464mkkDnh8ITLO+o0hU="; 13 + src = fetchFromGitHub { 14 + owner = "rgwood"; 15 + repo = "systemctl-tui"; 16 + tag = "v${version}"; 17 + hash = "sha256-LuE0+HxTWROFbqEqqM6464U236/7qxed7xMUkSNUK68="; 19 18 }; 20 19 21 - cargoHash = "sha256-6cFK1wMO5VICfi3tN140XH9inQOkkSfHVogKhTHtQb8="; 20 + cargoHash = "sha256-R1JV5Hp10I9DO6I2k8sQC2IXJ+U7iJ2iAzb391e895c="; 22 21 23 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.AppKit ]; 22 + nativeInstallCheckInputs = [ 23 + versionCheckHook 24 + ]; 25 + versionCheckProgramArg = [ "--version" ]; 26 + doInstallCheck = true; 24 27 25 28 passthru = { 26 29 updateScript = nix-update-script; 27 - tests.version = testers.testVersion { package = systemctl-tui; }; 28 30 }; 29 31 30 32 meta = {
+3 -3
pkgs/by-name/te/terragrunt/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "terragrunt"; 10 - version = "0.71.1"; 10 + version = "0.71.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "gruntwork-io"; 14 14 repo = pname; 15 15 tag = "v${version}"; 16 - hash = "sha256-146fSTiDzISvtE8tu/pKiXwfoVu2UOgdBQxw0mWyHmY="; 16 + hash = "sha256-R05Tv6crYMXnmUzBDaTAR1LNpd8CV0RK54U9nUN5q+4="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ go-mockery ]; ··· 22 22 make generate-mocks 23 23 ''; 24 24 25 - vendorHash = "sha256-atdOaJcMH9lc9kiosMHm7TDRjp3tWnWvOZdzlNmjO/k="; 25 + vendorHash = "sha256-G7J0J5Gghl+yKaCrIbgen45xKUl1ALb0CcIV9HfBdZ8="; 26 26 27 27 doCheck = false; 28 28
+3 -3
pkgs/by-name/tf/tfsec/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "tfsec"; 9 - version = "1.28.12"; 9 + version = "1.28.13"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "aquasecurity"; 13 13 repo = "tfsec"; 14 14 tag = "v${version}"; 15 - hash = "sha256-ul4KKwTWFg5FxmLhyrQAQWfuCoSVDc6eIchbLwpG/xI="; 15 + hash = "sha256-4auh0MPLSAkygbVZC2PbEcA21PNmBNkr4fA1m1H9kyU="; 16 16 }; 17 17 18 18 ldflags = [ ··· 23 23 # "-extldflags '-fno-PIC -static'" 24 24 ]; 25 25 26 - vendorHash = "sha256-yi124OllfSchKSaj+OlxG/7UQcBLdx8JUlnu/a8MSOU="; 26 + vendorHash = "sha256-cGVHDq4exa1dZxEemCWNLA5H201SXwW0madYCWHwtxM="; 27 27 28 28 subPackages = [ 29 29 "cmd/tfsec"
+14 -6
pkgs/by-name/th/the-legend-of-edgar/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 SDL2, 6 7 SDL2_image, 7 8 SDL2_mixer, ··· 14 15 15 16 stdenv.mkDerivation (finalAttrs: { 16 17 pname = "the-legend-of-edgar"; 17 - version = "1.36-unstable-2023-07-11"; 18 + version = "1.37"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "riksweeney"; 21 22 repo = "edgar"; 22 - rev = "8344b385b65e8226455c7e88bd5aca57caa3c520"; 23 - hash = "sha256-dOLKMsyQkVZ7gBiURfr/tFbu3xSqei8A/M2HSZgAFnI="; 23 + rev = finalAttrs.version; 24 + hash = "sha256-hhzDNnoQCwHOwknABTz4a9AQ7MkU9vayi2tZvJtK1PQ="; 24 25 }; 25 26 27 + patches = [ 28 + # Fix _FORTIFY_SOURCE startup crash: 29 + # https://github.com/riksweeney/edgar/pull/67 30 + (fetchpatch { 31 + url = "https://github.com/riksweeney/edgar/commit/cec80a04d765fd2f6563d1cf060ad5000f9efe0a.patch"; 32 + hash = "sha256-RJpIt7M3c989nXkWRTY+dIUGqqttyTTGx8s5u/iTWX4="; 33 + }) 34 + ]; 35 + 26 36 nativeBuildInputs = [ 27 37 pkg-config 28 38 gettext ··· 46 56 "BIN_DIR=${placeholder "out"}/bin/" 47 57 ]; 48 58 49 - hardeningDisable = [ 50 - "fortify" 51 - ]; 59 + enableParallelBuilding = true; 52 60 53 61 meta = { 54 62 homepage = "https://www.parallelrealities.co.uk/games/edgar";
+3 -3
pkgs/by-name/ti/tile38/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "tile38"; 9 - version = "1.34.0"; 9 + version = "1.34.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "tidwall"; 13 13 repo = pname; 14 14 rev = version; 15 - hash = "sha256-C8vVmmIDHc5aaiS0kK6LbB0DAZADAH79LXtMsQ019Xk="; 15 + hash = "sha256-uIVQXGKCwVEgrQyOheZzgDTVEdEVDSx8KIHbROqQaOs="; 16 16 }; 17 17 18 - vendorHash = "sha256-nnamNwowRPWQBKUMg800bFgijv8iHbdh/wUwTfX0NcY="; 18 + vendorHash = "sha256-2Ze1gbPReVHLqqIwT00Zj0ne7FeZUpno75WhETY8zKM="; 19 19 20 20 subPackages = [ 21 21 "cmd/tile38-cli"
+2 -2
pkgs/by-name/ti/tippecanoe/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "tippecanoe"; 13 - version = "2.73.0"; 13 + version = "2.74.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "felt"; 17 17 repo = "tippecanoe"; 18 18 rev = finalAttrs.version; 19 - hash = "sha256-IQEtfLRWe0/R6FSGzyar+qcpng0nm3LcyBb352TLZrs="; 19 + hash = "sha256-LOy9q2Qc47DQxPkAt2mmlmrJUcoL+hBpm0dFI4oZo/0="; 20 20 }; 21 21 22 22 buildInputs = [
+2 -2
pkgs/by-name/va/vacuum-go/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "vacuum-go"; 11 - version = "0.15.0"; 11 + version = "0.15.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "daveshanley"; 15 15 repo = "vacuum"; 16 16 # using refs/tags because simple version gives: 'the given path has multiple possibilities' error 17 17 tag = "v${version}"; 18 - hash = "sha256-OsujmYu0QNyfyj6W8+aPcV4xsjpwZDWSJC7WjIw+rOc="; 18 + hash = "sha256-SI32ODbd3X4zMhS3LI4vwVn9/gwgabWZ/8Nx+L3KPYE="; 19 19 }; 20 20 21 21 vendorHash = "sha256-xTqrKkCRO6lUbzXI4/UrBoZsKU9mQW8cMrnZ2X3wzog=";
+3 -3
pkgs/by-name/ze/zed-editor/package.nix
··· 93 93 in 94 94 rustPlatform.buildRustPackage rec { 95 95 pname = "zed-editor"; 96 - version = "0.168.2"; 96 + version = "0.168.3"; 97 97 98 98 src = fetchFromGitHub { 99 99 owner = "zed-industries"; 100 100 repo = "zed"; 101 101 tag = "v${version}"; 102 - hash = "sha256-ar1JpLbfKdFZFszCCmYMzTQx6yhVIFFT+EbeA7H5H2g="; 102 + hash = "sha256-YGHbka8kCKOquY2I17N8oS7ckhX/uY6QXJ21+kQjQBg="; 103 103 }; 104 104 105 105 patches = [ ··· 119 119 ''; 120 120 121 121 useFetchCargoVendor = true; 122 - cargoHash = "sha256-Vw/WUOLiIOuULSMT57G8MsubQR63J+oh88lmlPNkRYs="; 122 + cargoHash = "sha256-pZK2PzR39fMAiqhfA0WtZnIRzAVbqxnViQnWKmZoRV0="; 123 123 124 124 nativeBuildInputs = 125 125 [
+7 -2
pkgs/desktops/pantheon/apps/elementary-dock/default.nix
··· 13 13 gtk4, 14 14 libadwaita, 15 15 wayland, 16 + nix-update-script, 16 17 }: 17 18 18 19 stdenv.mkDerivation (finalAttrs: { 19 20 pname = "elementary-dock"; 20 - version = "8.0.1"; 21 + version = "8.0.2"; 21 22 22 23 outputs = [ 23 24 "out" ··· 28 29 owner = "elementary"; 29 30 repo = "dock"; 30 31 rev = finalAttrs.version; 31 - hash = "sha256-Q4Y9FVqzPXoz2Nti1qB5SOJQ0tETPcv2fZPOMkJaND8="; 32 + hash = "sha256-bixNYpPdWU2FndiCPX7SxNTz2MEttRuj35NaWn3GJrI="; 32 33 }; 33 34 34 35 depsBuildBuild = [ pkg-config ]; ··· 49 50 libadwaita 50 51 wayland 51 52 ]; 53 + 54 + passthru = { 55 + updateScript = nix-update-script { }; 56 + }; 52 57 53 58 meta = { 54 59 description = "Elegant, simple, clean dock";
+2 -2
pkgs/development/libraries/gdal/default.nix
··· 83 83 84 84 stdenv.mkDerivation (finalAttrs: { 85 85 pname = "gdal" + lib.optionalString useMinimalFeatures "-minimal"; 86 - version = "3.10.0"; 86 + version = "3.10.1"; 87 87 88 88 src = fetchFromGitHub { 89 89 owner = "OSGeo"; 90 90 repo = "gdal"; 91 91 rev = "v${finalAttrs.version}"; 92 - hash = "sha256-pb2xKTmJB7U1jIG80ENmZrR7vFw6YDoees43u/JhU3Y="; 92 + hash = "sha256-4XUDHN1RJPgURwTFPFu/9QRqW6XhLMydti9CRO6p7SI="; 93 93 }; 94 94 95 95 nativeBuildInputs =
+2 -1
pkgs/development/ocaml-modules/elpi/default.nix
··· 8 8 , ppxlib, ppx_deriving 9 9 , ppxlib_0_15, ppx_deriving_0_15 10 10 , coqPackages 11 - , version ? if lib.versionAtLeast ocaml.version "4.13" then "2.0.6" 11 + , version ? if lib.versionAtLeast ocaml.version "4.13" then "2.0.7" 12 12 else if lib.versionAtLeast ocaml.version "4.08" then "1.20.0" 13 13 else "1.15.2" 14 14 }: ··· 17 17 let camlp5 = p5.override { legacy = true; }; in 18 18 19 19 let fetched = coqPackages.metaFetch ({ 20 + release."2.0.7".sha256 = "sha256-gCM+vZK6vWlhSO1VMjiWHse23mvxVwRarhxwkIQK7e0="; 20 21 release."2.0.6".sha256 = "sha256-tRUYXQZ0VXrjIZBZ1skdzieUsww4rSNEe5ik+iKpk3U="; 21 22 release."2.0.5".sha256 = "sha256-cHgERFqrfSg5WtUX3UxR6L+QkzS7+t6n4V+wweiEacc="; 22 23 release."1.20.0".sha256 = "sha256-lctZAIQgOg5d+LfILtWsBVcsemV3zTZYfJfDlCxHtcA=";
+4 -3
pkgs/development/python-modules/cleanlab/default.nix
··· 44 44 }; 45 45 46 46 patches = [ 47 - # https://github.com/cleanlab/cleanlab/pull/1224 47 + # https://github.com/cleanlab/cleanlab/pull/1224 (merged) 48 + # TODO: remove this patch when updating to the next release (2.8.0) 48 49 (fetchpatch { 49 50 name = "numpy2-compatibility"; 50 - url = "https://github.com/GaetanLepage/cleanlab/commit/7d4cef11cf8d58b0ca7dba78f4c64995ed709274.patch"; 51 - hash = "sha256-1mLEITYj30F9tJh8tajWnpGC5FANh8he/lgw1f+LAsI="; 51 + url = "https://github.com/cleanlab/cleanlab/commit/bed10f5bdf538358e760ad98a0965f9b447b45ad.patch"; 52 + hash = "sha256-czSK05wrLfSpJF2j+YwcDeDIKspkcCEB2hKlX5H3Gns="; 52 53 }) 53 54 ]; 54 55
+29
pkgs/development/python-modules/eris/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + setuptools, 6 + aiocoap, 7 + pycryptodome, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "eris"; 12 + version = "1.0.0"; 13 + pyproject = true; 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-aiPmf759Cd3SeKfQtqgszcKkhZPM4dNY2x9YxJFPRh0="; 17 + }; 18 + build-system = [ setuptools ]; 19 + dependencies = [ 20 + aiocoap 21 + pycryptodome 22 + ]; 23 + meta = { 24 + description = "Python implementation of the Encoding for Robust Immutable Storage (ERIS)"; 25 + homepage = "https://eris.codeberg.page/python-eris/"; 26 + license = [ lib.licenses.agpl3Plus ]; 27 + maintainers = with lib.maintainers; [ ehmry ]; 28 + }; 29 + }
+2 -2
pkgs/development/python-modules/pathvalidate/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pathvalidate"; 11 - version = "3.2.1"; 11 + version = "3.2.3"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-9dB7HiN0GHBAYSofzSvLKRn42xgN8lTJWBu5C/kDN30="; 18 + hash = "sha256-WbW5J44wOC1tITSXYjBD6+Y/EOKQVb5EGanATHIXOcs="; 19 19 }; 20 20 21 21 build-system = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/pipenv-poetry-migrate/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pipenv-poetry-migrate"; 15 - version = "0.5.12"; 15 + version = "0.6.0"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "yhino"; 22 22 repo = "pipenv-poetry-migrate"; 23 23 tag = "v${version}"; 24 - hash = "sha256-E93A3EfbCb+oOYB61CGhBLwB5m6pvZaSXt9wdnUBSFQ="; 24 + hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ poetry-core ];
+2 -2
pkgs/development/python-modules/qdrant-client/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "qdrant-client"; 21 - version = "1.12.1"; 21 + version = "1.12.2"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "qdrant"; 28 28 repo = "qdrant-client"; 29 29 tag = "v${version}"; 30 - hash = "sha256-rElbGIXnhkHaAvtneEMhyyhySFlT4UT/vhhIlRD3xT0="; 30 + hash = "sha256-oQrT3J+A0FvggAYhZ25MwOpfN3WryTG/Tkgygc7g3Ew="; 31 31 }; 32 32 33 33 build-system = [ poetry-core ];
+15 -5
pkgs/development/python-modules/rmsd/default.nix
··· 2 2 buildPythonPackage, 3 3 lib, 4 4 fetchPypi, 5 + numpy, 5 6 scipy, 7 + setuptools, 8 + pytestCheckHook, 6 9 }: 7 10 8 11 buildPythonPackage rec { 9 12 pname = "rmsd"; 10 - version = "1.6.2"; 11 - format = "setuptools"; 12 - 13 - propagatedBuildInputs = [ scipy ]; 13 + version = "1.6.4"; 14 + pyproject = true; 14 15 15 16 src = fetchPypi { 16 17 inherit pname version; 17 - hash = "sha256-E5QIJRqYivSeMxdSOGNt0sbJ6ExHcyLRZ91X6saduto="; 18 + hash = "sha256-dhLsFGts45PitSVZxXw5FND3EOeHHWYrH8PZJEYoq+M="; 18 19 }; 19 20 21 + build-system = [ setuptools ]; 22 + 23 + dependencies = [ 24 + numpy 25 + scipy 26 + ]; 27 + 20 28 pythonImportsCheck = [ "rmsd" ]; 29 + 30 + nativeCheckInputs = [ pytestCheckHook ]; 21 31 22 32 meta = with lib; { 23 33 description = "Calculate root-mean-square deviation (RMSD) between two sets of cartesian coordinates";
+5 -3
pkgs/development/python-modules/stable-baselines3/default.nix
··· 22 22 }: 23 23 buildPythonPackage rec { 24 24 pname = "stable-baselines3"; 25 - version = "2.4.0"; 25 + # TODO: To this date, the latest release (2.4.1) is not compatible with numpy 2 and does not build 26 + # successfully on nixpkgs 27 + version = "2.4.1-unstable-2025-01-07"; 26 28 pyproject = true; 27 29 28 30 src = fetchFromGitHub { 29 31 owner = "DLR-RM"; 30 32 repo = "stable-baselines3"; 31 - tag = "v${version}"; 32 - hash = "sha256-OFmjAkUS0wrns5CkWjqR7zTjKLVPI/NrpVIKJhLAwYM="; 33 + rev = "b7c64a1aa4dd2fd3efed96e7a9ddb4d1f5c96112"; 34 + hash = "sha256-oyTOBRZsKkhhGKwwBN9HCV0t8+MkJYpWsTRdS+upMeI="; 33 35 }; 34 36 35 37 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/uxsim/default.nix
··· 17 17 }: 18 18 buildPythonPackage rec { 19 19 pname = "uxsim"; 20 - version = "1.7.1"; 20 + version = "1.7.2"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "toruseo"; 25 25 repo = "UXsim"; 26 26 tag = "v${version}"; 27 - hash = "sha256-lN9kcpNVSPNRWwF9rltweqHJpzqsYrKeP0KEQRwiltk="; 27 + hash = "sha256-5up44edivGWj0nQOOL3+lqjdOBBfxk01nFokG5ht+5Y="; 28 28 }; 29 29 30 30 patches = [ ./add-qt-plugin-path-to-env.patch ];
+11 -9
pkgs/development/tools/ocaml/merlin/4.x.nix
··· 20 20 "4.12.1" = "4.7-412"; 21 21 "4.13.0" = "4.7-413"; 22 22 "4.13.1" = "4.7-413"; 23 - "4.14.0" = "4.17.1-414"; 24 - "4.14.1" = "4.17.1-414"; 25 - "4.14.2" = "4.17.1-414"; 23 + "4.14.0" = "4.18-414"; 24 + "4.14.1" = "4.18-414"; 25 + "4.14.2" = "4.18-414"; 26 26 "5.0.0" = "4.14-500"; 27 27 "5.1.0" = "4.17.1-501"; 28 28 "5.1.1" = "4.17.1-501"; 29 - "5.2.0" = "5.2.1-502"; 30 - "5.2.1" = "5.2.1-502"; 29 + "5.2.0" = "5.3-502"; 30 + "5.2.1" = "5.3-502"; 31 + "5.3.0" = "5.4.1-503"; 31 32 } 32 33 ."${ocaml.version}", 33 34 }: ··· 38 39 "4.7-412" = "sha256-0U3Ia7EblKULNy8AuXFVKACZvGN0arYJv7BWiBRgT0Y="; 39 40 "4.7-413" = "sha256-aVmGWS4bJBLuwsxDKsng/n0A6qlyJ/pnDTcYab/5gyU="; 40 41 "4.14-500" = "sha256-7CPzJPh1UgzYiX8wPMbU5ZXz1wAJFNQQcp8WuGrR1w4="; 41 - "4.16-414" = "sha256-xekZdfPfVoSeGzBvNWwxcJorE519V2NLjSHkcyZvzy0="; 42 - "4.16-501" = "sha256-2lvzCbBAZFwpKuRXLMagpwDb0rz8mWrBPI5cODbCHiY="; 43 - "4.17.1-414" = "sha256-vz+AbvSGMgU4YdVLc73vlTm6QhivAh2LCsrY435kX8Y="; 42 + "4.16-414" = "sha256-xekZdfPfVoSeGzBvNWwxcJorE519V2NLjSHkcyZvzy0="; # Used by ocaml-lsp 43 + "4.16-501" = "sha256-2lvzCbBAZFwpKuRXLMagpwDb0rz8mWrBPI5cODbCHiY="; # Used by ocaml-lsp 44 + "4.18-414" = "sha256-9tb3omYUHjWMGoaWEsgTXIWRhdVH6julya17tn/jDME="; 44 45 "4.17.1-501" = "sha256-N2cHqocfCeljlFbT++S4miHJrXXHdOlMu75n+EKwpQA="; 45 - "5.2.1-502" = "sha256-XALccbLTG2GYUcFKlluRxlCk281Jv1YATu5h4MWNWEw="; 46 + "5.3-502" = "sha256-LOpG8SOX+m4x7wwNT14Rwc/ZFu5JQgaUAFyV67OqJLw="; 47 + "5.4.1-503" = "sha256-SbO0x3jBISX8dAXnN5CwsxLV15dJ3XPUg4tlYqJTMCI="; 46 48 }; 47 49 48 50 in
+3 -4
pkgs/top-level/all-packages.nix
··· 14058 14058 k3s_1_29 14059 14059 k3s_1_30 14060 14060 k3s_1_31 14061 + k3s_1_32 14061 14062 ; 14062 - k3s = k3s_1_31; 14063 + k3s = k3s_1_32; 14063 14064 14064 14065 kapow = libsForQt5.callPackage ../applications/misc/kapow { }; 14065 14066 ··· 14686 14687 inherit (darwin.apple_sdk.frameworks) Foundation; 14687 14688 }; 14688 14689 14689 - obs-studio = qt6Packages.callPackage ../applications/video/obs-studio { 14690 - ffmpeg = ffmpeg-full; 14691 - }; 14690 + obs-studio = qt6Packages.callPackage ../applications/video/obs-studio { }; 14692 14691 14693 14692 obs-studio-plugins = recurseIntoAttrs (callPackage ../applications/video/obs-studio/plugins {}); 14694 14693 wrapOBS = callPackage ../applications/video/obs-studio/wrapper.nix { };
+2
pkgs/top-level/python-packages.nix
··· 4212 4212 4213 4213 eradicate = callPackage ../development/python-modules/eradicate { }; 4214 4214 4215 + eris = callPackage ../development/python-modules/eris { }; 4216 + 4215 4217 es-client = callPackage ../development/python-modules/es-client { }; 4216 4218 4217 4219 esig = callPackage ../development/python-modules/esig { };