diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-31 12:35:11 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-31 12:35:11 +0100 |
| commit | 9d4adb9afd591ccef8827902034378acd700c6f8 (patch) | |
| tree | 46956e4b56f98e3b5d59a285ff08207d659fcc14 /Cargo.lock | |
| parent | 8fe7737a491d6056d6e865bfdecd02e3dda3e8f5 (diff) | |
fix: nip05 breaking changes in rust-nostr
as its now 'bring your own transport'
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 470 |
1 files changed, 466 insertions, 4 deletions
| @@ -174,6 +174,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 174 | checksum = "ef49f5882e4b6afaac09ad239a4f8c70a24b8f2b0897edb1f706008efd109cf4" | 174 | checksum = "ef49f5882e4b6afaac09ad239a4f8c70a24b8f2b0897edb1f706008efd109cf4" |
| 175 | 175 | ||
| 176 | [[package]] | 176 | [[package]] |
| 177 | name = "atomic-waker" | ||
| 178 | version = "1.1.2" | ||
| 179 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 180 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" | ||
| 181 | |||
| 182 | [[package]] | ||
| 177 | name = "auth-git2" | 183 | name = "auth-git2" |
| 178 | version = "0.5.8" | 184 | version = "0.5.8" |
| 179 | source = "registry+https://github.com/rust-lang/crates.io-index" | 185 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -463,6 +469,22 @@ dependencies = [ | |||
| 463 | ] | 469 | ] |
| 464 | 470 | ||
| 465 | [[package]] | 471 | [[package]] |
| 472 | name = "core-foundation" | ||
| 473 | version = "0.9.4" | ||
| 474 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 475 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" | ||
| 476 | dependencies = [ | ||
| 477 | "core-foundation-sys", | ||
| 478 | "libc", | ||
| 479 | ] | ||
| 480 | |||
| 481 | [[package]] | ||
| 482 | name = "core-foundation-sys" | ||
| 483 | version = "0.8.7" | ||
| 484 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 485 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" | ||
| 486 | |||
| 487 | [[package]] | ||
| 466 | name = "cpufeatures" | 488 | name = "cpufeatures" |
| 467 | version = "0.2.17" | 489 | version = "0.2.17" |
| 468 | source = "registry+https://github.com/rust-lang/crates.io-index" | 490 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -608,6 +630,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 608 | checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" | 630 | checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" |
| 609 | 631 | ||
| 610 | [[package]] | 632 | [[package]] |
| 633 | name = "encoding_rs" | ||
| 634 | version = "0.8.35" | ||
| 635 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 636 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" | ||
| 637 | dependencies = [ | ||
| 638 | "cfg-if", | ||
| 639 | ] | ||
| 640 | |||
| 641 | [[package]] | ||
| 611 | name = "equivalent" | 642 | name = "equivalent" |
| 612 | version = "1.0.2" | 643 | version = "1.0.2" |
| 613 | source = "registry+https://github.com/rust-lang/crates.io-index" | 644 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -659,6 +690,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 659 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | 690 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" |
| 660 | 691 | ||
| 661 | [[package]] | 692 | [[package]] |
| 693 | name = "foreign-types" | ||
| 694 | version = "0.3.2" | ||
| 695 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 696 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" | ||
| 697 | dependencies = [ | ||
| 698 | "foreign-types-shared", | ||
| 699 | ] | ||
| 700 | |||
| 701 | [[package]] | ||
| 702 | name = "foreign-types-shared" | ||
| 703 | version = "0.1.1" | ||
| 704 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 705 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" | ||
| 706 | |||
| 707 | [[package]] | ||
| 662 | name = "form_urlencoded" | 708 | name = "form_urlencoded" |
| 663 | version = "1.2.1" | 709 | version = "1.2.1" |
| 664 | source = "registry+https://github.com/rust-lang/crates.io-index" | 710 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -831,6 +877,25 @@ dependencies = [ | |||
| 831 | ] | 877 | ] |
| 832 | 878 | ||
| 833 | [[package]] | 879 | [[package]] |
| 880 | name = "h2" | ||
| 881 | version = "0.4.11" | ||
| 882 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 883 | checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785" | ||
| 884 | dependencies = [ | ||
| 885 | "atomic-waker", | ||
| 886 | "bytes", | ||
| 887 | "fnv", | ||
| 888 | "futures-core", | ||
| 889 | "futures-sink", | ||
| 890 | "http 1.3.1", | ||
| 891 | "indexmap", | ||
| 892 | "slab", | ||
| 893 | "tokio", | ||
| 894 | "tokio-util", | ||
| 895 | "tracing", | ||
| 896 | ] | ||
| 897 | |||
| 898 | [[package]] | ||
| 834 | name = "hashbrown" | 899 | name = "hashbrown" |
| 835 | version = "0.15.4" | 900 | version = "0.15.4" |
| 836 | source = "registry+https://github.com/rust-lang/crates.io-index" | 901 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -923,12 +988,113 @@ dependencies = [ | |||
| 923 | ] | 988 | ] |
| 924 | 989 | ||
| 925 | [[package]] | 990 | [[package]] |
| 991 | name = "http-body" | ||
| 992 | version = "1.0.1" | ||
| 993 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 994 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" | ||
| 995 | dependencies = [ | ||
| 996 | "bytes", | ||
| 997 | "http 1.3.1", | ||
| 998 | ] | ||
| 999 | |||
| 1000 | [[package]] | ||
| 1001 | name = "http-body-util" | ||
| 1002 | version = "0.1.3" | ||
| 1003 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1004 | checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" | ||
| 1005 | dependencies = [ | ||
| 1006 | "bytes", | ||
| 1007 | "futures-core", | ||
| 1008 | "http 1.3.1", | ||
| 1009 | "http-body", | ||
| 1010 | "pin-project-lite", | ||
| 1011 | ] | ||
| 1012 | |||
| 1013 | [[package]] | ||
| 926 | name = "httparse" | 1014 | name = "httparse" |
| 927 | version = "1.10.1" | 1015 | version = "1.10.1" |
| 928 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1016 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 929 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" | 1017 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" |
| 930 | 1018 | ||
| 931 | [[package]] | 1019 | [[package]] |
| 1020 | name = "hyper" | ||
| 1021 | version = "1.6.0" | ||
| 1022 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1023 | checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" | ||
| 1024 | dependencies = [ | ||
| 1025 | "bytes", | ||
| 1026 | "futures-channel", | ||
| 1027 | "futures-util", | ||
| 1028 | "h2", | ||
| 1029 | "http 1.3.1", | ||
| 1030 | "http-body", | ||
| 1031 | "httparse", | ||
| 1032 | "itoa", | ||
| 1033 | "pin-project-lite", | ||
| 1034 | "smallvec", | ||
| 1035 | "tokio", | ||
| 1036 | "want", | ||
| 1037 | ] | ||
| 1038 | |||
| 1039 | [[package]] | ||
| 1040 | name = "hyper-rustls" | ||
| 1041 | version = "0.27.7" | ||
| 1042 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1043 | checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" | ||
| 1044 | dependencies = [ | ||
| 1045 | "http 1.3.1", | ||
| 1046 | "hyper", | ||
| 1047 | "hyper-util", | ||
| 1048 | "rustls", | ||
| 1049 | "rustls-pki-types", | ||
| 1050 | "tokio", | ||
| 1051 | "tokio-rustls", | ||
| 1052 | "tower-service", | ||
| 1053 | ] | ||
| 1054 | |||
| 1055 | [[package]] | ||
| 1056 | name = "hyper-tls" | ||
| 1057 | version = "0.6.0" | ||
| 1058 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1059 | checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" | ||
| 1060 | dependencies = [ | ||
| 1061 | "bytes", | ||
| 1062 | "http-body-util", | ||
| 1063 | "hyper", | ||
| 1064 | "hyper-util", | ||
| 1065 | "native-tls", | ||
| 1066 | "tokio", | ||
| 1067 | "tokio-native-tls", | ||
| 1068 | "tower-service", | ||
| 1069 | ] | ||
| 1070 | |||
| 1071 | [[package]] | ||
| 1072 | name = "hyper-util" | ||
| 1073 | version = "0.1.16" | ||
| 1074 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1075 | checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" | ||
| 1076 | dependencies = [ | ||
| 1077 | "base64", | ||
| 1078 | "bytes", | ||
| 1079 | "futures-channel", | ||
| 1080 | "futures-core", | ||
| 1081 | "futures-util", | ||
| 1082 | "http 1.3.1", | ||
| 1083 | "http-body", | ||
| 1084 | "hyper", | ||
| 1085 | "ipnet", | ||
| 1086 | "libc", | ||
| 1087 | "percent-encoding", | ||
| 1088 | "pin-project-lite", | ||
| 1089 | "socket2", | ||
| 1090 | "system-configuration", | ||
| 1091 | "tokio", | ||
| 1092 | "tower-service", | ||
| 1093 | "tracing", | ||
| 1094 | "windows-registry", | ||
| 1095 | ] | ||
| 1096 | |||
| 1097 | [[package]] | ||
| 932 | name = "icu_collections" | 1098 | name = "icu_collections" |
| 933 | version = "2.0.0" | 1099 | version = "2.0.0" |
| 934 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1100 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1092,6 +1258,22 @@ dependencies = [ | |||
| 1092 | ] | 1258 | ] |
| 1093 | 1259 | ||
| 1094 | [[package]] | 1260 | [[package]] |
| 1261 | name = "ipnet" | ||
| 1262 | version = "2.11.0" | ||
| 1263 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1264 | checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" | ||
| 1265 | |||
| 1266 | [[package]] | ||
| 1267 | name = "iri-string" | ||
| 1268 | version = "0.7.8" | ||
| 1269 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1270 | checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" | ||
| 1271 | dependencies = [ | ||
| 1272 | "memchr", | ||
| 1273 | "serde", | ||
| 1274 | ] | ||
| 1275 | |||
| 1276 | [[package]] | ||
| 1095 | name = "is_terminal_polyfill" | 1277 | name = "is_terminal_polyfill" |
| 1096 | version = "1.70.1" | 1278 | version = "1.70.1" |
| 1097 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1279 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1145,12 +1327,13 @@ dependencies = [ | |||
| 1145 | 1327 | ||
| 1146 | [[package]] | 1328 | [[package]] |
| 1147 | name = "libredox" | 1329 | name = "libredox" |
| 1148 | version = "0.1.8" | 1330 | version = "0.1.9" |
| 1149 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1331 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1150 | checksum = "360e552c93fa0e8152ab463bc4c4837fce76a225df11dfaeea66c313de5e61f7" | 1332 | checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" |
| 1151 | dependencies = [ | 1333 | dependencies = [ |
| 1152 | "bitflags", | 1334 | "bitflags", |
| 1153 | "libc", | 1335 | "libc", |
| 1336 | "redox_syscall", | ||
| 1154 | ] | 1337 | ] |
| 1155 | 1338 | ||
| 1156 | [[package]] | 1339 | [[package]] |
| @@ -1231,6 +1414,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1231 | checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | 1414 | checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" |
| 1232 | 1415 | ||
| 1233 | [[package]] | 1416 | [[package]] |
| 1417 | name = "mime" | ||
| 1418 | version = "0.3.17" | ||
| 1419 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1420 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" | ||
| 1421 | |||
| 1422 | [[package]] | ||
| 1234 | name = "miniz_oxide" | 1423 | name = "miniz_oxide" |
| 1235 | version = "0.8.9" | 1424 | version = "0.8.9" |
| 1236 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1425 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1286,6 +1475,23 @@ dependencies = [ | |||
| 1286 | ] | 1475 | ] |
| 1287 | 1476 | ||
| 1288 | [[package]] | 1477 | [[package]] |
| 1478 | name = "native-tls" | ||
| 1479 | version = "0.2.14" | ||
| 1480 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1481 | checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" | ||
| 1482 | dependencies = [ | ||
| 1483 | "libc", | ||
| 1484 | "log", | ||
| 1485 | "openssl", | ||
| 1486 | "openssl-probe", | ||
| 1487 | "openssl-sys", | ||
| 1488 | "schannel", | ||
| 1489 | "security-framework", | ||
| 1490 | "security-framework-sys", | ||
| 1491 | "tempfile", | ||
| 1492 | ] | ||
| 1493 | |||
| 1494 | [[package]] | ||
| 1289 | name = "negentropy" | 1495 | name = "negentropy" |
| 1290 | version = "0.5.0" | 1496 | version = "0.5.0" |
| 1291 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1497 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1317,6 +1523,7 @@ dependencies = [ | |||
| 1317 | "once_cell", | 1523 | "once_cell", |
| 1318 | "passwords", | 1524 | "passwords", |
| 1319 | "qrcode", | 1525 | "qrcode", |
| 1526 | "reqwest", | ||
| 1320 | "scrypt", | 1527 | "scrypt", |
| 1321 | "serde", | 1528 | "serde", |
| 1322 | "serde_json", | 1529 | "serde_json", |
| @@ -1460,6 +1667,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1460 | checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" | 1667 | checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" |
| 1461 | 1668 | ||
| 1462 | [[package]] | 1669 | [[package]] |
| 1670 | name = "openssl" | ||
| 1671 | version = "0.10.73" | ||
| 1672 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1673 | checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" | ||
| 1674 | dependencies = [ | ||
| 1675 | "bitflags", | ||
| 1676 | "cfg-if", | ||
| 1677 | "foreign-types", | ||
| 1678 | "libc", | ||
| 1679 | "once_cell", | ||
| 1680 | "openssl-macros", | ||
| 1681 | "openssl-sys", | ||
| 1682 | ] | ||
| 1683 | |||
| 1684 | [[package]] | ||
| 1685 | name = "openssl-macros" | ||
| 1686 | version = "0.1.1" | ||
| 1687 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1688 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" | ||
| 1689 | dependencies = [ | ||
| 1690 | "proc-macro2", | ||
| 1691 | "quote", | ||
| 1692 | "syn", | ||
| 1693 | ] | ||
| 1694 | |||
| 1695 | [[package]] | ||
| 1463 | name = "openssl-probe" | 1696 | name = "openssl-probe" |
| 1464 | version = "0.1.6" | 1697 | version = "0.1.6" |
| 1465 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1698 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1841,9 +2074,9 @@ dependencies = [ | |||
| 1841 | 2074 | ||
| 1842 | [[package]] | 2075 | [[package]] |
| 1843 | name = "redox_users" | 2076 | name = "redox_users" |
| 1844 | version = "0.5.0" | 2077 | version = "0.5.1" |
| 1845 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2078 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1846 | checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" | 2079 | checksum = "78eaea1f52c56d57821be178b2d47e09ff26481a6042e8e042fcb0ced068b470" |
| 1847 | dependencies = [ | 2080 | dependencies = [ |
| 1848 | "getrandom 0.2.16", | 2081 | "getrandom 0.2.16", |
| 1849 | "libredox", | 2082 | "libredox", |
| @@ -1880,6 +2113,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1880 | checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" | 2113 | checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" |
| 1881 | 2114 | ||
| 1882 | [[package]] | 2115 | [[package]] |
| 2116 | name = "reqwest" | ||
| 2117 | version = "0.12.22" | ||
| 2118 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2119 | checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531" | ||
| 2120 | dependencies = [ | ||
| 2121 | "base64", | ||
| 2122 | "bytes", | ||
| 2123 | "encoding_rs", | ||
| 2124 | "futures-core", | ||
| 2125 | "h2", | ||
| 2126 | "http 1.3.1", | ||
| 2127 | "http-body", | ||
| 2128 | "http-body-util", | ||
| 2129 | "hyper", | ||
| 2130 | "hyper-rustls", | ||
| 2131 | "hyper-tls", | ||
| 2132 | "hyper-util", | ||
| 2133 | "js-sys", | ||
| 2134 | "log", | ||
| 2135 | "mime", | ||
| 2136 | "native-tls", | ||
| 2137 | "percent-encoding", | ||
| 2138 | "pin-project-lite", | ||
| 2139 | "rustls-pki-types", | ||
| 2140 | "serde", | ||
| 2141 | "serde_json", | ||
| 2142 | "serde_urlencoded", | ||
| 2143 | "sync_wrapper", | ||
| 2144 | "tokio", | ||
| 2145 | "tokio-native-tls", | ||
| 2146 | "tower", | ||
| 2147 | "tower-http", | ||
| 2148 | "tower-service", | ||
| 2149 | "url", | ||
| 2150 | "wasm-bindgen", | ||
| 2151 | "wasm-bindgen-futures", | ||
| 2152 | "web-sys", | ||
| 2153 | ] | ||
| 2154 | |||
| 2155 | [[package]] | ||
| 1883 | name = "rexpect" | 2156 | name = "rexpect" |
| 1884 | version = "0.5.0" | 2157 | version = "0.5.0" |
| 1885 | source = "git+https://github.com/rust-cli/rexpect.git?rev=9eb61dd#9eb61dd444f25307639367ac7e1a49d5a1915d55" | 2158 | source = "git+https://github.com/rust-cli/rexpect.git?rev=9eb61dd#9eb61dd444f25307639367ac7e1a49d5a1915d55" |
| @@ -1998,6 +2271,15 @@ dependencies = [ | |||
| 1998 | ] | 2271 | ] |
| 1999 | 2272 | ||
| 2000 | [[package]] | 2273 | [[package]] |
| 2274 | name = "schannel" | ||
| 2275 | version = "0.1.27" | ||
| 2276 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2277 | checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" | ||
| 2278 | dependencies = [ | ||
| 2279 | "windows-sys 0.59.0", | ||
| 2280 | ] | ||
| 2281 | |||
| 2282 | [[package]] | ||
| 2001 | name = "scopeguard" | 2283 | name = "scopeguard" |
| 2002 | version = "1.2.0" | 2284 | version = "1.2.0" |
| 2003 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2285 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2042,6 +2324,29 @@ dependencies = [ | |||
| 2042 | ] | 2324 | ] |
| 2043 | 2325 | ||
| 2044 | [[package]] | 2326 | [[package]] |
| 2327 | name = "security-framework" | ||
| 2328 | version = "2.11.1" | ||
| 2329 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2330 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" | ||
| 2331 | dependencies = [ | ||
| 2332 | "bitflags", | ||
| 2333 | "core-foundation", | ||
| 2334 | "core-foundation-sys", | ||
| 2335 | "libc", | ||
| 2336 | "security-framework-sys", | ||
| 2337 | ] | ||
| 2338 | |||
| 2339 | [[package]] | ||
| 2340 | name = "security-framework-sys" | ||
| 2341 | version = "2.14.0" | ||
| 2342 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2343 | checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" | ||
| 2344 | dependencies = [ | ||
| 2345 | "core-foundation-sys", | ||
| 2346 | "libc", | ||
| 2347 | ] | ||
| 2348 | |||
| 2349 | [[package]] | ||
| 2045 | name = "semver" | 2350 | name = "semver" |
| 2046 | version = "1.0.26" | 2351 | version = "1.0.26" |
| 2047 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2352 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2080,6 +2385,18 @@ dependencies = [ | |||
| 2080 | ] | 2385 | ] |
| 2081 | 2386 | ||
| 2082 | [[package]] | 2387 | [[package]] |
| 2388 | name = "serde_urlencoded" | ||
| 2389 | version = "0.7.1" | ||
| 2390 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2391 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" | ||
| 2392 | dependencies = [ | ||
| 2393 | "form_urlencoded", | ||
| 2394 | "itoa", | ||
| 2395 | "ryu", | ||
| 2396 | "serde", | ||
| 2397 | ] | ||
| 2398 | |||
| 2399 | [[package]] | ||
| 2083 | name = "serde_yaml" | 2400 | name = "serde_yaml" |
| 2084 | version = "0.9.34+deprecated" | 2401 | version = "0.9.34+deprecated" |
| 2085 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2402 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2247,6 +2564,15 @@ dependencies = [ | |||
| 2247 | ] | 2564 | ] |
| 2248 | 2565 | ||
| 2249 | [[package]] | 2566 | [[package]] |
| 2567 | name = "sync_wrapper" | ||
| 2568 | version = "1.0.2" | ||
| 2569 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2570 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" | ||
| 2571 | dependencies = [ | ||
| 2572 | "futures-core", | ||
| 2573 | ] | ||
| 2574 | |||
| 2575 | [[package]] | ||
| 2250 | name = "synchronoise" | 2576 | name = "synchronoise" |
| 2251 | version = "1.0.1" | 2577 | version = "1.0.1" |
| 2252 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2578 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2267,6 +2593,27 @@ dependencies = [ | |||
| 2267 | ] | 2593 | ] |
| 2268 | 2594 | ||
| 2269 | [[package]] | 2595 | [[package]] |
| 2596 | name = "system-configuration" | ||
| 2597 | version = "0.6.1" | ||
| 2598 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2599 | checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" | ||
| 2600 | dependencies = [ | ||
| 2601 | "bitflags", | ||
| 2602 | "core-foundation", | ||
| 2603 | "system-configuration-sys", | ||
| 2604 | ] | ||
| 2605 | |||
| 2606 | [[package]] | ||
| 2607 | name = "system-configuration-sys" | ||
| 2608 | version = "0.6.0" | ||
| 2609 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2610 | checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" | ||
| 2611 | dependencies = [ | ||
| 2612 | "core-foundation-sys", | ||
| 2613 | "libc", | ||
| 2614 | ] | ||
| 2615 | |||
| 2616 | [[package]] | ||
| 2270 | name = "tempfile" | 2617 | name = "tempfile" |
| 2271 | version = "3.20.0" | 2618 | version = "3.20.0" |
| 2272 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2619 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2416,6 +2763,16 @@ dependencies = [ | |||
| 2416 | ] | 2763 | ] |
| 2417 | 2764 | ||
| 2418 | [[package]] | 2765 | [[package]] |
| 2766 | name = "tokio-native-tls" | ||
| 2767 | version = "0.3.1" | ||
| 2768 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2769 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" | ||
| 2770 | dependencies = [ | ||
| 2771 | "native-tls", | ||
| 2772 | "tokio", | ||
| 2773 | ] | ||
| 2774 | |||
| 2775 | [[package]] | ||
| 2419 | name = "tokio-rustls" | 2776 | name = "tokio-rustls" |
| 2420 | version = "0.26.2" | 2777 | version = "0.26.2" |
| 2421 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2778 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2466,6 +2823,64 @@ dependencies = [ | |||
| 2466 | ] | 2823 | ] |
| 2467 | 2824 | ||
| 2468 | [[package]] | 2825 | [[package]] |
| 2826 | name = "tokio-util" | ||
| 2827 | version = "0.7.15" | ||
| 2828 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2829 | checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" | ||
| 2830 | dependencies = [ | ||
| 2831 | "bytes", | ||
| 2832 | "futures-core", | ||
| 2833 | "futures-sink", | ||
| 2834 | "pin-project-lite", | ||
| 2835 | "tokio", | ||
| 2836 | ] | ||
| 2837 | |||
| 2838 | [[package]] | ||
| 2839 | name = "tower" | ||
| 2840 | version = "0.5.2" | ||
| 2841 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2842 | checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" | ||
| 2843 | dependencies = [ | ||
| 2844 | "futures-core", | ||
| 2845 | "futures-util", | ||
| 2846 | "pin-project-lite", | ||
| 2847 | "sync_wrapper", | ||
| 2848 | "tokio", | ||
| 2849 | "tower-layer", | ||
| 2850 | "tower-service", | ||
| 2851 | ] | ||
| 2852 | |||
| 2853 | [[package]] | ||
| 2854 | name = "tower-http" | ||
| 2855 | version = "0.6.6" | ||
| 2856 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2857 | checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" | ||
| 2858 | dependencies = [ | ||
| 2859 | "bitflags", | ||
| 2860 | "bytes", | ||
| 2861 | "futures-util", | ||
| 2862 | "http 1.3.1", | ||
| 2863 | "http-body", | ||
| 2864 | "iri-string", | ||
| 2865 | "pin-project-lite", | ||
| 2866 | "tower", | ||
| 2867 | "tower-layer", | ||
| 2868 | "tower-service", | ||
| 2869 | ] | ||
| 2870 | |||
| 2871 | [[package]] | ||
| 2872 | name = "tower-layer" | ||
| 2873 | version = "0.3.3" | ||
| 2874 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2875 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" | ||
| 2876 | |||
| 2877 | [[package]] | ||
| 2878 | name = "tower-service" | ||
| 2879 | version = "0.3.3" | ||
| 2880 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2881 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" | ||
| 2882 | |||
| 2883 | [[package]] | ||
| 2469 | name = "tracing" | 2884 | name = "tracing" |
| 2470 | version = "0.1.41" | 2885 | version = "0.1.41" |
| 2471 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2886 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2480,6 +2895,15 @@ name = "tracing-core" | |||
| 2480 | version = "0.1.34" | 2895 | version = "0.1.34" |
| 2481 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2896 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2482 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" | 2897 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" |
| 2898 | dependencies = [ | ||
| 2899 | "once_cell", | ||
| 2900 | ] | ||
| 2901 | |||
| 2902 | [[package]] | ||
| 2903 | name = "try-lock" | ||
| 2904 | version = "0.2.5" | ||
| 2905 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2906 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" | ||
| 2483 | 2907 | ||
| 2484 | [[package]] | 2908 | [[package]] |
| 2485 | name = "tungstenite" | 2909 | name = "tungstenite" |
| @@ -2658,6 +3082,15 @@ dependencies = [ | |||
| 2658 | ] | 3082 | ] |
| 2659 | 3083 | ||
| 2660 | [[package]] | 3084 | [[package]] |
| 3085 | name = "want" | ||
| 3086 | version = "0.3.1" | ||
| 3087 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3088 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" | ||
| 3089 | dependencies = [ | ||
| 3090 | "try-lock", | ||
| 3091 | ] | ||
| 3092 | |||
| 3093 | [[package]] | ||
| 2661 | name = "wasi" | 3094 | name = "wasi" |
| 2662 | version = "0.11.1+wasi-snapshot-preview1" | 3095 | version = "0.11.1+wasi-snapshot-preview1" |
| 2663 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3096 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -2810,6 +3243,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 2810 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" | 3243 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" |
| 2811 | 3244 | ||
| 2812 | [[package]] | 3245 | [[package]] |
| 3246 | name = "windows-registry" | ||
| 3247 | version = "0.5.3" | ||
| 3248 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3249 | checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" | ||
| 3250 | dependencies = [ | ||
| 3251 | "windows-link", | ||
| 3252 | "windows-result", | ||
| 3253 | "windows-strings", | ||
| 3254 | ] | ||
| 3255 | |||
| 3256 | [[package]] | ||
| 3257 | name = "windows-result" | ||
| 3258 | version = "0.3.4" | ||
| 3259 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3260 | checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" | ||
| 3261 | dependencies = [ | ||
| 3262 | "windows-link", | ||
| 3263 | ] | ||
| 3264 | |||
| 3265 | [[package]] | ||
| 3266 | name = "windows-strings" | ||
| 3267 | version = "0.4.2" | ||
| 3268 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3269 | checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" | ||
| 3270 | dependencies = [ | ||
| 3271 | "windows-link", | ||
| 3272 | ] | ||
| 3273 | |||
| 3274 | [[package]] | ||
| 2813 | name = "windows-sys" | 3275 | name = "windows-sys" |
| 2814 | version = "0.52.0" | 3276 | version = "0.52.0" |
| 2815 | source = "registry+https://github.com/rust-lang/crates.io-index" | 3277 | source = "registry+https://github.com/rust-lang/crates.io-index" |