voidcrawl 0.1.9__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/Cargo.lock +262 -211
  2. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/PKG-INFO +3 -5
  3. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/README.md +0 -3
  4. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/Cargo.toml +3 -2
  5. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/src/error.rs +3 -3
  6. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/src/lib.rs +6 -5
  7. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/src/page.rs +191 -61
  8. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/src/pool.rs +183 -65
  9. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/src/session.rs +78 -22
  10. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/tests/integration.rs +35 -27
  11. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/pyo3_bindings/Cargo.toml +3 -3
  12. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/pyo3_bindings/src/lib.rs +322 -265
  13. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/pyproject.toml +23 -10
  14. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/__init__.py +236 -12
  15. voidcrawl-0.2.1/voidcrawl/__init__.pyi +166 -0
  16. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/_ext.pyi +117 -177
  17. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/__init__.py +11 -12
  18. voidcrawl-0.2.1/voidcrawl/actions/__init__.pyi +135 -0
  19. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/_base.py +14 -8
  20. voidcrawl-0.2.1/voidcrawl/actions/_base.pyi +59 -0
  21. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/_flow.py +16 -3
  22. voidcrawl-0.2.1/voidcrawl/actions/_flow.pyi +32 -0
  23. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/_protocol.py +2 -2
  24. voidcrawl-0.2.1/voidcrawl/actions/_protocol.pyi +51 -0
  25. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/builtin/__init__.py +17 -15
  26. voidcrawl-0.2.1/voidcrawl/actions/builtin/__init__.pyi +103 -0
  27. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/builtin/click.py +2 -2
  28. voidcrawl-0.2.1/voidcrawl/actions/builtin/click.pyi +56 -0
  29. voidcrawl-0.2.1/voidcrawl/actions/builtin/dom.py +178 -0
  30. voidcrawl-0.2.1/voidcrawl/actions/builtin/dom.pyi +91 -0
  31. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/builtin/hover.py +2 -2
  32. voidcrawl-0.2.1/voidcrawl/actions/builtin/hover.pyi +24 -0
  33. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/builtin/input.py +2 -2
  34. voidcrawl-0.2.1/voidcrawl/actions/builtin/input.pyi +39 -0
  35. voidcrawl-0.2.1/voidcrawl/actions/builtin/network.py +68 -0
  36. voidcrawl-0.2.1/voidcrawl/actions/builtin/network.pyi +13 -0
  37. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/builtin/scroll.py +14 -2
  38. voidcrawl-0.2.1/voidcrawl/actions/builtin/scroll.pyi +69 -0
  39. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/builtin/wait.py +1 -1
  40. voidcrawl-0.2.1/voidcrawl/actions/builtin/wait.pyi +25 -0
  41. voidcrawl-0.2.1/voidcrawl/cli.py +291 -0
  42. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/debug.py +183 -76
  43. voidcrawl-0.2.1/voidcrawl/debug.pyi +45 -0
  44. voidcrawl-0.2.1/voidcrawl/py.typed +0 -0
  45. voidcrawl-0.2.1/voidcrawl/scale.py +643 -0
  46. voidcrawl-0.2.1/voidcrawl/scale.pyi +82 -0
  47. voidcrawl-0.2.1/voidcrawl/schema.py +240 -0
  48. voidcrawl-0.2.1/voidcrawl/schema.pyi +75 -0
  49. voidcrawl-0.1.9/void_crawl/actions/builtin/dom.py +0 -75
  50. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/Cargo.toml +0 -0
  51. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/LICENSE.md +0 -0
  52. {voidcrawl-0.1.9 → voidcrawl-0.2.1}/crates/core/src/stealth.rs +0 -0
  53. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/js/click_at.js +0 -0
  54. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/js/hover.js +0 -0
  55. {voidcrawl-0.1.9/void_crawl → voidcrawl-0.2.1/voidcrawl}/actions/js/wait_for_selector.js +0 -0
@@ -84,16 +84,16 @@ dependencies = [
84
84
  ]
85
85
 
86
86
  [[package]]
87
- name = "cfg-if"
88
- version = "1.0.4"
87
+ name = "cesu8"
88
+ version = "1.1.0"
89
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
90
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
91
91
 
92
92
  [[package]]
93
- name = "cfg_aliases"
94
- version = "0.2.1"
93
+ name = "cfg-if"
94
+ version = "1.0.4"
95
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
96
- checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
96
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
97
97
 
98
98
  [[package]]
99
99
  name = "chromiumoxide"
@@ -110,10 +110,10 @@ dependencies = [
110
110
  "futures",
111
111
  "futures-timer",
112
112
  "pin-project-lite",
113
- "reqwest 0.13.2",
113
+ "reqwest",
114
114
  "serde",
115
115
  "serde_json",
116
- "thiserror",
116
+ "thiserror 2.0.18",
117
117
  "tokio",
118
118
  "tracing",
119
119
  "url",
@@ -159,6 +159,32 @@ dependencies = [
159
159
  "serde_json",
160
160
  ]
161
161
 
162
+ [[package]]
163
+ name = "combine"
164
+ version = "4.6.7"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
167
+ dependencies = [
168
+ "bytes",
169
+ "memchr",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "core-foundation"
174
+ version = "0.10.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
177
+ dependencies = [
178
+ "core-foundation-sys",
179
+ "libc",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "core-foundation-sys"
184
+ version = "0.8.7"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
187
+
162
188
  [[package]]
163
189
  name = "cpufeatures"
164
190
  version = "0.2.17"
@@ -235,9 +261,9 @@ dependencies = [
235
261
 
236
262
  [[package]]
237
263
  name = "fastrand"
238
- version = "2.3.0"
264
+ version = "2.4.0"
239
265
  source = "registry+https://github.com/rust-lang/crates.io-index"
240
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
266
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
241
267
 
242
268
  [[package]]
243
269
  name = "find-msvc-tools"
@@ -377,10 +403,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
377
403
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
378
404
  dependencies = [
379
405
  "cfg-if",
380
- "js-sys",
381
406
  "libc",
382
407
  "wasi",
383
- "wasm-bindgen",
384
408
  ]
385
409
 
386
410
  [[package]]
@@ -390,11 +414,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
390
414
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
391
415
  dependencies = [
392
416
  "cfg-if",
393
- "js-sys",
394
417
  "libc",
395
418
  "r-efi 5.3.0",
396
419
  "wasip2",
397
- "wasm-bindgen",
398
420
  ]
399
421
 
400
422
  [[package]]
@@ -504,7 +526,6 @@ dependencies = [
504
526
  "tokio",
505
527
  "tokio-rustls",
506
528
  "tower-service",
507
- "webpki-roots",
508
529
  ]
509
530
 
510
531
  [[package]]
@@ -673,6 +694,50 @@ version = "1.0.18"
673
694
  source = "registry+https://github.com/rust-lang/crates.io-index"
674
695
  checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
675
696
 
697
+ [[package]]
698
+ name = "jni"
699
+ version = "0.21.1"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
702
+ dependencies = [
703
+ "cesu8",
704
+ "cfg-if",
705
+ "combine",
706
+ "jni-sys 0.3.1",
707
+ "log",
708
+ "thiserror 1.0.69",
709
+ "walkdir",
710
+ "windows-sys 0.45.0",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "jni-sys"
715
+ version = "0.3.1"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
718
+ dependencies = [
719
+ "jni-sys 0.4.1",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "jni-sys"
724
+ version = "0.4.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
727
+ dependencies = [
728
+ "jni-sys-macros",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "jni-sys-macros"
733
+ version = "0.4.1"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
736
+ dependencies = [
737
+ "quote",
738
+ "syn",
739
+ ]
740
+
676
741
  [[package]]
677
742
  name = "js-sys"
678
743
  version = "0.3.94"
@@ -724,12 +789,6 @@ version = "0.4.29"
724
789
  source = "registry+https://github.com/rust-lang/crates.io-index"
725
790
  checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
726
791
 
727
- [[package]]
728
- name = "lru-slab"
729
- version = "0.1.2"
730
- source = "registry+https://github.com/rust-lang/crates.io-index"
731
- checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
732
-
733
792
  [[package]]
734
793
  name = "memchr"
735
794
  version = "2.8.0"
@@ -753,6 +812,12 @@ version = "1.21.4"
753
812
  source = "registry+https://github.com/rust-lang/crates.io-index"
754
813
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
755
814
 
815
+ [[package]]
816
+ name = "openssl-probe"
817
+ version = "0.2.1"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
820
+
756
821
  [[package]]
757
822
  name = "parking_lot"
758
823
  version = "0.12.5"
@@ -865,6 +930,7 @@ version = "0.28.3"
865
930
  source = "registry+https://github.com/rust-lang/crates.io-index"
866
931
  checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
867
932
  dependencies = [
933
+ "python3-dll-a",
868
934
  "target-lexicon",
869
935
  ]
870
936
 
@@ -904,58 +970,12 @@ dependencies = [
904
970
  ]
905
971
 
906
972
  [[package]]
907
- name = "quinn"
908
- version = "0.11.9"
973
+ name = "python3-dll-a"
974
+ version = "0.2.14"
909
975
  source = "registry+https://github.com/rust-lang/crates.io-index"
910
- checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
976
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
911
977
  dependencies = [
912
- "bytes",
913
- "cfg_aliases",
914
- "pin-project-lite",
915
- "quinn-proto",
916
- "quinn-udp",
917
- "rustc-hash",
918
- "rustls",
919
- "socket2",
920
- "thiserror",
921
- "tokio",
922
- "tracing",
923
- "web-time",
924
- ]
925
-
926
- [[package]]
927
- name = "quinn-proto"
928
- version = "0.11.14"
929
- source = "registry+https://github.com/rust-lang/crates.io-index"
930
- checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
931
- dependencies = [
932
- "bytes",
933
- "getrandom 0.3.4",
934
- "lru-slab",
935
- "rand",
936
- "ring",
937
- "rustc-hash",
938
- "rustls",
939
- "rustls-pki-types",
940
- "slab",
941
- "thiserror",
942
- "tinyvec",
943
- "tracing",
944
- "web-time",
945
- ]
946
-
947
- [[package]]
948
- name = "quinn-udp"
949
- version = "0.5.14"
950
- source = "registry+https://github.com/rust-lang/crates.io-index"
951
- checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
952
- dependencies = [
953
- "cfg_aliases",
954
- "libc",
955
- "once_cell",
956
- "socket2",
957
- "tracing",
958
- "windows-sys 0.60.2",
978
+ "cc",
959
979
  ]
960
980
 
961
981
  [[package]]
@@ -1048,9 +1068,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1048
1068
 
1049
1069
  [[package]]
1050
1070
  name = "reqwest"
1051
- version = "0.12.28"
1071
+ version = "0.13.2"
1052
1072
  source = "registry+https://github.com/rust-lang/crates.io-index"
1053
- checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1073
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
1054
1074
  dependencies = [
1055
1075
  "base64",
1056
1076
  "bytes",
@@ -1065,12 +1085,11 @@ dependencies = [
1065
1085
  "log",
1066
1086
  "percent-encoding",
1067
1087
  "pin-project-lite",
1068
- "quinn",
1069
1088
  "rustls",
1070
1089
  "rustls-pki-types",
1090
+ "rustls-platform-verifier",
1071
1091
  "serde",
1072
1092
  "serde_json",
1073
- "serde_urlencoded",
1074
1093
  "sync_wrapper",
1075
1094
  "tokio",
1076
1095
  "tokio-rustls",
@@ -1081,36 +1100,6 @@ dependencies = [
1081
1100
  "wasm-bindgen",
1082
1101
  "wasm-bindgen-futures",
1083
1102
  "web-sys",
1084
- "webpki-roots",
1085
- ]
1086
-
1087
- [[package]]
1088
- name = "reqwest"
1089
- version = "0.13.2"
1090
- source = "registry+https://github.com/rust-lang/crates.io-index"
1091
- checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
1092
- dependencies = [
1093
- "base64",
1094
- "bytes",
1095
- "futures-core",
1096
- "http",
1097
- "http-body",
1098
- "http-body-util",
1099
- "hyper",
1100
- "hyper-util",
1101
- "js-sys",
1102
- "log",
1103
- "percent-encoding",
1104
- "pin-project-lite",
1105
- "sync_wrapper",
1106
- "tokio",
1107
- "tower",
1108
- "tower-http",
1109
- "tower-service",
1110
- "url",
1111
- "wasm-bindgen",
1112
- "wasm-bindgen-futures",
1113
- "web-sys",
1114
1103
  ]
1115
1104
 
1116
1105
  [[package]]
@@ -1127,12 +1116,6 @@ dependencies = [
1127
1116
  "windows-sys 0.52.0",
1128
1117
  ]
1129
1118
 
1130
- [[package]]
1131
- name = "rustc-hash"
1132
- version = "2.1.2"
1133
- source = "registry+https://github.com/rust-lang/crates.io-index"
1134
- checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1135
-
1136
1119
  [[package]]
1137
1120
  name = "rustix"
1138
1121
  version = "1.1.4"
@@ -1160,16 +1143,54 @@ dependencies = [
1160
1143
  "zeroize",
1161
1144
  ]
1162
1145
 
1146
+ [[package]]
1147
+ name = "rustls-native-certs"
1148
+ version = "0.8.3"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
1151
+ dependencies = [
1152
+ "openssl-probe",
1153
+ "rustls-pki-types",
1154
+ "schannel",
1155
+ "security-framework",
1156
+ ]
1157
+
1163
1158
  [[package]]
1164
1159
  name = "rustls-pki-types"
1165
1160
  version = "1.14.0"
1166
1161
  source = "registry+https://github.com/rust-lang/crates.io-index"
1167
1162
  checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1168
1163
  dependencies = [
1169
- "web-time",
1170
1164
  "zeroize",
1171
1165
  ]
1172
1166
 
1167
+ [[package]]
1168
+ name = "rustls-platform-verifier"
1169
+ version = "0.6.2"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
1172
+ dependencies = [
1173
+ "core-foundation",
1174
+ "core-foundation-sys",
1175
+ "jni",
1176
+ "log",
1177
+ "once_cell",
1178
+ "rustls",
1179
+ "rustls-native-certs",
1180
+ "rustls-platform-verifier-android",
1181
+ "rustls-webpki",
1182
+ "security-framework",
1183
+ "security-framework-sys",
1184
+ "webpki-root-certs",
1185
+ "windows-sys 0.61.2",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "rustls-platform-verifier-android"
1190
+ version = "0.1.1"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1193
+
1173
1194
  [[package]]
1174
1195
  name = "rustls-webpki"
1175
1196
  version = "0.103.10"
@@ -1188,10 +1209,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
1209
  checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1189
1210
 
1190
1211
  [[package]]
1191
- name = "ryu"
1192
- version = "1.0.23"
1212
+ name = "same-file"
1213
+ version = "1.0.6"
1193
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1194
- checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1215
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1216
+ dependencies = [
1217
+ "winapi-util",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "schannel"
1222
+ version = "0.1.29"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1225
+ dependencies = [
1226
+ "windows-sys 0.61.2",
1227
+ ]
1195
1228
 
1196
1229
  [[package]]
1197
1230
  name = "scopeguard"
@@ -1199,6 +1232,29 @@ version = "1.2.0"
1199
1232
  source = "registry+https://github.com/rust-lang/crates.io-index"
1200
1233
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1201
1234
 
1235
+ [[package]]
1236
+ name = "security-framework"
1237
+ version = "3.7.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1240
+ dependencies = [
1241
+ "bitflags",
1242
+ "core-foundation",
1243
+ "core-foundation-sys",
1244
+ "libc",
1245
+ "security-framework-sys",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "security-framework-sys"
1250
+ version = "2.17.0"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1253
+ dependencies = [
1254
+ "core-foundation-sys",
1255
+ "libc",
1256
+ ]
1257
+
1202
1258
  [[package]]
1203
1259
  name = "semver"
1204
1260
  version = "1.0.28"
@@ -1248,18 +1304,6 @@ dependencies = [
1248
1304
  "zmij",
1249
1305
  ]
1250
1306
 
1251
- [[package]]
1252
- name = "serde_urlencoded"
1253
- version = "0.7.1"
1254
- source = "registry+https://github.com/rust-lang/crates.io-index"
1255
- checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1256
- dependencies = [
1257
- "form_urlencoded",
1258
- "itoa",
1259
- "ryu",
1260
- "serde",
1261
- ]
1262
-
1263
1307
  [[package]]
1264
1308
  name = "sha1"
1265
1309
  version = "0.10.6"
@@ -1371,13 +1415,33 @@ dependencies = [
1371
1415
  "windows-sys 0.61.2",
1372
1416
  ]
1373
1417
 
1418
+ [[package]]
1419
+ name = "thiserror"
1420
+ version = "1.0.69"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1423
+ dependencies = [
1424
+ "thiserror-impl 1.0.69",
1425
+ ]
1426
+
1374
1427
  [[package]]
1375
1428
  name = "thiserror"
1376
1429
  version = "2.0.18"
1377
1430
  source = "registry+https://github.com/rust-lang/crates.io-index"
1378
1431
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1379
1432
  dependencies = [
1380
- "thiserror-impl",
1433
+ "thiserror-impl 2.0.18",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "thiserror-impl"
1438
+ version = "1.0.69"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1441
+ dependencies = [
1442
+ "proc-macro2",
1443
+ "quote",
1444
+ "syn",
1381
1445
  ]
1382
1446
 
1383
1447
  [[package]]
@@ -1401,21 +1465,6 @@ dependencies = [
1401
1465
  "zerovec",
1402
1466
  ]
1403
1467
 
1404
- [[package]]
1405
- name = "tinyvec"
1406
- version = "1.11.0"
1407
- source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1409
- dependencies = [
1410
- "tinyvec_macros",
1411
- ]
1412
-
1413
- [[package]]
1414
- name = "tinyvec_macros"
1415
- version = "0.1.1"
1416
- source = "registry+https://github.com/rust-lang/crates.io-index"
1417
- checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1418
-
1419
1468
  [[package]]
1420
1469
  name = "tokio"
1421
1470
  version = "1.51.0"
@@ -1549,7 +1598,7 @@ dependencies = [
1549
1598
  "log",
1550
1599
  "rand",
1551
1600
  "sha1",
1552
- "thiserror",
1601
+ "thiserror 2.0.18",
1553
1602
  "utf-8",
1554
1603
  ]
1555
1604
 
@@ -1609,7 +1658,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1609
1658
 
1610
1659
  [[package]]
1611
1660
  name = "void_crawl"
1612
- version = "0.1.9"
1661
+ version = "0.2.1"
1613
1662
  dependencies = [
1614
1663
  "futures",
1615
1664
  "pyo3",
@@ -1621,18 +1670,29 @@ dependencies = [
1621
1670
 
1622
1671
  [[package]]
1623
1672
  name = "void_crawl_core"
1624
- version = "0.1.9"
1673
+ version = "0.2.1"
1625
1674
  dependencies = [
1626
1675
  "chromiumoxide",
1627
1676
  "futures",
1628
- "reqwest 0.12.28",
1677
+ "reqwest",
1678
+ "rustls",
1629
1679
  "serde",
1630
1680
  "serde_json",
1631
1681
  "tempfile",
1632
- "thiserror",
1682
+ "thiserror 2.0.18",
1633
1683
  "tokio",
1634
1684
  ]
1635
1685
 
1686
+ [[package]]
1687
+ name = "walkdir"
1688
+ version = "2.5.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1691
+ dependencies = [
1692
+ "same-file",
1693
+ "winapi-util",
1694
+ ]
1695
+
1636
1696
  [[package]]
1637
1697
  name = "want"
1638
1698
  version = "0.3.1"
@@ -1766,20 +1826,10 @@ dependencies = [
1766
1826
  ]
1767
1827
 
1768
1828
  [[package]]
1769
- name = "web-time"
1770
- version = "1.1.0"
1771
- source = "registry+https://github.com/rust-lang/crates.io-index"
1772
- checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1773
- dependencies = [
1774
- "js-sys",
1775
- "wasm-bindgen",
1776
- ]
1777
-
1778
- [[package]]
1779
- name = "webpki-roots"
1829
+ name = "webpki-root-certs"
1780
1830
  version = "1.0.6"
1781
1831
  source = "registry+https://github.com/rust-lang/crates.io-index"
1782
- checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
1832
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
1783
1833
  dependencies = [
1784
1834
  "rustls-pki-types",
1785
1835
  ]
@@ -1793,6 +1843,15 @@ dependencies = [
1793
1843
  "libc",
1794
1844
  ]
1795
1845
 
1846
+ [[package]]
1847
+ name = "winapi-util"
1848
+ version = "0.1.11"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1851
+ dependencies = [
1852
+ "windows-sys 0.61.2",
1853
+ ]
1854
+
1796
1855
  [[package]]
1797
1856
  name = "windows-link"
1798
1857
  version = "0.2.1"
@@ -1830,20 +1889,20 @@ dependencies = [
1830
1889
 
1831
1890
  [[package]]
1832
1891
  name = "windows-sys"
1833
- version = "0.52.0"
1892
+ version = "0.45.0"
1834
1893
  source = "registry+https://github.com/rust-lang/crates.io-index"
1835
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1894
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
1836
1895
  dependencies = [
1837
- "windows-targets 0.52.6",
1896
+ "windows-targets 0.42.2",
1838
1897
  ]
1839
1898
 
1840
1899
  [[package]]
1841
1900
  name = "windows-sys"
1842
- version = "0.60.2"
1901
+ version = "0.52.0"
1843
1902
  source = "registry+https://github.com/rust-lang/crates.io-index"
1844
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1903
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1845
1904
  dependencies = [
1846
- "windows-targets 0.53.5",
1905
+ "windows-targets 0.52.6",
1847
1906
  ]
1848
1907
 
1849
1908
  [[package]]
@@ -1855,6 +1914,21 @@ dependencies = [
1855
1914
  "windows-link",
1856
1915
  ]
1857
1916
 
1917
+ [[package]]
1918
+ name = "windows-targets"
1919
+ version = "0.42.2"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
1922
+ dependencies = [
1923
+ "windows_aarch64_gnullvm 0.42.2",
1924
+ "windows_aarch64_msvc 0.42.2",
1925
+ "windows_i686_gnu 0.42.2",
1926
+ "windows_i686_msvc 0.42.2",
1927
+ "windows_x86_64_gnu 0.42.2",
1928
+ "windows_x86_64_gnullvm 0.42.2",
1929
+ "windows_x86_64_msvc 0.42.2",
1930
+ ]
1931
+
1858
1932
  [[package]]
1859
1933
  name = "windows-targets"
1860
1934
  version = "0.52.6"
@@ -1864,7 +1938,7 @@ dependencies = [
1864
1938
  "windows_aarch64_gnullvm 0.52.6",
1865
1939
  "windows_aarch64_msvc 0.52.6",
1866
1940
  "windows_i686_gnu 0.52.6",
1867
- "windows_i686_gnullvm 0.52.6",
1941
+ "windows_i686_gnullvm",
1868
1942
  "windows_i686_msvc 0.52.6",
1869
1943
  "windows_x86_64_gnu 0.52.6",
1870
1944
  "windows_x86_64_gnullvm 0.52.6",
@@ -1872,21 +1946,10 @@ dependencies = [
1872
1946
  ]
1873
1947
 
1874
1948
  [[package]]
1875
- name = "windows-targets"
1876
- version = "0.53.5"
1949
+ name = "windows_aarch64_gnullvm"
1950
+ version = "0.42.2"
1877
1951
  source = "registry+https://github.com/rust-lang/crates.io-index"
1878
- checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1879
- dependencies = [
1880
- "windows-link",
1881
- "windows_aarch64_gnullvm 0.53.1",
1882
- "windows_aarch64_msvc 0.53.1",
1883
- "windows_i686_gnu 0.53.1",
1884
- "windows_i686_gnullvm 0.53.1",
1885
- "windows_i686_msvc 0.53.1",
1886
- "windows_x86_64_gnu 0.53.1",
1887
- "windows_x86_64_gnullvm 0.53.1",
1888
- "windows_x86_64_msvc 0.53.1",
1889
- ]
1952
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
1890
1953
 
1891
1954
  [[package]]
1892
1955
  name = "windows_aarch64_gnullvm"
@@ -1895,10 +1958,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
1958
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1896
1959
 
1897
1960
  [[package]]
1898
- name = "windows_aarch64_gnullvm"
1899
- version = "0.53.1"
1961
+ name = "windows_aarch64_msvc"
1962
+ version = "0.42.2"
1900
1963
  source = "registry+https://github.com/rust-lang/crates.io-index"
1901
- checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1964
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
1902
1965
 
1903
1966
  [[package]]
1904
1967
  name = "windows_aarch64_msvc"
@@ -1907,10 +1970,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
1970
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1908
1971
 
1909
1972
  [[package]]
1910
- name = "windows_aarch64_msvc"
1911
- version = "0.53.1"
1973
+ name = "windows_i686_gnu"
1974
+ version = "0.42.2"
1912
1975
  source = "registry+https://github.com/rust-lang/crates.io-index"
1913
- checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1976
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
1914
1977
 
1915
1978
  [[package]]
1916
1979
  name = "windows_i686_gnu"
@@ -1918,12 +1981,6 @@ version = "0.52.6"
1918
1981
  source = "registry+https://github.com/rust-lang/crates.io-index"
1919
1982
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1920
1983
 
1921
- [[package]]
1922
- name = "windows_i686_gnu"
1923
- version = "0.53.1"
1924
- source = "registry+https://github.com/rust-lang/crates.io-index"
1925
- checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1926
-
1927
1984
  [[package]]
1928
1985
  name = "windows_i686_gnullvm"
1929
1986
  version = "0.52.6"
@@ -1931,10 +1988,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
1988
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1932
1989
 
1933
1990
  [[package]]
1934
- name = "windows_i686_gnullvm"
1935
- version = "0.53.1"
1991
+ name = "windows_i686_msvc"
1992
+ version = "0.42.2"
1936
1993
  source = "registry+https://github.com/rust-lang/crates.io-index"
1937
- checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1994
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
1938
1995
 
1939
1996
  [[package]]
1940
1997
  name = "windows_i686_msvc"
@@ -1943,10 +2000,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
2000
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1944
2001
 
1945
2002
  [[package]]
1946
- name = "windows_i686_msvc"
1947
- version = "0.53.1"
2003
+ name = "windows_x86_64_gnu"
2004
+ version = "0.42.2"
1948
2005
  source = "registry+https://github.com/rust-lang/crates.io-index"
1949
- checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2006
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
1950
2007
 
1951
2008
  [[package]]
1952
2009
  name = "windows_x86_64_gnu"
@@ -1955,10 +2012,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
2012
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1956
2013
 
1957
2014
  [[package]]
1958
- name = "windows_x86_64_gnu"
1959
- version = "0.53.1"
2015
+ name = "windows_x86_64_gnullvm"
2016
+ version = "0.42.2"
1960
2017
  source = "registry+https://github.com/rust-lang/crates.io-index"
1961
- checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2018
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
1962
2019
 
1963
2020
  [[package]]
1964
2021
  name = "windows_x86_64_gnullvm"
@@ -1967,10 +2024,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
2024
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1968
2025
 
1969
2026
  [[package]]
1970
- name = "windows_x86_64_gnullvm"
1971
- version = "0.53.1"
2027
+ name = "windows_x86_64_msvc"
2028
+ version = "0.42.2"
1972
2029
  source = "registry+https://github.com/rust-lang/crates.io-index"
1973
- checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2030
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
1974
2031
 
1975
2032
  [[package]]
1976
2033
  name = "windows_x86_64_msvc"
@@ -1978,12 +2035,6 @@ version = "0.52.6"
1978
2035
  source = "registry+https://github.com/rust-lang/crates.io-index"
1979
2036
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1980
2037
 
1981
- [[package]]
1982
- name = "windows_x86_64_msvc"
1983
- version = "0.53.1"
1984
- source = "registry+https://github.com/rust-lang/crates.io-index"
1985
- checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1986
-
1987
2038
  [[package]]
1988
2039
  name = "wit-bindgen"
1989
2040
  version = "0.51.0"