voidcrawl 0.3.1__tar.gz → 0.3.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 (65) hide show
  1. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/Cargo.lock +3 -3
  2. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/PKG-INFO +2 -2
  3. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/Cargo.toml +1 -1
  4. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/pyo3_bindings/Cargo.toml +2 -2
  5. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/pyproject.toml +2 -2
  6. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/Cargo.toml +0 -0
  7. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/LICENSE.md +0 -0
  8. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/README.md +0 -0
  9. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/README.md +0 -0
  10. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/ax.rs +0 -0
  11. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/captcha.rs +0 -0
  12. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/error.rs +0 -0
  13. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/lib.rs +0 -0
  14. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/page.rs +0 -0
  15. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/pool.rs +0 -0
  16. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/profile.rs +0 -0
  17. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/session.rs +0 -0
  18. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/src/stealth.rs +0 -0
  19. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/ax_tree.rs +0 -0
  20. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/captcha_capture.rs +0 -0
  21. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/captcha_runtime_loaded.rs +0 -0
  22. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/emulation.rs +0 -0
  23. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/integration.rs +0 -0
  24. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/profile_lock.rs +0 -0
  25. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/core/tests/stealth_ua.rs +0 -0
  26. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/crates/pyo3_bindings/src/lib.rs +0 -0
  27. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/__init__.py +0 -0
  28. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/__init__.pyi +0 -0
  29. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/_ext.pyi +0 -0
  30. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/__init__.py +0 -0
  31. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/__init__.pyi +0 -0
  32. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/_base.py +0 -0
  33. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/_base.pyi +0 -0
  34. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/_flow.py +0 -0
  35. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/_flow.pyi +0 -0
  36. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/_protocol.py +0 -0
  37. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/_protocol.pyi +0 -0
  38. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/__init__.py +0 -0
  39. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/__init__.pyi +0 -0
  40. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/click.py +0 -0
  41. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/click.pyi +0 -0
  42. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/dom.py +0 -0
  43. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/dom.pyi +0 -0
  44. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/hover.py +0 -0
  45. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/hover.pyi +0 -0
  46. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/input.py +0 -0
  47. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/input.pyi +0 -0
  48. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/network.py +0 -0
  49. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/network.pyi +0 -0
  50. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/scroll.py +0 -0
  51. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/scroll.pyi +0 -0
  52. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/wait.py +0 -0
  53. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/builtin/wait.pyi +0 -0
  54. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/js/click_at.js +0 -0
  55. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/js/hover.js +0 -0
  56. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/actions/js/wait_for_selector.js +0 -0
  57. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/cli.py +0 -0
  58. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/debug.py +0 -0
  59. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/debug.pyi +0 -0
  60. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/profiles.py +0 -0
  61. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/py.typed +0 -0
  62. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/scale.py +0 -0
  63. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/scale.pyi +0 -0
  64. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/schema.py +0 -0
  65. {voidcrawl-0.3.1 → voidcrawl-0.3.2}/voidcrawl/schema.pyi +0 -0
@@ -2106,7 +2106,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2106
2106
 
2107
2107
  [[package]]
2108
2108
  name = "void_crawl"
2109
- version = "0.3.1"
2109
+ version = "0.3.2"
2110
2110
  dependencies = [
2111
2111
  "futures",
2112
2112
  "pyo3",
@@ -2118,7 +2118,7 @@ dependencies = [
2118
2118
 
2119
2119
  [[package]]
2120
2120
  name = "void_crawl_core"
2121
- version = "0.3.1"
2121
+ version = "0.3.2"
2122
2122
  dependencies = [
2123
2123
  "chromiumoxide",
2124
2124
  "fd-lock",
@@ -2134,7 +2134,7 @@ dependencies = [
2134
2134
 
2135
2135
  [[package]]
2136
2136
  name = "voidcrawl-mcp"
2137
- version = "0.3.1"
2137
+ version = "0.3.2"
2138
2138
  dependencies = [
2139
2139
  "anyhow",
2140
2140
  "base64",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: voidcrawl
3
- Version: 0.3.1
3
+ Version: 0.3.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
@@ -10,7 +10,7 @@ Classifier: Programming Language :: Python :: 3.14
10
10
  Requires-Dist: click>=8.3.2
11
11
  Requires-Dist: pydantic>=2
12
12
  Requires-Dist: rich>=14.3.3 ; extra == 'debug'
13
- Requires-Dist: voidcrawl-mcp==0.3.1 ; extra == 'mcp'
13
+ Requires-Dist: voidcrawl-mcp==0.3.2 ; extra == 'mcp'
14
14
  Provides-Extra: debug
15
15
  Provides-Extra: mcp
16
16
  License-File: LICENSE.md
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "void_crawl_core"
3
- version = "0.3.1"
3
+ version = "0.3.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.3.1"
3
+ version = "0.3.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.3.1" }
17
+ void_crawl_core = { path = "../core", version = "0.3.2" }
18
18
  pyo3 = { version = "0.28", features = ["extension-module", "generate-import-lib"] }
19
19
  pyo3-async-runtimes = { version = "0.28", 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.3.1"
7
+ version = "0.3.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" }
@@ -36,7 +36,7 @@ debug = [
36
36
  # in the prebuilt Rust binary; there's no runtime dependency between
37
37
  # the two packages — the extra just co-installs them at matching versions.
38
38
  mcp = [
39
- "voidcrawl-mcp==0.3.1",
39
+ "voidcrawl-mcp==0.3.2",
40
40
  ]
41
41
 
42
42
  # ── uv workspace ──────────────────────────────────────────────────────────
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes