Merge remote-tracking branch 'origin/staging-next' into staging

K900 aa180fdc a137772e

+722 -374
+46 -27
lib/filesystem.nix
··· 18 ; 19 20 inherit (lib.filesystem) 21 - pathIsDirectory 22 - pathIsRegularFile 23 pathType 24 - packagesFromDirectoryRecursive 25 ; 26 27 inherit (lib.strings) ··· 363 directory, 364 ... 365 }: 366 - assert pathIsDirectory directory; 367 let 368 - inherit (lib.path) append; 369 - defaultPath = append directory "package.nix"; 370 in 371 - if pathIsRegularFile defaultPath then 372 - # if `${directory}/package.nix` exists, call it directly 373 - callPackage defaultPath {} 374 - else lib.concatMapAttrs (name: type: 375 - # otherwise, for each directory entry 376 - let path = append directory name; in 377 - if type == "directory" then { 378 - # recurse into directories 379 - "${name}" = packagesFromDirectoryRecursive { 380 - inherit callPackage; 381 - directory = path; 382 - }; 383 - } else if type == "regular" && hasSuffix ".nix" name then { 384 - # call .nix files 385 - "${lib.removeSuffix ".nix" name}" = callPackage path {}; 386 - } else if type == "regular" then { 387 - # ignore non-nix files 388 - } else throw '' 389 - lib.filesystem.packagesFromDirectoryRecursive: Unsupported file type ${type} at path ${toString path} 390 - '' 391 - ) (builtins.readDir directory); 392 }
··· 18 ; 19 20 inherit (lib.filesystem) 21 pathType 22 ; 23 24 inherit (lib.strings) ··· 360 directory, 361 ... 362 }: 363 let 364 + # Determine if a directory entry from `readDir` indicates a package or 365 + # directory of packages. 366 + directoryEntryIsPackage = basename: type: 367 + type == "directory" || hasSuffix ".nix" basename; 368 + 369 + # List directory entries that indicate packages in the given `path`. 370 + packageDirectoryEntries = path: 371 + filterAttrs directoryEntryIsPackage (readDir path); 372 + 373 + # Transform a directory entry (a `basename` and `type` pair) into a 374 + # package. 375 + directoryEntryToAttrPair = subdirectory: basename: type: 376 + let 377 + path = subdirectory + "/${basename}"; 378 + in 379 + if type == "regular" 380 + then 381 + { 382 + name = removeSuffix ".nix" basename; 383 + value = callPackage path { }; 384 + } 385 + else 386 + if type == "directory" 387 + then 388 + { 389 + name = basename; 390 + value = packagesFromDirectory path; 391 + } 392 + else 393 + throw 394 + '' 395 + lib.filesystem.packagesFromDirectoryRecursive: Unsupported file type ${type} at path ${toString subdirectory} 396 + ''; 397 + 398 + # Transform a directory into a package (if there's a `package.nix`) or 399 + # set of packages (otherwise). 400 + packagesFromDirectory = path: 401 + let 402 + defaultPackagePath = path + "/package.nix"; 403 + in 404 + if pathExists defaultPackagePath 405 + then callPackage defaultPackagePath { } 406 + else mapAttrs' 407 + (directoryEntryToAttrPair path) 408 + (packageDirectoryEntries path); 409 in 410 + packagesFromDirectory directory; 411 }
+1 -1
pkgs/by-name/da/dashy-ui/package.nix
··· 30 # the way the client parses things 31 # - Instead, we use `yq-go` to convert it to yaml 32 # Config validation needs to happen after yarnConfigHook, since it's what sets the yarn offline cache 33 - postYarnConfigHook = lib.optional (settings != { }) '' 34 echo "Writing settings override..." 35 yq --output-format yml '${builtins.toFile "conf.json" ''${builtins.toJSON settings}''}' > user-data/conf.yml 36 yarn validate-config --offline
··· 30 # the way the client parses things 31 # - Instead, we use `yq-go` to convert it to yaml 32 # Config validation needs to happen after yarnConfigHook, since it's what sets the yarn offline cache 33 + preBuild = lib.optional (settings != { }) '' 34 echo "Writing settings override..." 35 yq --output-format yml '${builtins.toFile "conf.json" ''${builtins.toJSON settings}''}' > user-data/conf.yml 36 yarn validate-config --offline
+2 -2
pkgs/by-name/en/entt/package.nix
··· 1 { lib, stdenv, fetchFromGitHub, cmake }: 2 stdenv.mkDerivation rec { 3 pname = "entt"; 4 - version = "3.13.2"; 5 6 src = fetchFromGitHub { 7 owner = "skypjack"; 8 repo = "entt"; 9 rev = "v${version}"; 10 - hash = "sha256-botX9T9KEXbctI1hUOt983y2rtWDeXyTonGYpJ6eGr8="; 11 }; 12 13 nativeBuildInputs = [ cmake ];
··· 1 { lib, stdenv, fetchFromGitHub, cmake }: 2 stdenv.mkDerivation rec { 3 pname = "entt"; 4 + version = "3.14.0"; 5 6 src = fetchFromGitHub { 7 owner = "skypjack"; 8 repo = "entt"; 9 rev = "v${version}"; 10 + hash = "sha256-IPAM7fr/tvSOMKWUbXbloNAnlp5t7J0ynSsTMZ2jKYs="; 11 }; 12 13 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/me/mercure/package.nix
··· 8 9 buildGoModule rec { 10 pname = "mercure"; 11 - version = "0.16.3"; 12 13 src = fetchFromGitHub { 14 owner = "dunglas"; 15 repo = "mercure"; 16 rev = "v${version}"; 17 - hash = "sha256-mRBnjX9jXo2yoftDo8F6kNZeddFkFyUQ6eWxWoxzk2w="; 18 }; 19 20 sourceRoot = "${src.name}/caddy"; 21 22 - vendorHash = "sha256-ylPHBb/3lX9vwszyf7QzGPxGXE/Jt3cLKhsfmGMG8WM="; 23 24 subPackages = [ "mercure" ]; 25 excludedPackages = [ "../cmd/mercure" ];
··· 8 9 buildGoModule rec { 10 pname = "mercure"; 11 + version = "0.17.1"; 12 13 src = fetchFromGitHub { 14 owner = "dunglas"; 15 repo = "mercure"; 16 rev = "v${version}"; 17 + hash = "sha256-TRKlX4dNCvD9wBp+JNpmB9J1lt0Eyc0pQ/ucvtiDGto="; 18 }; 19 20 sourceRoot = "${src.name}/caddy"; 21 22 + vendorHash = "sha256-0tyvb11rBtrTbA+eAV1E5Y2tZeAwtrpONHBOLaVxuaQ="; 23 24 subPackages = [ "mercure" ]; 25 excludedPackages = [ "../cmd/mercure" ];
+2 -2
pkgs/development/compilers/ocaml/5.2.nix
··· 1 import ./generic.nix { 2 major_version = "5"; 3 minor_version = "2"; 4 - patch_version = "0"; 5 - sha256 = "sha256-L0v0efUUefm/jH8WlKbqcza793T0rW2mtZ0a1JOd2Kc="; 6 }
··· 1 import ./generic.nix { 2 major_version = "5"; 3 minor_version = "2"; 4 + patch_version = "1"; 5 + sha256 = "sha256-Bs2noj15wdOzazqnKDpe1YeY3dhx8sJpcSYR3Gn1c7I="; 6 }
+2 -2
pkgs/development/interpreters/ruby/default.nix
··· 307 }; 308 309 ruby_3_2 = generic { 310 - version = rubyVersion "3" "2" "5" ""; 311 - hash = "sha256-7wYQtJj2D7XP13tRrbPBD0yo7ZoXy4fGHlvqMUrDShY="; 312 cargoHash = "sha256-6du7RJo0DH+eYMOoh3L31F3aqfR5+iG1iKauSV1uNcQ="; 313 }; 314
··· 307 }; 308 309 ruby_3_2 = generic { 310 + version = rubyVersion "3" "2" "6" ""; 311 + hash = "sha256-2ctl7N8/GGaWOfJji2M3ntb7sX2Trk5ybU6yv2ikg3A="; 312 cargoHash = "sha256-6du7RJo0DH+eYMOoh3L31F3aqfR5+iG1iKauSV1uNcQ="; 313 }; 314
+1
pkgs/development/tools/ocaml/merlin/4.x.nix
··· 25 "5.1.0" = "4.17.1-501"; 26 "5.1.1" = "4.17.1-501"; 27 "5.2.0" = "5.2.1-502"; 28 }."${ocaml.version}" 29 }: 30
··· 25 "5.1.0" = "4.17.1-501"; 26 "5.1.1" = "4.17.1-501"; 27 "5.2.0" = "5.2.1-502"; 28 + "5.2.1" = "5.2.1-502"; 29 }."${ocaml.version}" 30 }: 31
+660 -332
pkgs/tools/networking/edgedb/Cargo.lock
··· 72 73 [[package]] 74 name = "allocator-api2" 75 - version = "0.2.18" 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 78 79 [[package]] 80 name = "ansi-escapes" ··· 84 85 [[package]] 86 name = "anstream" 87 - version = "0.6.15" 88 source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 90 dependencies = [ 91 "anstyle", 92 "anstyle-parse", ··· 99 100 [[package]] 101 name = "anstyle" 102 - version = "1.0.8" 103 source = "registry+https://github.com/rust-lang/crates.io-index" 104 - checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 105 106 [[package]] 107 name = "anstyle-parse" 108 - version = "0.2.5" 109 source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 111 dependencies = [ 112 "utf8parse", 113 ] 114 115 [[package]] 116 name = "anstyle-query" 117 - version = "1.1.1" 118 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 120 dependencies = [ 121 - "windows-sys 0.52.0", 122 ] 123 124 [[package]] 125 name = "anstyle-wincon" 126 - version = "3.0.4" 127 source = "registry+https://github.com/rust-lang/crates.io-index" 128 - checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 129 dependencies = [ 130 "anstyle", 131 - "windows-sys 0.52.0", 132 ] 133 134 [[package]] 135 name = "anyhow" 136 - version = "1.0.90" 137 source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "37bf3594c4c988a53154954629820791dde498571819ae4ca50ca811e060cc95" 139 140 [[package]] 141 name = "append-only-vec" ··· 145 146 [[package]] 147 name = "arbitrary" 148 - version = "1.3.2" 149 source = "registry+https://github.com/rust-lang/crates.io-index" 150 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 151 dependencies = [ 152 "derive_arbitrary", 153 ] ··· 211 212 [[package]] 213 name = "async-compression" 214 - version = "0.4.17" 215 source = "registry+https://github.com/rust-lang/crates.io-index" 216 - checksum = "0cb8f1d480b0ea3783ab015936d2a55c87e219676f0c0b7dec61494043f21857" 217 dependencies = [ 218 "brotli", 219 "flate2", ··· 253 254 [[package]] 255 name = "async-io" 256 - version = "2.3.4" 257 source = "registry+https://github.com/rust-lang/crates.io-index" 258 - checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" 259 dependencies = [ 260 "async-lock", 261 "cfg-if", ··· 330 dependencies = [ 331 "proc-macro2", 332 "quote", 333 - "syn 2.0.82", 334 ] 335 336 [[package]] ··· 340 checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 341 342 [[package]] 343 - name = "atty" 344 - version = "0.2.14" 345 - source = "registry+https://github.com/rust-lang/crates.io-index" 346 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 347 - dependencies = [ 348 - "hermit-abi 0.1.19", 349 - "libc", 350 - "winapi", 351 - ] 352 - 353 - [[package]] 354 name = "autocfg" 355 version = "1.4.0" 356 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 397 398 [[package]] 399 name = "bigdecimal" 400 - version = "0.4.5" 401 source = "registry+https://github.com/rust-lang/crates.io-index" 402 - checksum = "51d712318a27c7150326677b321a5fa91b55f6d9034ffd67f20319e147d40cee" 403 dependencies = [ 404 "autocfg", 405 "libm", ··· 502 503 [[package]] 504 name = "bstr" 505 - version = "1.10.0" 506 source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" 508 dependencies = [ 509 "memchr", 510 "regex-automata", ··· 525 526 [[package]] 527 name = "bytes" 528 - version = "1.7.2" 529 source = "registry+https://github.com/rust-lang/crates.io-index" 530 - checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" 531 532 [[package]] 533 name = "bzip2" ··· 552 553 [[package]] 554 name = "cc" 555 - version = "1.1.31" 556 source = "registry+https://github.com/rust-lang/crates.io-index" 557 - checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" 558 dependencies = [ 559 "jobserver", 560 "libc", ··· 600 601 [[package]] 602 name = "clap" 603 - version = "4.5.20" 604 source = "registry+https://github.com/rust-lang/crates.io-index" 605 - checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" 606 dependencies = [ 607 "clap_builder", 608 "clap_derive", ··· 610 611 [[package]] 612 name = "clap_builder" 613 - version = "4.5.20" 614 source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" 616 dependencies = [ 617 "anstream", 618 "anstyle", ··· 623 624 [[package]] 625 name = "clap_complete" 626 - version = "4.5.33" 627 source = "registry+https://github.com/rust-lang/crates.io-index" 628 - checksum = "9646e2e245bf62f45d39a0f3f36f1171ad1ea0d6967fd114bca72cb02a8fcdfb" 629 dependencies = [ 630 "clap", 631 ] ··· 639 "heck", 640 "proc-macro2", 641 "quote", 642 - "syn 2.0.82", 643 ] 644 645 [[package]] 646 name = "clap_lex" 647 - version = "0.7.2" 648 - source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 650 - 651 - [[package]] 652 - name = "clicolors-control" 653 - version = "1.0.1" 654 source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e" 656 - dependencies = [ 657 - "atty", 658 - "lazy_static", 659 - "libc", 660 - "winapi", 661 - ] 662 663 [[package]] 664 name = "clipboard-win" ··· 676 checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 677 dependencies = [ 678 "termcolor", 679 - "unicode-width", 680 ] 681 682 [[package]] 683 name = "color-print" 684 - version = "0.3.6" 685 source = "registry+https://github.com/rust-lang/crates.io-index" 686 - checksum = "1ee543c60ff3888934877a5671f45494dd27ed4ba25c6670b9a7576b7ed7a8c0" 687 dependencies = [ 688 "color-print-proc-macro", 689 ] 690 691 [[package]] 692 name = "color-print-proc-macro" 693 - version = "0.3.6" 694 source = "registry+https://github.com/rust-lang/crates.io-index" 695 - checksum = "77ff1a80c5f3cb1ca7c06ffdd71b6a6dd6d8f896c42141fbd43f50ed28dcdb93" 696 dependencies = [ 697 "nom", 698 "proc-macro2", 699 "quote", 700 - "syn 2.0.82", 701 ] 702 703 [[package]] 704 name = "colorchoice" 705 - version = "1.0.2" 706 source = "registry+https://github.com/rust-lang/crates.io-index" 707 - checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 708 709 [[package]] 710 name = "colorful" ··· 735 checksum = "7bb11bd1378bf3731b182997b40cefe00aba6a6cc74042c8318c1b271d3badf7" 736 dependencies = [ 737 "nix 0.27.1", 738 - "thiserror", 739 ] 740 741 [[package]] ··· 756 "encode_unicode 0.3.6", 757 "lazy_static", 758 "libc", 759 - "unicode-width", 760 "windows-sys 0.52.0", 761 ] 762 763 [[package]] 764 name = "constant_time_eq" 765 version = "0.3.1" 766 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 777 778 [[package]] 779 name = "core-foundation" 780 - version = "0.9.4" 781 source = "registry+https://github.com/rust-lang/crates.io-index" 782 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 783 dependencies = [ 784 "core-foundation-sys", 785 "libc", ··· 802 803 [[package]] 804 name = "cpufeatures" 805 - version = "0.2.14" 806 source = "registry+https://github.com/rust-lang/crates.io-index" 807 - checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 808 dependencies = [ 809 "libc", 810 ] ··· 989 990 [[package]] 991 name = "derive_arbitrary" 992 - version = "1.3.2" 993 source = "registry+https://github.com/rust-lang/crates.io-index" 994 - checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 995 dependencies = [ 996 "proc-macro2", 997 "quote", 998 - "syn 2.0.82", 999 ] 1000 1001 [[package]] ··· 1071 dependencies = [ 1072 "proc-macro2", 1073 "quote", 1074 - "syn 2.0.82", 1075 ] 1076 1077 [[package]] ··· 1094 1095 [[package]] 1096 name = "edgedb-cli" 1097 - version = "5.5.2" 1098 dependencies = [ 1099 "ansi-escapes", 1100 "anyhow", 1101 "arc-swap", ··· 1110 "blake2b_simd", 1111 "blake3", 1112 "bytes", 1113 "chrono", 1114 "clap", 1115 "clap_complete", 1116 - "clicolors-control", 1117 "codespan-reporting", 1118 "color-print", 1119 "colorful", 1120 "combine", 1121 "crossbeam-utils", 1122 "ctrlc", 1123 "dirs", ··· 1169 "rexpect", 1170 "ring", 1171 "rpassword", 1172 - "rustls 0.23.15", 1173 "rustyline", 1174 "scram", 1175 "semver", ··· 1194 "test-case", 1195 "test-utils", 1196 "textwrap", 1197 - "thiserror", 1198 "tokio", 1199 "tokio-stream", 1200 "toml", 1201 "tracing", 1202 "unicode-segmentation", 1203 - "unicode-width", 1204 "url", 1205 "urlencoding", 1206 "uuid", ··· 1225 "proc-macro-error", 1226 "proc-macro2", 1227 "quote", 1228 - "syn 2.0.82", 1229 "termimad", 1230 "trybuild", 1231 ] ··· 1233 [[package]] 1234 name = "edgedb-derive" 1235 version = "0.5.2" 1236 - source = "git+https://github.com/edgedb/edgedb-rust/#479e57085f600b54a7f61c11c3d578e545bac7db" 1237 dependencies = [ 1238 "proc-macro2", 1239 "quote", 1240 - "syn 2.0.82", 1241 "trybuild", 1242 ] 1243 1244 [[package]] 1245 name = "edgedb-errors" 1246 version = "0.4.2" 1247 - source = "git+https://github.com/edgedb/edgedb-rust/#479e57085f600b54a7f61c11c3d578e545bac7db" 1248 dependencies = [ 1249 "bytes", 1250 ] ··· 1252 [[package]] 1253 name = "edgedb-protocol" 1254 version = "0.6.1" 1255 - source = "git+https://github.com/edgedb/edgedb-rust/#479e57085f600b54a7f61c11c3d578e545bac7db" 1256 dependencies = [ 1257 "bigdecimal", 1258 "bitflags 2.6.0", ··· 1270 [[package]] 1271 name = "edgedb-tokio" 1272 version = "0.5.1" 1273 - source = "git+https://github.com/edgedb/edgedb-rust/#479e57085f600b54a7f61c11c3d578e545bac7db" 1274 dependencies = [ 1275 "anyhow", 1276 "arc-swap", ··· 1286 "log", 1287 "once_cell", 1288 "rand", 1289 - "rustls 0.23.15", 1290 - "rustls-native-certs 0.7.3", 1291 "rustls-pemfile", 1292 "rustls-webpki", 1293 "scram-2", ··· 1295 "serde_json", 1296 "sha1", 1297 "socket2", 1298 - "tls-api-2", 1299 - "tls-api-not-tls-2", 1300 - "tls-api-rustls-2", 1301 "tokio", 1302 "tokio-stream", 1303 "url", ··· 1307 [[package]] 1308 name = "edgeql-parser" 1309 version = "0.1.0" 1310 - source = "git+https://github.com/edgedb/edgedb#2390bc3869dd29b5a6b5e7e85c346cd1848b46a1" 1311 dependencies = [ 1312 "append-only-vec", 1313 "base32", ··· 1320 "serde_json", 1321 "sha2", 1322 "snafu", 1323 - "thiserror", 1324 - "unicode-width", 1325 ] 1326 1327 [[package]] ··· 1344 1345 [[package]] 1346 name = "encoding_rs" 1347 - version = "0.8.34" 1348 source = "registry+https://github.com/rust-lang/crates.io-index" 1349 - checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 1350 dependencies = [ 1351 "cfg-if", 1352 ] ··· 1431 1432 [[package]] 1433 name = "fastrand" 1434 - version = "2.1.1" 1435 source = "registry+https://github.com/rust-lang/crates.io-index" 1436 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 1437 1438 [[package]] 1439 name = "fd-lock" ··· 1460 1461 [[package]] 1462 name = "flate2" 1463 - version = "1.0.34" 1464 source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 1466 dependencies = [ 1467 "crc32fast", 1468 "miniz_oxide", ··· 1485 dependencies = [ 1486 "proc-macro2", 1487 "quote", 1488 - "syn 2.0.82", 1489 ] 1490 1491 [[package]] ··· 1598 1599 [[package]] 1600 name = "futures-lite" 1601 - version = "2.3.0" 1602 source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 1604 dependencies = [ 1605 "fastrand", 1606 "futures-core", ··· 1617 dependencies = [ 1618 "proc-macro2", 1619 "quote", 1620 - "syn 2.0.82", 1621 ] 1622 1623 [[package]] ··· 1728 1729 [[package]] 1730 name = "h2" 1731 - version = "0.4.6" 1732 source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" 1734 dependencies = [ 1735 "atomic-waker", 1736 "bytes", ··· 1757 1758 [[package]] 1759 name = "hashbrown" 1760 - version = "0.15.0" 1761 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 1763 1764 [[package]] 1765 name = "headers" ··· 1790 version = "0.5.0" 1791 source = "registry+https://github.com/rust-lang/crates.io-index" 1792 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1793 - 1794 - [[package]] 1795 - name = "hermit-abi" 1796 - version = "0.1.19" 1797 - source = "registry+https://github.com/rust-lang/crates.io-index" 1798 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1799 - dependencies = [ 1800 - "libc", 1801 - ] 1802 1803 [[package]] 1804 name = "hermit-abi" ··· 1949 1950 [[package]] 1951 name = "hyper" 1952 - version = "1.5.0" 1953 source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" 1955 dependencies = [ 1956 "bytes", 1957 "futures-channel", 1958 "futures-util", 1959 - "h2 0.4.6", 1960 "http 1.1.0", 1961 "http-body 1.0.1", 1962 "httparse", ··· 1975 dependencies = [ 1976 "futures-util", 1977 "http 1.1.0", 1978 - "hyper 1.5.0", 1979 "hyper-util", 1980 - "rustls 0.23.15", 1981 - "rustls-native-certs 0.8.0", 1982 "rustls-pki-types", 1983 "tokio", 1984 "tokio-rustls 0.26.0", ··· 1987 1988 [[package]] 1989 name = "hyper-util" 1990 - version = "0.1.9" 1991 source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" 1993 dependencies = [ 1994 "bytes", 1995 "futures-channel", 1996 "futures-util", 1997 "http 1.1.0", 1998 "http-body 1.0.1", 1999 - "hyper 1.5.0", 2000 "pin-project-lite", 2001 "socket2", 2002 "tokio", ··· 2005 ] 2006 2007 [[package]] 2008 name = "idna" 2009 - version = "0.5.0" 2010 source = "registry+https://github.com/rust-lang/crates.io-index" 2011 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 2012 dependencies = [ 2013 - "unicode-bidi", 2014 - "unicode-normalization", 2015 ] 2016 2017 [[package]] 2018 name = "immutable-chunkmap" 2019 - version = "2.0.5" 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 2021 - checksum = "4419f022e55cc63d5bbd6b44b71e1d226b9c9480a47824c706e9d54e5c40c5eb" 2022 dependencies = [ 2023 "arrayvec", 2024 ] ··· 2030 checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 2031 dependencies = [ 2032 "equivalent", 2033 - "hashbrown 0.15.0", 2034 "serde", 2035 ] 2036 2037 [[package]] 2038 name = "indicatif" 2039 - version = "0.17.8" 2040 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" 2042 dependencies = [ 2043 "console", 2044 - "instant", 2045 "number_prefix", 2046 "portable-atomic", 2047 - "unicode-width", 2048 ] 2049 2050 [[package]] ··· 2132 2133 [[package]] 2134 name = "itoa" 2135 - version = "1.0.11" 2136 source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 2138 2139 [[package]] 2140 name = "jobserver" ··· 2203 "proc-macro2", 2204 "quote", 2205 "regex", 2206 - "syn 2.0.82", 2207 ] 2208 2209 [[package]] ··· 2214 2215 [[package]] 2216 name = "libc" 2217 - version = "0.2.161" 2218 source = "registry+https://github.com/rust-lang/crates.io-index" 2219 - checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" 2220 2221 [[package]] 2222 name = "libflate" ··· 2244 2245 [[package]] 2246 name = "libm" 2247 - version = "0.2.8" 2248 source = "registry+https://github.com/rust-lang/crates.io-index" 2249 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 2250 2251 [[package]] 2252 name = "libredox" ··· 2264 version = "0.4.14" 2265 source = "registry+https://github.com/rust-lang/crates.io-index" 2266 checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2267 2268 [[package]] 2269 name = "lock_api" ··· 2536 2537 [[package]] 2538 name = "open" 2539 - version = "5.3.0" 2540 source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "61a877bf6abd716642a53ef1b89fb498923a4afca5c754f9050b4d081c05c4b3" 2542 dependencies = [ 2543 "is-wsl", 2544 "libc", ··· 2568 dependencies = [ 2569 "proc-macro2", 2570 "quote", 2571 - "syn 2.0.82", 2572 ] 2573 2574 [[package]] ··· 2579 2580 [[package]] 2581 name = "openssl-src" 2582 - version = "300.3.2+3.3.2" 2583 source = "registry+https://github.com/rust-lang/crates.io-index" 2584 - checksum = "a211a18d945ef7e648cc6e0058f4c548ee46aab922ea203e0d30e966ea23647b" 2585 dependencies = [ 2586 "cc", 2587 ] ··· 2670 2671 [[package]] 2672 name = "pathdiff" 2673 - version = "0.2.2" 2674 source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361" 2676 2677 [[package]] 2678 name = "pbkdf2" ··· 2730 "phf_shared", 2731 "proc-macro2", 2732 "quote", 2733 - "syn 2.0.82", 2734 ] 2735 2736 [[package]] ··· 2744 2745 [[package]] 2746 name = "pin-project" 2747 - version = "1.1.6" 2748 source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "baf123a161dde1e524adf36f90bc5d8d3462824a9c43553ad07a8183161189ec" 2750 dependencies = [ 2751 "pin-project-internal", 2752 ] 2753 2754 [[package]] 2755 name = "pin-project-internal" 2756 - version = "1.1.6" 2757 source = "registry+https://github.com/rust-lang/crates.io-index" 2758 - checksum = "a4502d8515ca9f32f1fb543d987f63d95a14934883db45bdb48060b6b69257f8" 2759 dependencies = [ 2760 "proc-macro2", 2761 "quote", 2762 - "syn 2.0.82", 2763 ] 2764 2765 [[package]] 2766 name = "pin-project-lite" 2767 - version = "0.2.14" 2768 source = "registry+https://github.com/rust-lang/crates.io-index" 2769 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 2770 2771 [[package]] 2772 name = "pin-utils" ··· 2793 2794 [[package]] 2795 name = "polling" 2796 - version = "3.7.3" 2797 source = "registry+https://github.com/rust-lang/crates.io-index" 2798 - checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" 2799 dependencies = [ 2800 "cfg-if", 2801 "concurrent-queue", ··· 2808 2809 [[package]] 2810 name = "portable-atomic" 2811 - version = "1.9.0" 2812 source = "registry+https://github.com/rust-lang/crates.io-index" 2813 - checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" 2814 2815 [[package]] 2816 name = "powerfmt" ··· 2877 "is-terminal", 2878 "lazy_static", 2879 "term 0.7.0", 2880 - "unicode-width", 2881 ] 2882 2883 [[package]] ··· 2911 2912 [[package]] 2913 name = "proc-macro2" 2914 - version = "1.0.88" 2915 source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9" 2917 dependencies = [ 2918 "unicode-ident", 2919 ] 2920 2921 [[package]] 2922 name = "quinn" 2923 - version = "0.11.5" 2924 source = "registry+https://github.com/rust-lang/crates.io-index" 2925 - checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" 2926 dependencies = [ 2927 "bytes", 2928 "pin-project-lite", 2929 "quinn-proto", 2930 "quinn-udp", 2931 "rustc-hash", 2932 - "rustls 0.23.15", 2933 "socket2", 2934 - "thiserror", 2935 "tokio", 2936 "tracing", 2937 ] 2938 2939 [[package]] 2940 name = "quinn-proto" 2941 - version = "0.11.8" 2942 source = "registry+https://github.com/rust-lang/crates.io-index" 2943 - checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 2944 dependencies = [ 2945 "bytes", 2946 "rand", 2947 "ring", 2948 "rustc-hash", 2949 - "rustls 0.23.15", 2950 "slab", 2951 - "thiserror", 2952 "tinyvec", 2953 "tracing", 2954 ] 2955 2956 [[package]] 2957 name = "quinn-udp" 2958 - version = "0.5.5" 2959 source = "registry+https://github.com/rust-lang/crates.io-index" 2960 - checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" 2961 dependencies = [ 2962 "libc", 2963 "once_cell", 2964 "socket2", ··· 3047 dependencies = [ 3048 "getrandom", 3049 "libredox", 3050 - "thiserror", 3051 ] 3052 3053 [[package]] 3054 name = "regex" 3055 - version = "1.11.0" 3056 source = "registry+https://github.com/rust-lang/crates.io-index" 3057 - checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 3058 dependencies = [ 3059 "aho-corasick", 3060 "memchr", ··· 3064 3065 [[package]] 3066 name = "regex-automata" 3067 - version = "0.4.8" 3068 source = "registry+https://github.com/rust-lang/crates.io-index" 3069 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 3070 dependencies = [ 3071 "aho-corasick", 3072 "memchr", ··· 3091 3092 [[package]] 3093 name = "reqwest" 3094 - version = "0.12.8" 3095 source = "registry+https://github.com/rust-lang/crates.io-index" 3096 - checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" 3097 dependencies = [ 3098 "async-compression", 3099 "base64 0.22.1", ··· 3101 "encoding_rs", 3102 "futures-core", 3103 "futures-util", 3104 - "h2 0.4.6", 3105 "http 1.1.0", 3106 "http-body 1.0.1", 3107 "http-body-util", 3108 - "hyper 1.5.0", 3109 "hyper-rustls", 3110 "hyper-util", 3111 "ipnet", ··· 3116 "percent-encoding", 3117 "pin-project-lite", 3118 "quinn", 3119 - "rustls 0.23.15", 3120 - "rustls-native-certs 0.8.0", 3121 "rustls-pemfile", 3122 "rustls-pki-types", 3123 "serde", ··· 3146 "http 1.1.0", 3147 "reqwest", 3148 "serde", 3149 - "thiserror", 3150 "tower-service", 3151 ] 3152 ··· 3161 "futures", 3162 "getrandom", 3163 "http 1.1.0", 3164 - "hyper 1.5.0", 3165 "parking_lot 0.11.2", 3166 "reqwest", 3167 "reqwest-middleware", ··· 3189 "nix 0.26.4", 3190 "regex", 3191 "tempfile", 3192 - "thiserror", 3193 ] 3194 3195 [[package]] ··· 3248 3249 [[package]] 3250 name = "rustix" 3251 - version = "0.38.37" 3252 source = "registry+https://github.com/rust-lang/crates.io-index" 3253 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 3254 dependencies = [ 3255 "bitflags 2.6.0", 3256 "errno", ··· 3275 3276 [[package]] 3277 name = "rustls" 3278 - version = "0.23.15" 3279 source = "registry+https://github.com/rust-lang/crates.io-index" 3280 - checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993" 3281 dependencies = [ 3282 "once_cell", 3283 "ring", ··· 3289 3290 [[package]] 3291 name = "rustls-native-certs" 3292 - version = "0.7.3" 3293 - source = "registry+https://github.com/rust-lang/crates.io-index" 3294 - checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" 3295 - dependencies = [ 3296 - "openssl-probe", 3297 - "rustls-pemfile", 3298 - "rustls-pki-types", 3299 - "schannel", 3300 - "security-framework", 3301 - ] 3302 - 3303 - [[package]] 3304 - name = "rustls-native-certs" 3305 - version = "0.8.0" 3306 source = "registry+https://github.com/rust-lang/crates.io-index" 3307 - checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" 3308 dependencies = [ 3309 "openssl-probe", 3310 - "rustls-pemfile", 3311 "rustls-pki-types", 3312 "schannel", 3313 "security-framework", ··· 3327 version = "1.10.0" 3328 source = "registry+https://github.com/rust-lang/crates.io-index" 3329 checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" 3330 3331 [[package]] 3332 name = "rustls-webpki" ··· 3362 "nix 0.28.0", 3363 "radix_trie", 3364 "unicode-segmentation", 3365 - "unicode-width", 3366 "utf8parse", 3367 "windows-sys 0.52.0", 3368 ] ··· 3384 3385 [[package]] 3386 name = "schannel" 3387 - version = "0.1.26" 3388 source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" 3390 dependencies = [ 3391 "windows-sys 0.59.0", 3392 ] ··· 3426 3427 [[package]] 3428 name = "security-framework" 3429 - version = "2.11.1" 3430 source = "registry+https://github.com/rust-lang/crates.io-index" 3431 - checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 3432 dependencies = [ 3433 "bitflags 2.6.0", 3434 "core-foundation", ··· 3439 3440 [[package]] 3441 name = "security-framework-sys" 3442 - version = "2.12.0" 3443 source = "registry+https://github.com/rust-lang/crates.io-index" 3444 - checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" 3445 dependencies = [ 3446 "core-foundation-sys", 3447 "libc", ··· 3458 3459 [[package]] 3460 name = "serde" 3461 - version = "1.0.210" 3462 source = "registry+https://github.com/rust-lang/crates.io-index" 3463 - checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 3464 dependencies = [ 3465 "serde_derive", 3466 ] 3467 3468 [[package]] 3469 name = "serde_derive" 3470 - version = "1.0.210" 3471 source = "registry+https://github.com/rust-lang/crates.io-index" 3472 - checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 3473 dependencies = [ 3474 "proc-macro2", 3475 "quote", 3476 - "syn 2.0.82", 3477 ] 3478 3479 [[package]] 3480 name = "serde_json" 3481 - version = "1.0.132" 3482 source = "registry+https://github.com/rust-lang/crates.io-index" 3483 - checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" 3484 dependencies = [ 3485 "indexmap", 3486 "itoa", ··· 3660 source = "registry+https://github.com/rust-lang/crates.io-index" 3661 checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019" 3662 dependencies = [ 3663 "snafu-derive", 3664 ] 3665 ··· 3672 "heck", 3673 "proc-macro2", 3674 "quote", 3675 - "syn 2.0.82", 3676 ] 3677 3678 [[package]] ··· 3692 checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3693 3694 [[package]] 3695 name = "strict" 3696 version = "0.2.0" 3697 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3722 3723 [[package]] 3724 name = "syn" 3725 - version = "2.0.82" 3726 source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "83540f837a8afc019423a8edb95b52a8effe46957ee402287f4292fae35be021" 3728 dependencies = [ 3729 "proc-macro2", 3730 "quote", ··· 3733 3734 [[package]] 3735 name = "sync_wrapper" 3736 - version = "1.0.1" 3737 source = "registry+https://github.com/rust-lang/crates.io-index" 3738 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 3739 dependencies = [ 3740 "futures-core", 3741 ] 3742 3743 [[package]] 3744 name = "tap" 3745 version = "1.0.1" 3746 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3748 3749 [[package]] 3750 name = "tar" 3751 - version = "0.4.42" 3752 source = "registry+https://github.com/rust-lang/crates.io-index" 3753 - checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" 3754 dependencies = [ 3755 "filetime", 3756 "libc", ··· 3765 3766 [[package]] 3767 name = "tempfile" 3768 - version = "3.13.0" 3769 source = "registry+https://github.com/rust-lang/crates.io-index" 3770 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 3771 dependencies = [ 3772 "cfg-if", 3773 "fastrand", ··· 3818 "lazy-regex", 3819 "minimad", 3820 "serde", 3821 - "thiserror", 3822 - "unicode-width", 3823 ] 3824 3825 [[package]] ··· 3856 "cfg-if", 3857 "proc-macro2", 3858 "quote", 3859 - "syn 2.0.82", 3860 ] 3861 3862 [[package]] ··· 3867 dependencies = [ 3868 "proc-macro2", 3869 "quote", 3870 - "syn 2.0.82", 3871 "test-case-core", 3872 ] 3873 3874 [[package]] 3875 - name = "test-cert-gen-2" 3876 - version = "0.11.0" 3877 - source = "registry+https://github.com/rust-lang/crates.io-index" 3878 - checksum = "141c41673c7512c91e84722827642573498846aaa3c0709b870582535299ac5b" 3879 - dependencies = [ 3880 - "once_cell", 3881 - "pem", 3882 - "tempfile", 3883 - ] 3884 - 3885 - [[package]] 3886 name = "test-utils" 3887 version = "0.1.0" 3888 - source = "git+https://github.com/edgedb/test-utils.git#fdb2b93975a92dd3569c9cc0c18e4b64e2a39a0f" 3889 dependencies = [ 3890 "anyhow", 3891 "command-fds", ··· 3905 dependencies = [ 3906 "smawk", 3907 "unicode-linebreak", 3908 - "unicode-width", 3909 ] 3910 3911 [[package]] 3912 name = "thiserror" 3913 - version = "1.0.64" 3914 source = "registry+https://github.com/rust-lang/crates.io-index" 3915 - checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 3916 dependencies = [ 3917 - "thiserror-impl", 3918 ] 3919 3920 [[package]] 3921 name = "thiserror-impl" 3922 - version = "1.0.64" 3923 source = "registry+https://github.com/rust-lang/crates.io-index" 3924 - checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 3925 dependencies = [ 3926 "proc-macro2", 3927 "quote", 3928 - "syn 2.0.82", 3929 ] 3930 3931 [[package]] ··· 3948 checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 3949 3950 [[package]] 3951 name = "tinyvec" 3952 version = "1.8.0" 3953 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3963 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3964 3965 [[package]] 3966 - name = "tls-api-2" 3967 - version = "0.11.0" 3968 source = "registry+https://github.com/rust-lang/crates.io-index" 3969 - checksum = "294abb022a256babb2c95ba2f71f39d0a1491e1f72ea5229deb573842ca2abc7" 3970 dependencies = [ 3971 "anyhow", 3972 "pem", 3973 "tempfile", 3974 - "thiserror", 3975 "tokio", 3976 ] 3977 3978 [[package]] 3979 - name = "tls-api-not-tls-2" 3980 - version = "0.11.0" 3981 source = "registry+https://github.com/rust-lang/crates.io-index" 3982 - checksum = "b5022679634f4df74a0eebca9f17b851d08a74d5e7183f3522770dd1416af707" 3983 dependencies = [ 3984 "anyhow", 3985 - "thiserror", 3986 - "tls-api-2", 3987 - "tls-api-test-2", 3988 "tokio", 3989 ] 3990 3991 [[package]] 3992 - name = "tls-api-rustls-2" 3993 - version = "0.11.1" 3994 source = "registry+https://github.com/rust-lang/crates.io-index" 3995 - checksum = "acb91e1438413f83f63652934fb5413a6c2132db4a9e14bdca6fa8d2dda8f1b3" 3996 dependencies = [ 3997 "anyhow", 3998 - "rustls 0.23.15", 3999 - "thiserror", 4000 - "tls-api-2", 4001 - "tls-api-test-2", 4002 "tokio", 4003 "webpki", 4004 "webpki-roots", 4005 ] 4006 4007 [[package]] 4008 - name = "tls-api-test-2" 4009 - version = "0.11.0" 4010 - source = "registry+https://github.com/rust-lang/crates.io-index" 4011 - checksum = "58d491693b54014df34a52e25519be0f38cd97fe9fc8f2a6c541becab45f808b" 4012 - dependencies = [ 4013 - "anyhow", 4014 - "env_logger", 4015 - "log", 4016 - "pem", 4017 - "test-cert-gen-2", 4018 - "tls-api-2", 4019 - "tokio", 4020 - "webpki", 4021 - ] 4022 - 4023 - [[package]] 4024 name = "tokio" 4025 - version = "1.40.0" 4026 source = "registry+https://github.com/rust-lang/crates.io-index" 4027 - checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" 4028 dependencies = [ 4029 "backtrace", 4030 "bytes", ··· 4045 dependencies = [ 4046 "proc-macro2", 4047 "quote", 4048 - "syn 2.0.82", 4049 ] 4050 4051 [[package]] ··· 4065 source = "registry+https://github.com/rust-lang/crates.io-index" 4066 checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 4067 dependencies = [ 4068 - "rustls 0.23.15", 4069 "rustls-pki-types", 4070 "tokio", 4071 ] ··· 4154 dependencies = [ 4155 "proc-macro2", 4156 "quote", 4157 - "syn 2.0.82", 4158 ] 4159 4160 [[package]] 4161 name = "tracing-core" 4162 - version = "0.1.32" 4163 source = "registry+https://github.com/rust-lang/crates.io-index" 4164 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 4165 dependencies = [ 4166 "once_cell", 4167 ] ··· 4200 checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" 4201 4202 [[package]] 4203 - name = "unicode-bidi" 4204 - version = "0.3.17" 4205 - source = "registry+https://github.com/rust-lang/crates.io-index" 4206 - checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" 4207 - 4208 - [[package]] 4209 name = "unicode-ident" 4210 - version = "1.0.13" 4211 source = "registry+https://github.com/rust-lang/crates.io-index" 4212 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 4213 4214 [[package]] 4215 name = "unicode-linebreak" ··· 4218 checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 4219 4220 [[package]] 4221 - name = "unicode-normalization" 4222 - version = "0.1.24" 4223 - source = "registry+https://github.com/rust-lang/crates.io-index" 4224 - checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 4225 - dependencies = [ 4226 - "tinyvec", 4227 - ] 4228 - 4229 - [[package]] 4230 name = "unicode-segmentation" 4231 version = "1.12.0" 4232 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4239 checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 4240 4241 [[package]] 4242 name = "untrusted" 4243 version = "0.9.0" 4244 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4246 4247 [[package]] 4248 name = "url" 4249 - version = "2.5.2" 4250 source = "registry+https://github.com/rust-lang/crates.io-index" 4251 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 4252 dependencies = [ 4253 "form_urlencoded", 4254 "idna", ··· 4263 checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 4264 4265 [[package]] 4266 name = "utf8parse" 4267 version = "0.2.2" 4268 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4281 4282 [[package]] 4283 name = "value-bag" 4284 - version = "1.9.0" 4285 source = "registry+https://github.com/rust-lang/crates.io-index" 4286 - checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" 4287 4288 [[package]] 4289 name = "vcpkg" ··· 4387 "once_cell", 4388 "proc-macro2", 4389 "quote", 4390 - "syn 2.0.82", 4391 "wasm-bindgen-shared", 4392 ] 4393 ··· 4421 dependencies = [ 4422 "proc-macro2", 4423 "quote", 4424 - "syn 2.0.82", 4425 "wasm-bindgen-backend", 4426 "wasm-bindgen-shared", 4427 ] ··· 4480 ] 4481 4482 [[package]] 4483 name = "webpki" 4484 version = "0.22.4" 4485 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4491 4492 [[package]] 4493 name = "webpki-roots" 4494 - version = "0.26.6" 4495 source = "registry+https://github.com/rust-lang/crates.io-index" 4496 - checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 4497 dependencies = [ 4498 "rustls-pki-types", 4499 ] ··· 4584 4585 [[package]] 4586 name = "windows-sys" 4587 version = "0.48.0" 4588 source = "registry+https://github.com/rust-lang/crates.io-index" 4589 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" ··· 4611 4612 [[package]] 4613 name = "windows-targets" 4614 version = "0.48.5" 4615 source = "registry+https://github.com/rust-lang/crates.io-index" 4616 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" ··· 4642 4643 [[package]] 4644 name = "windows_aarch64_gnullvm" 4645 version = "0.48.5" 4646 source = "registry+https://github.com/rust-lang/crates.io-index" 4647 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" ··· 4654 4655 [[package]] 4656 name = "windows_aarch64_msvc" 4657 version = "0.48.5" 4658 source = "registry+https://github.com/rust-lang/crates.io-index" 4659 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" ··· 4666 4667 [[package]] 4668 name = "windows_i686_gnu" 4669 version = "0.48.5" 4670 source = "registry+https://github.com/rust-lang/crates.io-index" 4671 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" ··· 4684 4685 [[package]] 4686 name = "windows_i686_msvc" 4687 version = "0.48.5" 4688 source = "registry+https://github.com/rust-lang/crates.io-index" 4689 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" ··· 4696 4697 [[package]] 4698 name = "windows_x86_64_gnu" 4699 version = "0.48.5" 4700 source = "registry+https://github.com/rust-lang/crates.io-index" 4701 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" ··· 4708 4709 [[package]] 4710 name = "windows_x86_64_gnullvm" 4711 version = "0.48.5" 4712 source = "registry+https://github.com/rust-lang/crates.io-index" 4713 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" ··· 4720 4721 [[package]] 4722 name = "windows_x86_64_msvc" 4723 version = "0.48.5" 4724 source = "registry+https://github.com/rust-lang/crates.io-index" 4725 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" ··· 4754 version = "0.0.19" 4755 source = "registry+https://github.com/rust-lang/crates.io-index" 4756 checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" 4757 4758 [[package]] 4759 name = "wslapi" ··· 4793 checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 4794 4795 [[package]] 4796 name = "zerocopy" 4797 version = "0.7.35" 4798 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4810 dependencies = [ 4811 "proc-macro2", 4812 "quote", 4813 - "syn 2.0.82", 4814 ] 4815 4816 [[package]] ··· 4830 dependencies = [ 4831 "proc-macro2", 4832 "quote", 4833 - "syn 2.0.82", 4834 ] 4835 4836 [[package]] 4837 name = "zip" 4838 - version = "2.2.0" 4839 source = "registry+https://github.com/rust-lang/crates.io-index" 4840 - checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494" 4841 dependencies = [ 4842 "aes", 4843 "arbitrary", ··· 4855 "pbkdf2", 4856 "rand", 4857 "sha1", 4858 - "thiserror", 4859 "time", 4860 "zeroize", 4861 "zopfli",
··· 72 73 [[package]] 74 name = "allocator-api2" 75 + version = "0.2.20" 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 + checksum = "45862d1c77f2228b9e10bc609d5bc203d86ebc9b87ad8d5d5167a6c9abf739d9" 78 + 79 + [[package]] 80 + name = "anes" 81 + version = "0.2.0" 82 + source = "registry+https://github.com/rust-lang/crates.io-index" 83 + checksum = "735d4f398ca57cfa2880225c2bf81c3b9af3be5bb22e44ae70118dad38713e84" 84 85 [[package]] 86 name = "ansi-escapes" ··· 90 91 [[package]] 92 name = "anstream" 93 + version = "0.6.18" 94 source = "registry+https://github.com/rust-lang/crates.io-index" 95 + checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 96 dependencies = [ 97 "anstyle", 98 "anstyle-parse", ··· 105 106 [[package]] 107 name = "anstyle" 108 + version = "1.0.10" 109 source = "registry+https://github.com/rust-lang/crates.io-index" 110 + checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 111 112 [[package]] 113 name = "anstyle-parse" 114 + version = "0.2.6" 115 source = "registry+https://github.com/rust-lang/crates.io-index" 116 + checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" 117 dependencies = [ 118 "utf8parse", 119 ] 120 121 [[package]] 122 name = "anstyle-query" 123 + version = "1.1.2" 124 source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" 126 dependencies = [ 127 + "windows-sys 0.59.0", 128 ] 129 130 [[package]] 131 name = "anstyle-wincon" 132 + version = "3.0.6" 133 source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" 135 dependencies = [ 136 "anstyle", 137 + "windows-sys 0.59.0", 138 ] 139 140 [[package]] 141 name = "anyhow" 142 + version = "1.0.93" 143 source = "registry+https://github.com/rust-lang/crates.io-index" 144 + checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" 145 146 [[package]] 147 name = "append-only-vec" ··· 151 152 [[package]] 153 name = "arbitrary" 154 + version = "1.4.1" 155 source = "registry+https://github.com/rust-lang/crates.io-index" 156 + checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" 157 dependencies = [ 158 "derive_arbitrary", 159 ] ··· 217 218 [[package]] 219 name = "async-compression" 220 + version = "0.4.18" 221 source = "registry+https://github.com/rust-lang/crates.io-index" 222 + checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522" 223 dependencies = [ 224 "brotli", 225 "flate2", ··· 259 260 [[package]] 261 name = "async-io" 262 + version = "2.4.0" 263 source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" 265 dependencies = [ 266 "async-lock", 267 "cfg-if", ··· 336 dependencies = [ 337 "proc-macro2", 338 "quote", 339 + "syn 2.0.89", 340 ] 341 342 [[package]] ··· 346 checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 347 348 [[package]] 349 name = "autocfg" 350 version = "1.4.0" 351 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 392 393 [[package]] 394 name = "bigdecimal" 395 + version = "0.4.6" 396 source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "8f850665a0385e070b64c38d2354e6c104c8479c59868d1e48a0c13ee2c7a1c1" 398 dependencies = [ 399 "autocfg", 400 "libm", ··· 497 498 [[package]] 499 name = "bstr" 500 + version = "1.11.0" 501 source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22" 503 dependencies = [ 504 "memchr", 505 "regex-automata", ··· 520 521 [[package]] 522 name = "bytes" 523 + version = "1.8.0" 524 source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 526 527 [[package]] 528 name = "bzip2" ··· 547 548 [[package]] 549 name = "cc" 550 + version = "1.2.1" 551 source = "registry+https://github.com/rust-lang/crates.io-index" 552 + checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47" 553 dependencies = [ 554 "jobserver", 555 "libc", ··· 595 596 [[package]] 597 name = "clap" 598 + version = "4.5.21" 599 source = "registry+https://github.com/rust-lang/crates.io-index" 600 + checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f" 601 dependencies = [ 602 "clap_builder", 603 "clap_derive", ··· 605 606 [[package]] 607 name = "clap_builder" 608 + version = "4.5.21" 609 source = "registry+https://github.com/rust-lang/crates.io-index" 610 + checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec" 611 dependencies = [ 612 "anstream", 613 "anstyle", ··· 618 619 [[package]] 620 name = "clap_complete" 621 + version = "4.5.38" 622 source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "d9647a559c112175f17cf724dc72d3645680a883c58481332779192b0d8e7a01" 624 dependencies = [ 625 "clap", 626 ] ··· 634 "heck", 635 "proc-macro2", 636 "quote", 637 + "syn 2.0.89", 638 ] 639 640 [[package]] 641 name = "clap_lex" 642 + version = "0.7.3" 643 source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7" 645 646 [[package]] 647 name = "clipboard-win" ··· 659 checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 660 dependencies = [ 661 "termcolor", 662 + "unicode-width 0.1.14", 663 ] 664 665 [[package]] 666 name = "color-print" 667 + version = "0.3.7" 668 source = "registry+https://github.com/rust-lang/crates.io-index" 669 + checksum = "3aa954171903797d5623e047d9ab69d91b493657917bdfb8c2c80ecaf9cdb6f4" 670 dependencies = [ 671 "color-print-proc-macro", 672 ] 673 674 [[package]] 675 name = "color-print-proc-macro" 676 + version = "0.3.7" 677 source = "registry+https://github.com/rust-lang/crates.io-index" 678 + checksum = "692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22" 679 dependencies = [ 680 "nom", 681 "proc-macro2", 682 "quote", 683 + "syn 2.0.89", 684 ] 685 686 [[package]] 687 name = "colorchoice" 688 + version = "1.0.3" 689 source = "registry+https://github.com/rust-lang/crates.io-index" 690 + checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" 691 692 [[package]] 693 name = "colorful" ··· 718 checksum = "7bb11bd1378bf3731b182997b40cefe00aba6a6cc74042c8318c1b271d3badf7" 719 dependencies = [ 720 "nix 0.27.1", 721 + "thiserror 1.0.69", 722 + ] 723 + 724 + [[package]] 725 + name = "concolor" 726 + version = "0.1.1" 727 + source = "registry+https://github.com/rust-lang/crates.io-index" 728 + checksum = "0b946244a988c390a94667ae0e3958411fa40cc46ea496a929b263d883f5f9c3" 729 + dependencies = [ 730 + "bitflags 1.3.2", 731 + "concolor-query", 732 + "is-terminal", 733 + ] 734 + 735 + [[package]] 736 + name = "concolor-query" 737 + version = "0.3.3" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf" 740 + dependencies = [ 741 + "windows-sys 0.45.0", 742 ] 743 744 [[package]] ··· 759 "encode_unicode 0.3.6", 760 "lazy_static", 761 "libc", 762 + "unicode-width 0.1.14", 763 "windows-sys 0.52.0", 764 ] 765 766 [[package]] 767 + name = "const_format" 768 + version = "0.2.33" 769 + source = "registry+https://github.com/rust-lang/crates.io-index" 770 + checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b" 771 + dependencies = [ 772 + "const_format_proc_macros", 773 + ] 774 + 775 + [[package]] 776 + name = "const_format_proc_macros" 777 + version = "0.2.33" 778 + source = "registry+https://github.com/rust-lang/crates.io-index" 779 + checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1" 780 + dependencies = [ 781 + "proc-macro2", 782 + "quote", 783 + "unicode-xid", 784 + ] 785 + 786 + [[package]] 787 name = "constant_time_eq" 788 version = "0.3.1" 789 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 800 801 [[package]] 802 name = "core-foundation" 803 + version = "0.10.0" 804 source = "registry+https://github.com/rust-lang/crates.io-index" 805 + checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" 806 dependencies = [ 807 "core-foundation-sys", 808 "libc", ··· 825 826 [[package]] 827 name = "cpufeatures" 828 + version = "0.2.16" 829 source = "registry+https://github.com/rust-lang/crates.io-index" 830 + checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" 831 dependencies = [ 832 "libc", 833 ] ··· 1012 1013 [[package]] 1014 name = "derive_arbitrary" 1015 + version = "1.4.1" 1016 source = "registry+https://github.com/rust-lang/crates.io-index" 1017 + checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" 1018 dependencies = [ 1019 "proc-macro2", 1020 "quote", 1021 + "syn 2.0.89", 1022 ] 1023 1024 [[package]] ··· 1094 dependencies = [ 1095 "proc-macro2", 1096 "quote", 1097 + "syn 2.0.89", 1098 ] 1099 1100 [[package]] ··· 1117 1118 [[package]] 1119 name = "edgedb-cli" 1120 + version = "6.0.0" 1121 dependencies = [ 1122 + "anes", 1123 "ansi-escapes", 1124 "anyhow", 1125 "arc-swap", ··· 1134 "blake2b_simd", 1135 "blake3", 1136 "bytes", 1137 + "bzip2", 1138 "chrono", 1139 "clap", 1140 "clap_complete", 1141 "codespan-reporting", 1142 "color-print", 1143 "colorful", 1144 "combine", 1145 + "concolor", 1146 + "const_format", 1147 "crossbeam-utils", 1148 "ctrlc", 1149 "dirs", ··· 1195 "rexpect", 1196 "ring", 1197 "rpassword", 1198 + "rustls 0.23.18", 1199 "rustyline", 1200 "scram", 1201 "semver", ··· 1220 "test-case", 1221 "test-utils", 1222 "textwrap", 1223 + "thiserror 1.0.69", 1224 "tokio", 1225 "tokio-stream", 1226 "toml", 1227 "tracing", 1228 "unicode-segmentation", 1229 + "unicode-width 0.1.14", 1230 "url", 1231 "urlencoding", 1232 "uuid", ··· 1251 "proc-macro-error", 1252 "proc-macro2", 1253 "quote", 1254 + "syn 2.0.89", 1255 "termimad", 1256 "trybuild", 1257 ] ··· 1259 [[package]] 1260 name = "edgedb-derive" 1261 version = "0.5.2" 1262 + source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1263 dependencies = [ 1264 "proc-macro2", 1265 "quote", 1266 + "syn 2.0.89", 1267 "trybuild", 1268 ] 1269 1270 [[package]] 1271 name = "edgedb-errors" 1272 version = "0.4.2" 1273 + source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1274 dependencies = [ 1275 "bytes", 1276 ] ··· 1278 [[package]] 1279 name = "edgedb-protocol" 1280 version = "0.6.1" 1281 + source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1282 dependencies = [ 1283 "bigdecimal", 1284 "bitflags 2.6.0", ··· 1296 [[package]] 1297 name = "edgedb-tokio" 1298 version = "0.5.1" 1299 + source = "git+https://github.com/edgedb/edgedb-rust/#afdbaaca2518adb4041460b13181fc860e36add9" 1300 dependencies = [ 1301 "anyhow", 1302 "arc-swap", ··· 1312 "log", 1313 "once_cell", 1314 "rand", 1315 + "rustls 0.23.18", 1316 + "rustls-native-certs", 1317 "rustls-pemfile", 1318 "rustls-webpki", 1319 "scram-2", ··· 1321 "serde_json", 1322 "sha1", 1323 "socket2", 1324 + "tls-api", 1325 + "tls-api-not-tls", 1326 + "tls-api-rustls", 1327 "tokio", 1328 "tokio-stream", 1329 "url", ··· 1333 [[package]] 1334 name = "edgeql-parser" 1335 version = "0.1.0" 1336 + source = "git+https://github.com/edgedb/edgedb#2a9ebc33a4e7a77c7b100133d667ff712326952b" 1337 dependencies = [ 1338 "append-only-vec", 1339 "base32", ··· 1346 "serde_json", 1347 "sha2", 1348 "snafu", 1349 + "thiserror 1.0.69", 1350 + "unicode-width 0.1.14", 1351 ] 1352 1353 [[package]] ··· 1370 1371 [[package]] 1372 name = "encoding_rs" 1373 + version = "0.8.35" 1374 source = "registry+https://github.com/rust-lang/crates.io-index" 1375 + checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1376 dependencies = [ 1377 "cfg-if", 1378 ] ··· 1457 1458 [[package]] 1459 name = "fastrand" 1460 + version = "2.2.0" 1461 source = "registry+https://github.com/rust-lang/crates.io-index" 1462 + checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4" 1463 1464 [[package]] 1465 name = "fd-lock" ··· 1486 1487 [[package]] 1488 name = "flate2" 1489 + version = "1.0.35" 1490 source = "registry+https://github.com/rust-lang/crates.io-index" 1491 + checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" 1492 dependencies = [ 1493 "crc32fast", 1494 "miniz_oxide", ··· 1511 dependencies = [ 1512 "proc-macro2", 1513 "quote", 1514 + "syn 2.0.89", 1515 ] 1516 1517 [[package]] ··· 1624 1625 [[package]] 1626 name = "futures-lite" 1627 + version = "2.5.0" 1628 source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1" 1630 dependencies = [ 1631 "fastrand", 1632 "futures-core", ··· 1643 dependencies = [ 1644 "proc-macro2", 1645 "quote", 1646 + "syn 2.0.89", 1647 ] 1648 1649 [[package]] ··· 1754 1755 [[package]] 1756 name = "h2" 1757 + version = "0.4.7" 1758 source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" 1760 dependencies = [ 1761 "atomic-waker", 1762 "bytes", ··· 1783 1784 [[package]] 1785 name = "hashbrown" 1786 + version = "0.15.2" 1787 source = "registry+https://github.com/rust-lang/crates.io-index" 1788 + checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 1789 1790 [[package]] 1791 name = "headers" ··· 1816 version = "0.5.0" 1817 source = "registry+https://github.com/rust-lang/crates.io-index" 1818 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1819 1820 [[package]] 1821 name = "hermit-abi" ··· 1966 1967 [[package]] 1968 name = "hyper" 1969 + version = "1.5.1" 1970 source = "registry+https://github.com/rust-lang/crates.io-index" 1971 + checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f" 1972 dependencies = [ 1973 "bytes", 1974 "futures-channel", 1975 "futures-util", 1976 + "h2 0.4.7", 1977 "http 1.1.0", 1978 "http-body 1.0.1", 1979 "httparse", ··· 1992 dependencies = [ 1993 "futures-util", 1994 "http 1.1.0", 1995 + "hyper 1.5.1", 1996 "hyper-util", 1997 + "rustls 0.23.18", 1998 + "rustls-native-certs", 1999 "rustls-pki-types", 2000 "tokio", 2001 "tokio-rustls 0.26.0", ··· 2004 2005 [[package]] 2006 name = "hyper-util" 2007 + version = "0.1.10" 2008 source = "registry+https://github.com/rust-lang/crates.io-index" 2009 + checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" 2010 dependencies = [ 2011 "bytes", 2012 "futures-channel", 2013 "futures-util", 2014 "http 1.1.0", 2015 "http-body 1.0.1", 2016 + "hyper 1.5.1", 2017 "pin-project-lite", 2018 "socket2", 2019 "tokio", ··· 2022 ] 2023 2024 [[package]] 2025 + name = "icu_collections" 2026 + version = "1.5.0" 2027 + source = "registry+https://github.com/rust-lang/crates.io-index" 2028 + checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 2029 + dependencies = [ 2030 + "displaydoc", 2031 + "yoke", 2032 + "zerofrom", 2033 + "zerovec", 2034 + ] 2035 + 2036 + [[package]] 2037 + name = "icu_locid" 2038 + version = "1.5.0" 2039 + source = "registry+https://github.com/rust-lang/crates.io-index" 2040 + checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 2041 + dependencies = [ 2042 + "displaydoc", 2043 + "litemap", 2044 + "tinystr", 2045 + "writeable", 2046 + "zerovec", 2047 + ] 2048 + 2049 + [[package]] 2050 + name = "icu_locid_transform" 2051 + version = "1.5.0" 2052 + source = "registry+https://github.com/rust-lang/crates.io-index" 2053 + checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 2054 + dependencies = [ 2055 + "displaydoc", 2056 + "icu_locid", 2057 + "icu_locid_transform_data", 2058 + "icu_provider", 2059 + "tinystr", 2060 + "zerovec", 2061 + ] 2062 + 2063 + [[package]] 2064 + name = "icu_locid_transform_data" 2065 + version = "1.5.0" 2066 + source = "registry+https://github.com/rust-lang/crates.io-index" 2067 + checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 2068 + 2069 + [[package]] 2070 + name = "icu_normalizer" 2071 + version = "1.5.0" 2072 + source = "registry+https://github.com/rust-lang/crates.io-index" 2073 + checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 2074 + dependencies = [ 2075 + "displaydoc", 2076 + "icu_collections", 2077 + "icu_normalizer_data", 2078 + "icu_properties", 2079 + "icu_provider", 2080 + "smallvec", 2081 + "utf16_iter", 2082 + "utf8_iter", 2083 + "write16", 2084 + "zerovec", 2085 + ] 2086 + 2087 + [[package]] 2088 + name = "icu_normalizer_data" 2089 + version = "1.5.0" 2090 + source = "registry+https://github.com/rust-lang/crates.io-index" 2091 + checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 2092 + 2093 + [[package]] 2094 + name = "icu_properties" 2095 + version = "1.5.1" 2096 + source = "registry+https://github.com/rust-lang/crates.io-index" 2097 + checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 2098 + dependencies = [ 2099 + "displaydoc", 2100 + "icu_collections", 2101 + "icu_locid_transform", 2102 + "icu_properties_data", 2103 + "icu_provider", 2104 + "tinystr", 2105 + "zerovec", 2106 + ] 2107 + 2108 + [[package]] 2109 + name = "icu_properties_data" 2110 + version = "1.5.0" 2111 + source = "registry+https://github.com/rust-lang/crates.io-index" 2112 + checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 2113 + 2114 + [[package]] 2115 + name = "icu_provider" 2116 + version = "1.5.0" 2117 + source = "registry+https://github.com/rust-lang/crates.io-index" 2118 + checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 2119 + dependencies = [ 2120 + "displaydoc", 2121 + "icu_locid", 2122 + "icu_provider_macros", 2123 + "stable_deref_trait", 2124 + "tinystr", 2125 + "writeable", 2126 + "yoke", 2127 + "zerofrom", 2128 + "zerovec", 2129 + ] 2130 + 2131 + [[package]] 2132 + name = "icu_provider_macros" 2133 + version = "1.5.0" 2134 + source = "registry+https://github.com/rust-lang/crates.io-index" 2135 + checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 2136 + dependencies = [ 2137 + "proc-macro2", 2138 + "quote", 2139 + "syn 2.0.89", 2140 + ] 2141 + 2142 + [[package]] 2143 name = "idna" 2144 + version = "1.0.3" 2145 source = "registry+https://github.com/rust-lang/crates.io-index" 2146 + checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 2147 dependencies = [ 2148 + "idna_adapter", 2149 + "smallvec", 2150 + "utf8_iter", 2151 + ] 2152 + 2153 + [[package]] 2154 + name = "idna_adapter" 2155 + version = "1.2.0" 2156 + source = "registry+https://github.com/rust-lang/crates.io-index" 2157 + checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 2158 + dependencies = [ 2159 + "icu_normalizer", 2160 + "icu_properties", 2161 ] 2162 2163 [[package]] 2164 name = "immutable-chunkmap" 2165 + version = "2.0.6" 2166 source = "registry+https://github.com/rust-lang/crates.io-index" 2167 + checksum = "12f97096f508d54f8f8ab8957862eee2ccd628847b6217af1a335e1c44dee578" 2168 dependencies = [ 2169 "arrayvec", 2170 ] ··· 2176 checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 2177 dependencies = [ 2178 "equivalent", 2179 + "hashbrown 0.15.2", 2180 "serde", 2181 ] 2182 2183 [[package]] 2184 name = "indicatif" 2185 + version = "0.17.9" 2186 source = "registry+https://github.com/rust-lang/crates.io-index" 2187 + checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281" 2188 dependencies = [ 2189 "console", 2190 "number_prefix", 2191 "portable-atomic", 2192 + "unicode-width 0.2.0", 2193 + "web-time", 2194 ] 2195 2196 [[package]] ··· 2278 2279 [[package]] 2280 name = "itoa" 2281 + version = "1.0.14" 2282 source = "registry+https://github.com/rust-lang/crates.io-index" 2283 + checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" 2284 2285 [[package]] 2286 name = "jobserver" ··· 2349 "proc-macro2", 2350 "quote", 2351 "regex", 2352 + "syn 2.0.89", 2353 ] 2354 2355 [[package]] ··· 2360 2361 [[package]] 2362 name = "libc" 2363 + version = "0.2.165" 2364 source = "registry+https://github.com/rust-lang/crates.io-index" 2365 + checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e" 2366 2367 [[package]] 2368 name = "libflate" ··· 2390 2391 [[package]] 2392 name = "libm" 2393 + version = "0.2.11" 2394 source = "registry+https://github.com/rust-lang/crates.io-index" 2395 + checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" 2396 2397 [[package]] 2398 name = "libredox" ··· 2410 version = "0.4.14" 2411 source = "registry+https://github.com/rust-lang/crates.io-index" 2412 checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2413 + 2414 + [[package]] 2415 + name = "litemap" 2416 + version = "0.7.4" 2417 + source = "registry+https://github.com/rust-lang/crates.io-index" 2418 + checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" 2419 2420 [[package]] 2421 name = "lock_api" ··· 2688 2689 [[package]] 2690 name = "open" 2691 + version = "5.3.1" 2692 source = "registry+https://github.com/rust-lang/crates.io-index" 2693 + checksum = "3ecd52f0b8d15c40ce4820aa251ed5de032e5d91fab27f7db2f40d42a8bdf69c" 2694 dependencies = [ 2695 "is-wsl", 2696 "libc", ··· 2720 dependencies = [ 2721 "proc-macro2", 2722 "quote", 2723 + "syn 2.0.89", 2724 ] 2725 2726 [[package]] ··· 2731 2732 [[package]] 2733 name = "openssl-src" 2734 + version = "300.4.1+3.4.0" 2735 source = "registry+https://github.com/rust-lang/crates.io-index" 2736 + checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c" 2737 dependencies = [ 2738 "cc", 2739 ] ··· 2822 2823 [[package]] 2824 name = "pathdiff" 2825 + version = "0.2.3" 2826 source = "registry+https://github.com/rust-lang/crates.io-index" 2827 + checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 2828 2829 [[package]] 2830 name = "pbkdf2" ··· 2882 "phf_shared", 2883 "proc-macro2", 2884 "quote", 2885 + "syn 2.0.89", 2886 ] 2887 2888 [[package]] ··· 2896 2897 [[package]] 2898 name = "pin-project" 2899 + version = "1.1.7" 2900 source = "registry+https://github.com/rust-lang/crates.io-index" 2901 + checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" 2902 dependencies = [ 2903 "pin-project-internal", 2904 ] 2905 2906 [[package]] 2907 name = "pin-project-internal" 2908 + version = "1.1.7" 2909 source = "registry+https://github.com/rust-lang/crates.io-index" 2910 + checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" 2911 dependencies = [ 2912 "proc-macro2", 2913 "quote", 2914 + "syn 2.0.89", 2915 ] 2916 2917 [[package]] 2918 name = "pin-project-lite" 2919 + version = "0.2.15" 2920 source = "registry+https://github.com/rust-lang/crates.io-index" 2921 + checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" 2922 2923 [[package]] 2924 name = "pin-utils" ··· 2945 2946 [[package]] 2947 name = "polling" 2948 + version = "3.7.4" 2949 source = "registry+https://github.com/rust-lang/crates.io-index" 2950 + checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" 2951 dependencies = [ 2952 "cfg-if", 2953 "concurrent-queue", ··· 2960 2961 [[package]] 2962 name = "portable-atomic" 2963 + version = "1.10.0" 2964 source = "registry+https://github.com/rust-lang/crates.io-index" 2965 + checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" 2966 2967 [[package]] 2968 name = "powerfmt" ··· 3029 "is-terminal", 3030 "lazy_static", 3031 "term 0.7.0", 3032 + "unicode-width 0.1.14", 3033 ] 3034 3035 [[package]] ··· 3063 3064 [[package]] 3065 name = "proc-macro2" 3066 + version = "1.0.92" 3067 source = "registry+https://github.com/rust-lang/crates.io-index" 3068 + checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" 3069 dependencies = [ 3070 "unicode-ident", 3071 ] 3072 3073 [[package]] 3074 name = "quinn" 3075 + version = "0.11.6" 3076 source = "registry+https://github.com/rust-lang/crates.io-index" 3077 + checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" 3078 dependencies = [ 3079 "bytes", 3080 "pin-project-lite", 3081 "quinn-proto", 3082 "quinn-udp", 3083 "rustc-hash", 3084 + "rustls 0.23.18", 3085 "socket2", 3086 + "thiserror 2.0.3", 3087 "tokio", 3088 "tracing", 3089 ] 3090 3091 [[package]] 3092 name = "quinn-proto" 3093 + version = "0.11.9" 3094 source = "registry+https://github.com/rust-lang/crates.io-index" 3095 + checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d" 3096 dependencies = [ 3097 "bytes", 3098 + "getrandom", 3099 "rand", 3100 "ring", 3101 "rustc-hash", 3102 + "rustls 0.23.18", 3103 + "rustls-pki-types", 3104 "slab", 3105 + "thiserror 2.0.3", 3106 "tinyvec", 3107 "tracing", 3108 + "web-time", 3109 ] 3110 3111 [[package]] 3112 name = "quinn-udp" 3113 + version = "0.5.7" 3114 source = "registry+https://github.com/rust-lang/crates.io-index" 3115 + checksum = "7d5a626c6807713b15cac82a6acaccd6043c9a5408c24baae07611fec3f243da" 3116 dependencies = [ 3117 + "cfg_aliases 0.2.1", 3118 "libc", 3119 "once_cell", 3120 "socket2", ··· 3203 dependencies = [ 3204 "getrandom", 3205 "libredox", 3206 + "thiserror 1.0.69", 3207 ] 3208 3209 [[package]] 3210 name = "regex" 3211 + version = "1.11.1" 3212 source = "registry+https://github.com/rust-lang/crates.io-index" 3213 + checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 3214 dependencies = [ 3215 "aho-corasick", 3216 "memchr", ··· 3220 3221 [[package]] 3222 name = "regex-automata" 3223 + version = "0.4.9" 3224 source = "registry+https://github.com/rust-lang/crates.io-index" 3225 + checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 3226 dependencies = [ 3227 "aho-corasick", 3228 "memchr", ··· 3247 3248 [[package]] 3249 name = "reqwest" 3250 + version = "0.12.9" 3251 source = "registry+https://github.com/rust-lang/crates.io-index" 3252 + checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" 3253 dependencies = [ 3254 "async-compression", 3255 "base64 0.22.1", ··· 3257 "encoding_rs", 3258 "futures-core", 3259 "futures-util", 3260 + "h2 0.4.7", 3261 "http 1.1.0", 3262 "http-body 1.0.1", 3263 "http-body-util", 3264 + "hyper 1.5.1", 3265 "hyper-rustls", 3266 "hyper-util", 3267 "ipnet", ··· 3272 "percent-encoding", 3273 "pin-project-lite", 3274 "quinn", 3275 + "rustls 0.23.18", 3276 + "rustls-native-certs", 3277 "rustls-pemfile", 3278 "rustls-pki-types", 3279 "serde", ··· 3302 "http 1.1.0", 3303 "reqwest", 3304 "serde", 3305 + "thiserror 1.0.69", 3306 "tower-service", 3307 ] 3308 ··· 3317 "futures", 3318 "getrandom", 3319 "http 1.1.0", 3320 + "hyper 1.5.1", 3321 "parking_lot 0.11.2", 3322 "reqwest", 3323 "reqwest-middleware", ··· 3345 "nix 0.26.4", 3346 "regex", 3347 "tempfile", 3348 + "thiserror 1.0.69", 3349 ] 3350 3351 [[package]] ··· 3404 3405 [[package]] 3406 name = "rustix" 3407 + version = "0.38.41" 3408 source = "registry+https://github.com/rust-lang/crates.io-index" 3409 + checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6" 3410 dependencies = [ 3411 "bitflags 2.6.0", 3412 "errno", ··· 3431 3432 [[package]] 3433 name = "rustls" 3434 + version = "0.23.18" 3435 source = "registry+https://github.com/rust-lang/crates.io-index" 3436 + checksum = "9c9cc1d47e243d655ace55ed38201c19ae02c148ae56412ab8750e8f0166ab7f" 3437 dependencies = [ 3438 "once_cell", 3439 "ring", ··· 3445 3446 [[package]] 3447 name = "rustls-native-certs" 3448 + version = "0.8.1" 3449 source = "registry+https://github.com/rust-lang/crates.io-index" 3450 + checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" 3451 dependencies = [ 3452 "openssl-probe", 3453 "rustls-pki-types", 3454 "schannel", 3455 "security-framework", ··· 3469 version = "1.10.0" 3470 source = "registry+https://github.com/rust-lang/crates.io-index" 3471 checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" 3472 + dependencies = [ 3473 + "web-time", 3474 + ] 3475 3476 [[package]] 3477 name = "rustls-webpki" ··· 3507 "nix 0.28.0", 3508 "radix_trie", 3509 "unicode-segmentation", 3510 + "unicode-width 0.1.14", 3511 "utf8parse", 3512 "windows-sys 0.52.0", 3513 ] ··· 3529 3530 [[package]] 3531 name = "schannel" 3532 + version = "0.1.27" 3533 source = "registry+https://github.com/rust-lang/crates.io-index" 3534 + checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 3535 dependencies = [ 3536 "windows-sys 0.59.0", 3537 ] ··· 3571 3572 [[package]] 3573 name = "security-framework" 3574 + version = "3.0.1" 3575 source = "registry+https://github.com/rust-lang/crates.io-index" 3576 + checksum = "e1415a607e92bec364ea2cf9264646dcce0f91e6d65281bd6f2819cca3bf39c8" 3577 dependencies = [ 3578 "bitflags 2.6.0", 3579 "core-foundation", ··· 3584 3585 [[package]] 3586 name = "security-framework-sys" 3587 + version = "2.12.1" 3588 source = "registry+https://github.com/rust-lang/crates.io-index" 3589 + checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2" 3590 dependencies = [ 3591 "core-foundation-sys", 3592 "libc", ··· 3603 3604 [[package]] 3605 name = "serde" 3606 + version = "1.0.215" 3607 source = "registry+https://github.com/rust-lang/crates.io-index" 3608 + checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" 3609 dependencies = [ 3610 "serde_derive", 3611 ] 3612 3613 [[package]] 3614 name = "serde_derive" 3615 + version = "1.0.215" 3616 source = "registry+https://github.com/rust-lang/crates.io-index" 3617 + checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" 3618 dependencies = [ 3619 "proc-macro2", 3620 "quote", 3621 + "syn 2.0.89", 3622 ] 3623 3624 [[package]] 3625 name = "serde_json" 3626 + version = "1.0.133" 3627 source = "registry+https://github.com/rust-lang/crates.io-index" 3628 + checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" 3629 dependencies = [ 3630 "indexmap", 3631 "itoa", ··· 3805 source = "registry+https://github.com/rust-lang/crates.io-index" 3806 checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019" 3807 dependencies = [ 3808 + "backtrace", 3809 "snafu-derive", 3810 ] 3811 ··· 3818 "heck", 3819 "proc-macro2", 3820 "quote", 3821 + "syn 2.0.89", 3822 ] 3823 3824 [[package]] ··· 3838 checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3839 3840 [[package]] 3841 + name = "stable_deref_trait" 3842 + version = "1.2.0" 3843 + source = "registry+https://github.com/rust-lang/crates.io-index" 3844 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3845 + 3846 + [[package]] 3847 name = "strict" 3848 version = "0.2.0" 3849 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3874 3875 [[package]] 3876 name = "syn" 3877 + version = "2.0.89" 3878 source = "registry+https://github.com/rust-lang/crates.io-index" 3879 + checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" 3880 dependencies = [ 3881 "proc-macro2", 3882 "quote", ··· 3885 3886 [[package]] 3887 name = "sync_wrapper" 3888 + version = "1.0.2" 3889 source = "registry+https://github.com/rust-lang/crates.io-index" 3890 + checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3891 dependencies = [ 3892 "futures-core", 3893 ] 3894 3895 [[package]] 3896 + name = "synstructure" 3897 + version = "0.13.1" 3898 + source = "registry+https://github.com/rust-lang/crates.io-index" 3899 + checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 3900 + dependencies = [ 3901 + "proc-macro2", 3902 + "quote", 3903 + "syn 2.0.89", 3904 + ] 3905 + 3906 + [[package]] 3907 name = "tap" 3908 version = "1.0.1" 3909 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3911 3912 [[package]] 3913 name = "tar" 3914 + version = "0.4.43" 3915 source = "registry+https://github.com/rust-lang/crates.io-index" 3916 + checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" 3917 dependencies = [ 3918 "filetime", 3919 "libc", ··· 3928 3929 [[package]] 3930 name = "tempfile" 3931 + version = "3.14.0" 3932 source = "registry+https://github.com/rust-lang/crates.io-index" 3933 + checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" 3934 dependencies = [ 3935 "cfg-if", 3936 "fastrand", ··· 3981 "lazy-regex", 3982 "minimad", 3983 "serde", 3984 + "thiserror 1.0.69", 3985 + "unicode-width 0.1.14", 3986 ] 3987 3988 [[package]] ··· 4019 "cfg-if", 4020 "proc-macro2", 4021 "quote", 4022 + "syn 2.0.89", 4023 ] 4024 4025 [[package]] ··· 4030 dependencies = [ 4031 "proc-macro2", 4032 "quote", 4033 + "syn 2.0.89", 4034 "test-case-core", 4035 ] 4036 4037 [[package]] 4038 name = "test-utils" 4039 version = "0.1.0" 4040 + source = "git+https://github.com/edgedb/test-utils.git#36af0d100941520d64d94ddc367371faf91c4f3a" 4041 dependencies = [ 4042 "anyhow", 4043 "command-fds", ··· 4057 dependencies = [ 4058 "smawk", 4059 "unicode-linebreak", 4060 + "unicode-width 0.1.14", 4061 + ] 4062 + 4063 + [[package]] 4064 + name = "thiserror" 4065 + version = "1.0.69" 4066 + source = "registry+https://github.com/rust-lang/crates.io-index" 4067 + checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 4068 + dependencies = [ 4069 + "thiserror-impl 1.0.69", 4070 ] 4071 4072 [[package]] 4073 name = "thiserror" 4074 + version = "2.0.3" 4075 source = "registry+https://github.com/rust-lang/crates.io-index" 4076 + checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" 4077 dependencies = [ 4078 + "thiserror-impl 2.0.3", 4079 ] 4080 4081 [[package]] 4082 name = "thiserror-impl" 4083 + version = "1.0.69" 4084 source = "registry+https://github.com/rust-lang/crates.io-index" 4085 + checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 4086 dependencies = [ 4087 "proc-macro2", 4088 "quote", 4089 + "syn 2.0.89", 4090 + ] 4091 + 4092 + [[package]] 4093 + name = "thiserror-impl" 4094 + version = "2.0.3" 4095 + source = "registry+https://github.com/rust-lang/crates.io-index" 4096 + checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" 4097 + dependencies = [ 4098 + "proc-macro2", 4099 + "quote", 4100 + "syn 2.0.89", 4101 ] 4102 4103 [[package]] ··· 4120 checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 4121 4122 [[package]] 4123 + name = "tinystr" 4124 + version = "0.7.6" 4125 + source = "registry+https://github.com/rust-lang/crates.io-index" 4126 + checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 4127 + dependencies = [ 4128 + "displaydoc", 4129 + "zerovec", 4130 + ] 4131 + 4132 + [[package]] 4133 name = "tinyvec" 4134 version = "1.8.0" 4135 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4145 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4146 4147 [[package]] 4148 + name = "tls-api" 4149 + version = "0.12.0" 4150 source = "registry+https://github.com/rust-lang/crates.io-index" 4151 + checksum = "a8eb75b7304e6c157a435fff36a9ddc111ad410015d5260b306f10a18cffad72" 4152 dependencies = [ 4153 "anyhow", 4154 "pem", 4155 "tempfile", 4156 + "thiserror 2.0.3", 4157 "tokio", 4158 ] 4159 4160 [[package]] 4161 + name = "tls-api-not-tls" 4162 + version = "0.12.1" 4163 source = "registry+https://github.com/rust-lang/crates.io-index" 4164 + checksum = "e499a14f1a4d2552a77a7db66dc011f2ab0b6addc23d1f0b65bd757e91f5fd33" 4165 dependencies = [ 4166 "anyhow", 4167 + "thiserror 2.0.3", 4168 + "tls-api", 4169 "tokio", 4170 ] 4171 4172 [[package]] 4173 + name = "tls-api-rustls" 4174 + version = "0.12.1" 4175 source = "registry+https://github.com/rust-lang/crates.io-index" 4176 + checksum = "69788bbcd8237aa8bed3709aae340d884c3013b2e69d7df34d35d877de3f545b" 4177 dependencies = [ 4178 "anyhow", 4179 + "rustls 0.23.18", 4180 + "thiserror 2.0.3", 4181 + "tls-api", 4182 "tokio", 4183 "webpki", 4184 "webpki-roots", 4185 ] 4186 4187 [[package]] 4188 name = "tokio" 4189 + version = "1.41.1" 4190 source = "registry+https://github.com/rust-lang/crates.io-index" 4191 + checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" 4192 dependencies = [ 4193 "backtrace", 4194 "bytes", ··· 4209 dependencies = [ 4210 "proc-macro2", 4211 "quote", 4212 + "syn 2.0.89", 4213 ] 4214 4215 [[package]] ··· 4229 source = "registry+https://github.com/rust-lang/crates.io-index" 4230 checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 4231 dependencies = [ 4232 + "rustls 0.23.18", 4233 "rustls-pki-types", 4234 "tokio", 4235 ] ··· 4318 dependencies = [ 4319 "proc-macro2", 4320 "quote", 4321 + "syn 2.0.89", 4322 ] 4323 4324 [[package]] 4325 name = "tracing-core" 4326 + version = "0.1.33" 4327 source = "registry+https://github.com/rust-lang/crates.io-index" 4328 + checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 4329 dependencies = [ 4330 "once_cell", 4331 ] ··· 4364 checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df" 4365 4366 [[package]] 4367 name = "unicode-ident" 4368 + version = "1.0.14" 4369 source = "registry+https://github.com/rust-lang/crates.io-index" 4370 + checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 4371 4372 [[package]] 4373 name = "unicode-linebreak" ··· 4376 checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 4377 4378 [[package]] 4379 name = "unicode-segmentation" 4380 version = "1.12.0" 4381 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4388 checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 4389 4390 [[package]] 4391 + name = "unicode-width" 4392 + version = "0.2.0" 4393 + source = "registry+https://github.com/rust-lang/crates.io-index" 4394 + checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" 4395 + 4396 + [[package]] 4397 + name = "unicode-xid" 4398 + version = "0.2.6" 4399 + source = "registry+https://github.com/rust-lang/crates.io-index" 4400 + checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 4401 + 4402 + [[package]] 4403 name = "untrusted" 4404 version = "0.9.0" 4405 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4407 4408 [[package]] 4409 name = "url" 4410 + version = "2.5.4" 4411 source = "registry+https://github.com/rust-lang/crates.io-index" 4412 + checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 4413 dependencies = [ 4414 "form_urlencoded", 4415 "idna", ··· 4424 checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 4425 4426 [[package]] 4427 + name = "utf16_iter" 4428 + version = "1.0.5" 4429 + source = "registry+https://github.com/rust-lang/crates.io-index" 4430 + checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 4431 + 4432 + [[package]] 4433 + name = "utf8_iter" 4434 + version = "1.0.4" 4435 + source = "registry+https://github.com/rust-lang/crates.io-index" 4436 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4437 + 4438 + [[package]] 4439 name = "utf8parse" 4440 version = "0.2.2" 4441 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4454 4455 [[package]] 4456 name = "value-bag" 4457 + version = "1.10.0" 4458 source = "registry+https://github.com/rust-lang/crates.io-index" 4459 + checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2" 4460 4461 [[package]] 4462 name = "vcpkg" ··· 4560 "once_cell", 4561 "proc-macro2", 4562 "quote", 4563 + "syn 2.0.89", 4564 "wasm-bindgen-shared", 4565 ] 4566 ··· 4594 dependencies = [ 4595 "proc-macro2", 4596 "quote", 4597 + "syn 2.0.89", 4598 "wasm-bindgen-backend", 4599 "wasm-bindgen-shared", 4600 ] ··· 4653 ] 4654 4655 [[package]] 4656 + name = "web-time" 4657 + version = "1.1.0" 4658 + source = "registry+https://github.com/rust-lang/crates.io-index" 4659 + checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 4660 + dependencies = [ 4661 + "js-sys", 4662 + "wasm-bindgen", 4663 + ] 4664 + 4665 + [[package]] 4666 name = "webpki" 4667 version = "0.22.4" 4668 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4674 4675 [[package]] 4676 name = "webpki-roots" 4677 + version = "0.26.7" 4678 source = "registry+https://github.com/rust-lang/crates.io-index" 4679 + checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" 4680 dependencies = [ 4681 "rustls-pki-types", 4682 ] ··· 4767 4768 [[package]] 4769 name = "windows-sys" 4770 + version = "0.45.0" 4771 + source = "registry+https://github.com/rust-lang/crates.io-index" 4772 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4773 + dependencies = [ 4774 + "windows-targets 0.42.2", 4775 + ] 4776 + 4777 + [[package]] 4778 + name = "windows-sys" 4779 version = "0.48.0" 4780 source = "registry+https://github.com/rust-lang/crates.io-index" 4781 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" ··· 4803 4804 [[package]] 4805 name = "windows-targets" 4806 + version = "0.42.2" 4807 + source = "registry+https://github.com/rust-lang/crates.io-index" 4808 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4809 + dependencies = [ 4810 + "windows_aarch64_gnullvm 0.42.2", 4811 + "windows_aarch64_msvc 0.42.2", 4812 + "windows_i686_gnu 0.42.2", 4813 + "windows_i686_msvc 0.42.2", 4814 + "windows_x86_64_gnu 0.42.2", 4815 + "windows_x86_64_gnullvm 0.42.2", 4816 + "windows_x86_64_msvc 0.42.2", 4817 + ] 4818 + 4819 + [[package]] 4820 + name = "windows-targets" 4821 version = "0.48.5" 4822 source = "registry+https://github.com/rust-lang/crates.io-index" 4823 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" ··· 4849 4850 [[package]] 4851 name = "windows_aarch64_gnullvm" 4852 + version = "0.42.2" 4853 + source = "registry+https://github.com/rust-lang/crates.io-index" 4854 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4855 + 4856 + [[package]] 4857 + name = "windows_aarch64_gnullvm" 4858 version = "0.48.5" 4859 source = "registry+https://github.com/rust-lang/crates.io-index" 4860 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" ··· 4867 4868 [[package]] 4869 name = "windows_aarch64_msvc" 4870 + version = "0.42.2" 4871 + source = "registry+https://github.com/rust-lang/crates.io-index" 4872 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4873 + 4874 + [[package]] 4875 + name = "windows_aarch64_msvc" 4876 version = "0.48.5" 4877 source = "registry+https://github.com/rust-lang/crates.io-index" 4878 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" ··· 4885 4886 [[package]] 4887 name = "windows_i686_gnu" 4888 + version = "0.42.2" 4889 + source = "registry+https://github.com/rust-lang/crates.io-index" 4890 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4891 + 4892 + [[package]] 4893 + name = "windows_i686_gnu" 4894 version = "0.48.5" 4895 source = "registry+https://github.com/rust-lang/crates.io-index" 4896 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" ··· 4909 4910 [[package]] 4911 name = "windows_i686_msvc" 4912 + version = "0.42.2" 4913 + source = "registry+https://github.com/rust-lang/crates.io-index" 4914 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4915 + 4916 + [[package]] 4917 + name = "windows_i686_msvc" 4918 version = "0.48.5" 4919 source = "registry+https://github.com/rust-lang/crates.io-index" 4920 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" ··· 4927 4928 [[package]] 4929 name = "windows_x86_64_gnu" 4930 + version = "0.42.2" 4931 + source = "registry+https://github.com/rust-lang/crates.io-index" 4932 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 4933 + 4934 + [[package]] 4935 + name = "windows_x86_64_gnu" 4936 version = "0.48.5" 4937 source = "registry+https://github.com/rust-lang/crates.io-index" 4938 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" ··· 4945 4946 [[package]] 4947 name = "windows_x86_64_gnullvm" 4948 + version = "0.42.2" 4949 + source = "registry+https://github.com/rust-lang/crates.io-index" 4950 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 4951 + 4952 + [[package]] 4953 + name = "windows_x86_64_gnullvm" 4954 version = "0.48.5" 4955 source = "registry+https://github.com/rust-lang/crates.io-index" 4956 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" ··· 4963 4964 [[package]] 4965 name = "windows_x86_64_msvc" 4966 + version = "0.42.2" 4967 + source = "registry+https://github.com/rust-lang/crates.io-index" 4968 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4969 + 4970 + [[package]] 4971 + name = "windows_x86_64_msvc" 4972 version = "0.48.5" 4973 source = "registry+https://github.com/rust-lang/crates.io-index" 4974 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" ··· 5003 version = "0.0.19" 5004 source = "registry+https://github.com/rust-lang/crates.io-index" 5005 checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" 5006 + 5007 + [[package]] 5008 + name = "write16" 5009 + version = "1.0.0" 5010 + source = "registry+https://github.com/rust-lang/crates.io-index" 5011 + checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 5012 + 5013 + [[package]] 5014 + name = "writeable" 5015 + version = "0.5.5" 5016 + source = "registry+https://github.com/rust-lang/crates.io-index" 5017 + checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 5018 5019 [[package]] 5020 name = "wslapi" ··· 5054 checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 5055 5056 [[package]] 5057 + name = "yoke" 5058 + version = "0.7.5" 5059 + source = "registry+https://github.com/rust-lang/crates.io-index" 5060 + checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 5061 + dependencies = [ 5062 + "serde", 5063 + "stable_deref_trait", 5064 + "yoke-derive", 5065 + "zerofrom", 5066 + ] 5067 + 5068 + [[package]] 5069 + name = "yoke-derive" 5070 + version = "0.7.5" 5071 + source = "registry+https://github.com/rust-lang/crates.io-index" 5072 + checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 5073 + dependencies = [ 5074 + "proc-macro2", 5075 + "quote", 5076 + "syn 2.0.89", 5077 + "synstructure", 5078 + ] 5079 + 5080 + [[package]] 5081 name = "zerocopy" 5082 version = "0.7.35" 5083 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5095 dependencies = [ 5096 "proc-macro2", 5097 "quote", 5098 + "syn 2.0.89", 5099 + ] 5100 + 5101 + [[package]] 5102 + name = "zerofrom" 5103 + version = "0.1.5" 5104 + source = "registry+https://github.com/rust-lang/crates.io-index" 5105 + checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 5106 + dependencies = [ 5107 + "zerofrom-derive", 5108 + ] 5109 + 5110 + [[package]] 5111 + name = "zerofrom-derive" 5112 + version = "0.1.5" 5113 + source = "registry+https://github.com/rust-lang/crates.io-index" 5114 + checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 5115 + dependencies = [ 5116 + "proc-macro2", 5117 + "quote", 5118 + "syn 2.0.89", 5119 + "synstructure", 5120 ] 5121 5122 [[package]] ··· 5136 dependencies = [ 5137 "proc-macro2", 5138 "quote", 5139 + "syn 2.0.89", 5140 + ] 5141 + 5142 + [[package]] 5143 + name = "zerovec" 5144 + version = "0.10.4" 5145 + source = "registry+https://github.com/rust-lang/crates.io-index" 5146 + checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 5147 + dependencies = [ 5148 + "yoke", 5149 + "zerofrom", 5150 + "zerovec-derive", 5151 + ] 5152 + 5153 + [[package]] 5154 + name = "zerovec-derive" 5155 + version = "0.10.3" 5156 + source = "registry+https://github.com/rust-lang/crates.io-index" 5157 + checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 5158 + dependencies = [ 5159 + "proc-macro2", 5160 + "quote", 5161 + "syn 2.0.89", 5162 ] 5163 5164 [[package]] 5165 name = "zip" 5166 + version = "2.2.1" 5167 source = "registry+https://github.com/rust-lang/crates.io-index" 5168 + checksum = "99d52293fc86ea7cf13971b3bb81eb21683636e7ae24c729cdaf1b7c4157a352" 5169 dependencies = [ 5170 "aes", 5171 "arbitrary", ··· 5183 "pbkdf2", 5184 "rand", 5185 "sha1", 5186 + "thiserror 2.0.3", 5187 "time", 5188 "zeroize", 5189 "zopfli",
+5 -5
pkgs/tools/networking/edgedb/default.nix
··· 16 }: 17 rustPlatform.buildRustPackage rec { 18 pname = "edgedb"; 19 - version = "5.5.2"; 20 21 src = fetchFromGitHub { 22 owner = "edgedb"; 23 repo = "edgedb-cli"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-CSs1Ql0zsGgSmZrlZIfj2pJdtAax7HUlfCq8oTbReng="; 26 fetchSubmodules = true; 27 }; 28 29 cargoLock = { 30 lockFile = ./Cargo.lock; 31 outputHashes = { 32 - "edgedb-derive-0.5.2" = "sha256-5nvpkmTRcGO4a/Mc+qLp2+u9bWSnHQ/1NT2FW9ii0AU="; 33 - "edgeql-parser-0.1.0" = "sha256-dhLwBW4ellai9R9TjlJ/qEhZQRXE9D/+QxZsq3I9PRk="; 34 "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 35 "scram-0.7.0" = "sha256-QTPxyXBpMXCDkRRJEMYly1GKp90khrwwuMI1eHc2H+Y="; 36 "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 37 - "test-utils-0.1.0" = "sha256-FoF/U89Q9E2Dlmpoh+cfDcScmhcsSNut+rE7BECJSJI="; 38 "warp-0.3.6" = "sha256-knDt2aw/PJ0iabhKg+okwwnEzCY+vQVhE7HKCTM6QbE="; 39 }; 40 };
··· 16 }: 17 rustPlatform.buildRustPackage rec { 18 pname = "edgedb"; 19 + version = "6.0.0"; 20 21 src = fetchFromGitHub { 22 owner = "edgedb"; 23 repo = "edgedb-cli"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-GBtqAHmXHgsWRXelOQ9i3R0VL8OqcASfpWU/EJaimNo="; 26 fetchSubmodules = true; 27 }; 28 29 cargoLock = { 30 lockFile = ./Cargo.lock; 31 outputHashes = { 32 + "edgedb-derive-0.5.2" = "sha256-r1KWnIbX/TV2ZK/WXtYaNsGOqxMeykD1bgFyA992FGE="; 33 + "edgeql-parser-0.1.0" = "sha256-qyY8mvZhLgQJgT7ZtxkyhpQMCLPGAIzw/E64rMiOAkw="; 34 "rexpect-0.5.0" = "sha256-vstAL/fJWWx7WbmRxNItKpzvgGF3SvJDs5isq9ym/OA="; 35 "scram-0.7.0" = "sha256-QTPxyXBpMXCDkRRJEMYly1GKp90khrwwuMI1eHc2H+Y="; 36 "serde_str-1.0.0" = "sha256-CMBh5lxdQb2085y0jc/DrV6B8iiXvVO2aoZH/lFFjak="; 37 + "test-utils-0.1.0" = "sha256-u29t7o+iBw3ja0LdbsQVntQMm5j4a2pDIyDfAvDGHiI="; 38 "warp-0.3.6" = "sha256-knDt2aw/PJ0iabhKg+okwwnEzCY+vQVhE7HKCTM6QbE="; 39 }; 40 };