voidcrawl 0.4.1__tar.gz → 0.4.2__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 (147) hide show
  1. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/Cargo.lock +27 -26
  2. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/PKG-INFO +2 -3
  3. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/Cargo.toml +1 -1
  4. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/pyo3_bindings/Cargo.toml +2 -2
  5. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/pyproject.toml +6 -4
  6. voidcrawl-0.4.2/vendor/chromiumoxide/.cargo-ok +1 -0
  7. voidcrawl-0.4.2/vendor/chromiumoxide/.cargo_vcs_info.json +6 -0
  8. voidcrawl-0.4.2/vendor/chromiumoxide/.github/pull_request_template.md +13 -0
  9. voidcrawl-0.4.2/vendor/chromiumoxide/.github/workflows/ci.yml +87 -0
  10. voidcrawl-0.4.2/vendor/chromiumoxide/.github/workflows/publish.yml +57 -0
  11. voidcrawl-0.4.2/vendor/chromiumoxide/.gitignore +5 -0
  12. voidcrawl-0.4.2/vendor/chromiumoxide/CHANGELOG.md +88 -0
  13. voidcrawl-0.4.2/vendor/chromiumoxide/Cargo.toml +221 -0
  14. voidcrawl-0.4.2/vendor/chromiumoxide/Cargo.toml.orig +80 -0
  15. voidcrawl-0.4.2/vendor/chromiumoxide/LICENSE-APACHE +201 -0
  16. voidcrawl-0.4.2/vendor/chromiumoxide/LICENSE-MIT +21 -0
  17. voidcrawl-0.4.2/vendor/chromiumoxide/README.md +136 -0
  18. voidcrawl-0.4.2/vendor/chromiumoxide/examples/add-init-script.rs +39 -0
  19. voidcrawl-0.4.2/vendor/chromiumoxide/examples/block-navigation.rs +223 -0
  20. voidcrawl-0.4.2/vendor/chromiumoxide/examples/console-logs.rs +53 -0
  21. voidcrawl-0.4.2/vendor/chromiumoxide/examples/evaluate-on-new-document.rs +39 -0
  22. voidcrawl-0.4.2/vendor/chromiumoxide/examples/evaluate.rs +83 -0
  23. voidcrawl-0.4.2/vendor/chromiumoxide/examples/fetcher.rs +48 -0
  24. voidcrawl-0.4.2/vendor/chromiumoxide/examples/httpfuture.rs +36 -0
  25. voidcrawl-0.4.2/vendor/chromiumoxide/examples/iframe-workaround.rs +35 -0
  26. voidcrawl-0.4.2/vendor/chromiumoxide/examples/incognito.rs +26 -0
  27. voidcrawl-0.4.2/vendor/chromiumoxide/examples/interception.rs +85 -0
  28. voidcrawl-0.4.2/vendor/chromiumoxide/examples/js-binding-listener.rs +51 -0
  29. voidcrawl-0.4.2/vendor/chromiumoxide/examples/pdf.rs +24 -0
  30. voidcrawl-0.4.2/vendor/chromiumoxide/examples/screenshot.rs +39 -0
  31. voidcrawl-0.4.2/vendor/chromiumoxide/examples/simple-google.rs +29 -0
  32. voidcrawl-0.4.2/vendor/chromiumoxide/examples/storage-cookie.rs +57 -0
  33. voidcrawl-0.4.2/vendor/chromiumoxide/examples/wiki.rs +34 -0
  34. voidcrawl-0.4.2/vendor/chromiumoxide/src/async_process.rs +140 -0
  35. voidcrawl-0.4.2/vendor/chromiumoxide/src/auth.rs +6 -0
  36. voidcrawl-0.4.2/vendor/chromiumoxide/src/browser/argument.rs +134 -0
  37. voidcrawl-0.4.2/vendor/chromiumoxide/src/browser/config.rs +488 -0
  38. voidcrawl-0.4.2/vendor/chromiumoxide/src/browser/mod.rs +581 -0
  39. voidcrawl-0.4.2/vendor/chromiumoxide/src/cmd.rs +167 -0
  40. voidcrawl-0.4.2/vendor/chromiumoxide/src/conn.rs +160 -0
  41. voidcrawl-0.4.2/vendor/chromiumoxide/src/detection.rs +163 -0
  42. voidcrawl-0.4.2/vendor/chromiumoxide/src/element.rs +504 -0
  43. voidcrawl-0.4.2/vendor/chromiumoxide/src/error.rs +156 -0
  44. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/browser.rs +34 -0
  45. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/commandfuture.rs +99 -0
  46. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/domworld.rs +70 -0
  47. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/emulation.rs +65 -0
  48. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/frame.rs +701 -0
  49. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/http.rs +58 -0
  50. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/httpfuture.rs +59 -0
  51. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/job.rs +39 -0
  52. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/mod.rs +766 -0
  53. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/network.rs +295 -0
  54. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/page.rs +465 -0
  55. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/session.rs +23 -0
  56. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/target.rs +800 -0
  57. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/target_message_future.rs +70 -0
  58. voidcrawl-0.4.2/vendor/chromiumoxide/src/handler/viewport.rs +22 -0
  59. voidcrawl-0.4.2/vendor/chromiumoxide/src/js.rs +70 -0
  60. voidcrawl-0.4.2/vendor/chromiumoxide/src/keys.rs +0 -0
  61. voidcrawl-0.4.2/vendor/chromiumoxide/src/layout.rs +297 -0
  62. voidcrawl-0.4.2/vendor/chromiumoxide/src/lib.rs +99 -0
  63. voidcrawl-0.4.2/vendor/chromiumoxide/src/listeners.rs +294 -0
  64. voidcrawl-0.4.2/vendor/chromiumoxide/src/page.rs +1517 -0
  65. voidcrawl-0.4.2/vendor/chromiumoxide/src/utils.rs +130 -0
  66. voidcrawl-0.4.2/vendor/chromiumoxide/tests/basic.rs +12 -0
  67. voidcrawl-0.4.2/vendor/chromiumoxide/tests/config.rs +19 -0
  68. voidcrawl-0.4.2/vendor/chromiumoxide/tests/lib.rs +45 -0
  69. voidcrawl-0.4.2/vendor/chromiumoxide/tests/page.rs +57 -0
  70. voidcrawl-0.4.2/vendor/chromiumoxide/tests/stealth/incolumitas.rs +70 -0
  71. voidcrawl-0.4.2/vendor/chromiumoxide/tests/stealth/mod.rs +2 -0
  72. voidcrawl-0.4.2/vendor/chromiumoxide/tests/stealth/rebrowser.rs +115 -0
  73. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/Cargo.toml +0 -0
  74. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/LICENSE.md +0 -0
  75. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/README.md +0 -0
  76. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/CORPUS.md +0 -0
  77. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/README.md +0 -0
  78. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/examples/download_and_scan.rs +0 -0
  79. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/examples/download_via_action.rs +0 -0
  80. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/antibot.rs +0 -0
  81. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/ax.rs +0 -0
  82. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/captcha.rs +0 -0
  83. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/challenge.rs +0 -0
  84. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/error.rs +0 -0
  85. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/input.rs +0 -0
  86. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/lease.rs +0 -0
  87. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/lib.rs +0 -0
  88. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/managed_profile.rs +0 -0
  89. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/page.rs +0 -0
  90. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/pool.rs +0 -0
  91. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/profile.rs +0 -0
  92. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/response.rs +0 -0
  93. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/scanner.rs +0 -0
  94. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/session.rs +0 -0
  95. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/src/stealth.rs +0 -0
  96. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/antibot_accuracy.rs +0 -0
  97. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/ax_tree.rs +0 -0
  98. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/captcha_capture.rs +0 -0
  99. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/captcha_runtime_loaded.rs +0 -0
  100. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/download.rs +0 -0
  101. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/emulation.rs +0 -0
  102. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/integration.rs +0 -0
  103. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/managed_profile_registry.rs +0 -0
  104. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/profile_lock.rs +0 -0
  105. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/scanner.rs +0 -0
  106. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/core/tests/stealth_ua.rs +0 -0
  107. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/crates/pyo3_bindings/src/lib.rs +0 -0
  108. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/__init__.py +0 -0
  109. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/__init__.pyi +0 -0
  110. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/_downloads.py +0 -0
  111. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/_ext.pyi +0 -0
  112. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/__init__.py +0 -0
  113. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/__init__.pyi +0 -0
  114. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/_base.py +0 -0
  115. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/_base.pyi +0 -0
  116. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/_flow.py +0 -0
  117. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/_flow.pyi +0 -0
  118. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/_protocol.py +0 -0
  119. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/_protocol.pyi +0 -0
  120. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/__init__.py +0 -0
  121. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/__init__.pyi +0 -0
  122. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/click.py +0 -0
  123. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/click.pyi +0 -0
  124. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/dom.py +0 -0
  125. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/dom.pyi +0 -0
  126. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/hover.py +0 -0
  127. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/hover.pyi +0 -0
  128. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/input.py +0 -0
  129. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/input.pyi +0 -0
  130. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/network.py +0 -0
  131. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/network.pyi +0 -0
  132. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/scroll.py +0 -0
  133. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/scroll.pyi +0 -0
  134. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/wait.py +0 -0
  135. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/builtin/wait.pyi +0 -0
  136. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/js/click_at.js +0 -0
  137. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/js/hover.js +0 -0
  138. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/actions/js/wait_for_selector.js +0 -0
  139. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/cli.py +0 -0
  140. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/debug.py +0 -0
  141. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/debug.pyi +0 -0
  142. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/profiles.py +0 -0
  143. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/py.typed +0 -0
  144. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/scale.py +0 -0
  145. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/scale.pyi +0 -0
  146. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/schema.py +0 -0
  147. {voidcrawl-0.4.1 → voidcrawl-0.4.2}/voidcrawl/schema.pyi +0 -0
@@ -122,7 +122,7 @@ checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
122
122
  dependencies = [
123
123
  "proc-macro2",
124
124
  "quote",
125
- "syn 3.0.2",
125
+ "syn 3.0.3",
126
126
  ]
127
127
 
128
128
  [[package]]
@@ -251,9 +251,9 @@ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
251
251
 
252
252
  [[package]]
253
253
  name = "cc"
254
- version = "1.3.0"
254
+ version = "1.4.0"
255
255
  source = "registry+https://github.com/rust-lang/crates.io-index"
256
- checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
256
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
257
257
  dependencies = [
258
258
  "find-msvc-tools",
259
259
  "shlex",
@@ -352,9 +352,9 @@ dependencies = [
352
352
 
353
353
  [[package]]
354
354
  name = "clap"
355
- version = "4.6.3"
355
+ version = "4.6.4"
356
356
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
- checksum = "0fb99565819980999fb7b4a1796046a5c949e6d4ff132cf5fadf5a641e20d776"
357
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
358
358
  dependencies = [
359
359
  "clap_builder",
360
360
  "clap_derive",
@@ -374,14 +374,14 @@ dependencies = [
374
374
 
375
375
  [[package]]
376
376
  name = "clap_derive"
377
- version = "4.6.3"
377
+ version = "4.6.4"
378
378
  source = "registry+https://github.com/rust-lang/crates.io-index"
379
- checksum = "32f2392eae7f16557a3d727ef3a12e57b2b2ca6f98566a5f4fb41ffe305df077"
379
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
380
380
  dependencies = [
381
381
  "heck",
382
382
  "proc-macro2",
383
383
  "quote",
384
- "syn 2.0.119",
384
+ "syn 3.0.3",
385
385
  ]
386
386
 
387
387
  [[package]]
@@ -713,9 +713,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
713
713
 
714
714
  [[package]]
715
715
  name = "either"
716
- version = "1.16.0"
716
+ version = "1.17.0"
717
717
  source = "registry+https://github.com/rust-lang/crates.io-index"
718
- checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
718
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
719
719
 
720
720
  [[package]]
721
721
  name = "embedded-io"
@@ -1425,9 +1425,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1425
1425
 
1426
1426
  [[package]]
1427
1427
  name = "libc"
1428
- version = "0.2.186"
1428
+ version = "0.2.189"
1429
1429
  source = "registry+https://github.com/rust-lang/crates.io-index"
1430
- checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1430
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1431
1431
 
1432
1432
  [[package]]
1433
1433
  name = "libm"
@@ -1890,14 +1890,14 @@ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
1890
1890
  dependencies = [
1891
1891
  "proc-macro2",
1892
1892
  "quote",
1893
- "syn 3.0.2",
1893
+ "syn 3.0.3",
1894
1894
  ]
1895
1895
 
1896
1896
  [[package]]
1897
1897
  name = "regalloc2"
1898
- version = "0.15.1"
1898
+ version = "0.15.2"
1899
1899
  source = "registry+https://github.com/rust-lang/crates.io-index"
1900
- checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
1900
+ checksum = "757712e8e61590d6d4f5d563483755538b5aa13467837a3b41cd9832509a7f85"
1901
1901
  dependencies = [
1902
1902
  "allocator-api2",
1903
1903
  "bumpalo",
@@ -2095,9 +2095,9 @@ dependencies = [
2095
2095
 
2096
2096
  [[package]]
2097
2097
  name = "rustls-pki-types"
2098
- version = "1.15.0"
2098
+ version = "1.15.1"
2099
2099
  source = "registry+https://github.com/rust-lang/crates.io-index"
2100
- checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2100
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
2101
2101
  dependencies = [
2102
2102
  "zeroize",
2103
2103
  ]
@@ -2252,7 +2252,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
2252
2252
  dependencies = [
2253
2253
  "proc-macro2",
2254
2254
  "quote",
2255
- "syn 3.0.2",
2255
+ "syn 3.0.3",
2256
2256
  ]
2257
2257
 
2258
2258
  [[package]]
@@ -2411,9 +2411,9 @@ dependencies = [
2411
2411
 
2412
2412
  [[package]]
2413
2413
  name = "syn"
2414
- version = "3.0.2"
2414
+ version = "3.0.3"
2415
2415
  source = "registry+https://github.com/rust-lang/crates.io-index"
2416
- checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
2416
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2417
2417
  dependencies = [
2418
2418
  "proc-macro2",
2419
2419
  "quote",
@@ -2517,7 +2517,7 @@ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
2517
2517
  dependencies = [
2518
2518
  "proc-macro2",
2519
2519
  "quote",
2520
- "syn 3.0.2",
2520
+ "syn 3.0.3",
2521
2521
  ]
2522
2522
 
2523
2523
  [[package]]
@@ -2579,13 +2579,14 @@ dependencies = [
2579
2579
 
2580
2580
  [[package]]
2581
2581
  name = "tokio-util"
2582
- version = "0.7.18"
2582
+ version = "0.7.19"
2583
2583
  source = "registry+https://github.com/rust-lang/crates.io-index"
2584
- checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2584
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
2585
2585
  dependencies = [
2586
2586
  "bytes",
2587
2587
  "futures-core",
2588
2588
  "futures-sink",
2589
+ "libc",
2589
2590
  "pin-project-lite",
2590
2591
  "tokio",
2591
2592
  ]
@@ -2810,7 +2811,7 @@ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
2810
2811
 
2811
2812
  [[package]]
2812
2813
  name = "void_crawl"
2813
- version = "0.4.1"
2814
+ version = "0.4.2"
2814
2815
  dependencies = [
2815
2816
  "futures",
2816
2817
  "pyo3",
@@ -2823,7 +2824,7 @@ dependencies = [
2823
2824
 
2824
2825
  [[package]]
2825
2826
  name = "void_crawl_core"
2826
- version = "0.4.1"
2827
+ version = "0.4.2"
2827
2828
  dependencies = [
2828
2829
  "base64",
2829
2830
  "chromiumoxide",
@@ -2845,7 +2846,7 @@ dependencies = [
2845
2846
 
2846
2847
  [[package]]
2847
2848
  name = "voidcrawl-mcp"
2848
- version = "0.4.1"
2849
+ version = "0.4.2"
2849
2850
  dependencies = [
2850
2851
  "anyhow",
2851
2852
  "base64",
@@ -1,17 +1,16 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: voidcrawl
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Classifier: Programming Language :: Python :: 3 :: Only
5
5
  Classifier: Programming Language :: Python :: 3.10
6
6
  Classifier: Programming Language :: Python :: 3.11
7
7
  Classifier: Programming Language :: Python :: 3.12
8
8
  Classifier: Programming Language :: Python :: 3.13
9
9
  Classifier: Programming Language :: Python :: 3.14
10
- Classifier: Programming Language :: Python :: Free Threading :: 2 - Beta
11
10
  Requires-Dist: click>=8.3.2
12
11
  Requires-Dist: pydantic>=2
13
12
  Requires-Dist: rich>=14.3.3 ; extra == 'debug'
14
- Requires-Dist: voidcrawl-mcp==0.4.1 ; extra == 'mcp'
13
+ Requires-Dist: voidcrawl-mcp==0.4.2 ; extra == 'mcp'
15
14
  Provides-Extra: debug
16
15
  Provides-Extra: mcp
17
16
  License-File: LICENSE.md
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "void_crawl_core"
3
- version = "0.4.1"
3
+ version = "0.4.2"
4
4
  edition.workspace = true
5
5
  license.workspace = true
6
6
  rust-version.workspace = true
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "void_crawl"
3
- version = "0.4.1"
3
+ version = "0.4.2"
4
4
  edition.workspace = true
5
5
  license.workspace = true
6
6
  rust-version.workspace = true
@@ -14,7 +14,7 @@ name = "void_crawl"
14
14
  crate-type = ["cdylib"]
15
15
 
16
16
  [dependencies]
17
- void_crawl_core = { path = "../core", version = "0.4.1" }
17
+ void_crawl_core = { path = "../core", version = "0.4.2" }
18
18
  pyo3 = { version = "0.29", features = ["extension-module", "generate-import-lib"] }
19
19
  pyo3-async-runtimes = { version = "0.29", features = ["tokio-runtime"] }
20
20
  tokio = { version = "1", features = ["sync"] }
@@ -4,7 +4,7 @@ requires = [ "maturin>=1.7,<2" ]
4
4
 
5
5
  [project]
6
6
  name = "voidcrawl"
7
- version = "0.4.1"
7
+ version = "0.4.2"
8
8
  description = "Rust-native CDP browser automation for Python via PyO3"
9
9
  readme = "README.md"
10
10
  license = { text = "Apache-2.0" }
@@ -17,7 +17,6 @@ classifiers = [
17
17
  "Programming Language :: Python :: 3.12",
18
18
  "Programming Language :: Python :: 3.13",
19
19
  "Programming Language :: Python :: 3.14",
20
- "Programming Language :: Python :: Free Threading :: 2 - Beta",
21
20
  ]
22
21
  dependencies = [
23
22
  "click>=8.3.2",
@@ -37,7 +36,7 @@ debug = [
37
36
  # in the prebuilt Rust binary; there's no runtime dependency between
38
37
  # the two packages — the extra just co-installs them at matching versions.
39
38
  mcp = [
40
- "voidcrawl-mcp==0.4.1",
39
+ "voidcrawl-mcp==0.4.2",
41
40
  ]
42
41
 
43
42
  # ── uv workspace ──────────────────────────────────────────────────────────
@@ -74,7 +73,10 @@ features = [ "pyo3/extension-module" ]
74
73
  manifest-path = "crates/pyo3_bindings/Cargo.toml"
75
74
  module-name = "voidcrawl._ext"
76
75
  python-packages = [ "voidcrawl" ]
77
- include = [{ path = "LICENSE.md", format = "sdist" }]
76
+ include = [
77
+ { path = "LICENSE.md", format = "sdist" },
78
+ { path = "vendor/chromiumoxide/**/*", format = "sdist" },
79
+ ]
78
80
 
79
81
  # ── Commitizen ────────────────────────────────────────────────────────────
80
82
 
@@ -0,0 +1 @@
1
+ {"v":1}
@@ -0,0 +1,6 @@
1
+ {
2
+ "git": {
3
+ "sha1": "a7e2bb835b9643410f9e3dc044f0d947e96cbfa4"
4
+ },
5
+ "path_in_vcs": ""
6
+ }
@@ -0,0 +1,13 @@
1
+ ### Issue # (if available)
2
+
3
+ <!-- **Please post the link to the resolved issue** -->
4
+
5
+ ### Description of changes
6
+
7
+ <!-- **Please explain what your changes does** -->
8
+
9
+ ### Checklist
10
+
11
+ - [ ] Added change to the changelog
12
+ - [ ] Created unit tests for my feature (if needed)
13
+ - [ ] Created a least one integration test
@@ -0,0 +1,87 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request:
6
+
7
+ name: Continuous integration
8
+
9
+ jobs:
10
+ check:
11
+ name: Check
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v6
15
+ - uses: dtolnay/rust-toolchain@stable
16
+ - run: cargo check
17
+
18
+ fmt:
19
+ name: Rustfmt
20
+ needs: check
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - uses: actions/checkout@v6
24
+ - uses: dtolnay/rust-toolchain@stable
25
+ with:
26
+ components: rustfmt
27
+ - run: cargo fmt --all -- --check
28
+
29
+ clippy:
30
+ name: Clippy
31
+ needs: check
32
+ runs-on: ubuntu-latest
33
+ steps:
34
+ - uses: actions/checkout@v6
35
+ - uses: dtolnay/rust-toolchain@stable
36
+ with:
37
+ components: clippy
38
+ - run: cargo clippy --all -- -D warnings
39
+
40
+ msrv:
41
+ name: MSRV
42
+ needs: check
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - uses: actions/checkout@v6
46
+ - uses: dtolnay/rust-toolchain@1.85.0
47
+ - run: cargo check --lib
48
+
49
+ test:
50
+ name: Test Core
51
+ needs: [fmt, clippy, msrv]
52
+ strategy:
53
+ matrix:
54
+ os: [ubuntu-latest, macos-latest, windows-latest]
55
+ runs-on: ${{ matrix.os }}
56
+ steps:
57
+ - uses: actions/checkout@v6
58
+ - uses: dtolnay/rust-toolchain@stable
59
+ - run: cargo test --lib
60
+
61
+ test-integration:
62
+ name: Test Integration
63
+ needs: [fmt, clippy, msrv]
64
+ runs-on: ubuntu-latest
65
+ steps:
66
+ - uses: actions/checkout@v6
67
+ - uses: dtolnay/rust-toolchain@stable
68
+ - run: RUST_TEST_THREADS=1 cargo test --test '*'
69
+
70
+ test-fetcher:
71
+ name: Test Fetcher
72
+ needs: [fmt, clippy, msrv]
73
+ runs-on: ubuntu-latest
74
+ steps:
75
+ - uses: actions/checkout@v6
76
+ - uses: dtolnay/rust-toolchain@stable
77
+ - run: RUST_TEST_THREADS=1 cargo test -p chromiumoxide_fetcher
78
+
79
+ check-examples:
80
+ name: Check Examples
81
+ needs: [fmt, clippy, msrv]
82
+ runs-on: ubuntu-latest
83
+ steps:
84
+ - uses: actions/checkout@v6
85
+ - uses: dtolnay/rust-toolchain@stable
86
+ - name: Check examples
87
+ run: cargo check --examples --features fetcher,zip8,rustls
@@ -0,0 +1,57 @@
1
+ name: Publish
2
+ on:
3
+ push:
4
+ tags:
5
+ - 'v[0-9]+.[0-9]+.[0-9]+*'
6
+
7
+ permissions:
8
+ id-token: write # Required for OIDC
9
+ contents: read
10
+
11
+ jobs:
12
+ publish:
13
+ if: github.repository == 'mattsse/chromiumoxide'
14
+ runs-on: ubuntu-latest
15
+
16
+ strategy:
17
+ max-parallel: 1
18
+ matrix:
19
+ package:
20
+ - name: chromiumoxide_types
21
+ path: chromiumoxide_types
22
+ - name: chromiumoxide_pdl
23
+ path: chromiumoxide_pdl
24
+ - name: chromiumoxide_cdp
25
+ path: chromiumoxide_cdp
26
+ - name: chromiumoxide_fetcher
27
+ path: chromiumoxide_fetcher
28
+ - name: chromiumoxide
29
+ path: .
30
+ steps:
31
+ - name: Checkout repository
32
+ uses: actions/checkout@v6
33
+
34
+ - name: Setup Rust
35
+ uses: dtolnay/rust-toolchain@stable
36
+
37
+ - name: Get version
38
+ id: meta
39
+ working-directory: ${{ matrix.package.path }}
40
+ run: |
41
+ PACKAGE_VERSION=$(sed -nE 's/^\s*version = "(.*?)"/\1/p' Cargo.toml)
42
+ PUBLISHED_VERSION=$(cargo search ${{ matrix.package.name }} --limit 1 | sed -nE 's/^[^"]*"//; s/".*//1p' -)
43
+ if [ "$PACKAGE_VERSION" != "$PUBLISHED_VERSION" ]; then
44
+ echo "release=true" >> $GITHUB_OUTPUT
45
+ fi
46
+
47
+ - name: Authenticate with crates.io
48
+ id: auth
49
+ if: steps.meta.outputs.release == 'true'
50
+ uses: rust-lang/crates-io-auth-action@b7e9a28eded4986ec6b1fa40eeee8f8f165559ec # v1.0.3
51
+
52
+ - name: Publish ${{ matrix.package.name }}
53
+ if: steps.meta.outputs.release == 'true'
54
+ working-directory: ${{ matrix.package.path }}
55
+ run: |
56
+ cargo login ${{ steps.auth.outputs.token }}
57
+ cargo publish --no-verify
@@ -0,0 +1,5 @@
1
+ /target
2
+ /download
3
+ Cargo.lock
4
+ .idea/
5
+ .cache/
@@ -0,0 +1,88 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.9.1] 2026-02-25
11
+
12
+ ### Fixed
13
+
14
+ - Invalid import when using zip0
15
+
16
+ ## [0.9.0] 2026-02-20
17
+
18
+ ### Breaking Changes
19
+
20
+ - Removed async-std support
21
+
22
+ ### Changed
23
+
24
+ - Updated edition to 2024
25
+ - Bump fetcher chromium to `r1585606`
26
+ - Bump CDP to `r1566079`
27
+ - Use a struct `Arg` for arguments to combine flags automatically
28
+ - Browser process no longer inherits stdout
29
+ - Update `reqwest` to v0.13
30
+ - Update `thiserror` to v2
31
+ - Update `heck` to v0.5
32
+ - Add support for `zip` v8 and make it default
33
+
34
+ ### Added
35
+
36
+ - Add `add_init_script` to `Page` for scripts before navigation
37
+ - Add `click_with` to `Page` and `Element` for custom click behavior
38
+
39
+ ## [0.8.0] 2025-11-28
40
+
41
+ ### Breaking Changes
42
+
43
+ Due to the support of new browsers in the fetcher, we changed the API.
44
+ The changes are mainly related to how you can request a specific version of the browser.
45
+ Previously you could only request a chromium revision, now we support chrome versions, channel and milestone.
46
+
47
+ ```rust
48
+ BrowserFetcherOptions::builder()
49
+ .with_kind(BrowserKind::Chrome)
50
+ .with_version(BrowserVersion::Channel(Channel::Beta))
51
+ .build()
52
+ ```
53
+
54
+ We also change the output format of the `fetch`. It is now called a `BrowserFetcherInstallation`
55
+ and contains a `BuildInfo`. We garantee that at least the version or revision will be present
56
+ in that struct, but not always both.
57
+
58
+ ```rust
59
+ let installation = chromiumoxide_fetcher::BrowserFetcher::new(options).fetch().await?;
60
+ println!("Executable path: {}", installation.executable_path.display());
61
+ ```
62
+
63
+ Finally, we switched the async runtime tokio by default. We will remove for support for async-std in the next release.
64
+ If you want to part of the discussion on other runtime support, see [#273](https://github.com/mattsse/chromiumoxide/issues/273).
65
+
66
+ ### Changed
67
+
68
+ - Bumped MSRV to 1.85 to support edition 2024
69
+ - Update `async-tungstenite` to 0.32.0
70
+ - Update `which` to 8.0.0
71
+ - Replace `winreg` by `windows-registry`
72
+ - Updated PDL to r1519099 (Chromium 142.0.7431.0)
73
+ - Updated fetcher to r1520176 (Chromium 142.0.7435.0)
74
+ - Fetch now supports `Chrome for testing` and `Chrome Headless Shell`
75
+ - Now uses tokio by default
76
+
77
+ ### Added
78
+
79
+ - Add option to disable automation detection
80
+ - Expose the `cmd` module for access to `CommandChain`
81
+
82
+ ### Fixed
83
+
84
+ - Fixed typo in feature `_fetcher-rustls-tokio`
85
+ - More resilient message parsing, it should now not crash on unknown events coming from the browser
86
+ - Extensions should only be disabled when no extensions are provided
87
+
88
+ [Unreleased]: https://github.com/mattsse/chromiumoxide/compare/v0.7.0...HEAD