[package]
edition = "2024"
rust-version = "1.86"
name = "void_crawl_core"
version = "0.3.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-native CDP browser automation core — stealth-patched headless Chrome, profile leasing, captcha detection"
homepage = "https://github.com/CascadingLabs/VoidCrawl"
documentation = "https://docs.rs/void_crawl_core"
readme = "README.md"
keywords = [
"chrome",
"cdp",
"browser",
"automation",
"stealth",
]
categories = [
"web-programming",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/CascadingLabs/VoidCrawl"
resolver = "2"
[lib]
name = "void_crawl_core"
path = "src/lib.rs"
[[example]]
name = "download_and_scan"
path = "examples/download_and_scan.rs"
[[example]]
name = "download_via_action"
path = "examples/download_via_action.rs"
[[test]]
name = "antibot_accuracy"
path = "tests/antibot_accuracy.rs"
[[test]]
name = "ax_tree"
path = "tests/ax_tree.rs"
[[test]]
name = "captcha_capture"
path = "tests/captcha_capture.rs"
[[test]]
name = "captcha_runtime_loaded"
path = "tests/captcha_runtime_loaded.rs"
[[test]]
name = "download"
path = "tests/download.rs"
[[test]]
name = "emulation"
path = "tests/emulation.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "profile_lock"
path = "tests/profile_lock.rs"
[[test]]
name = "scanner"
path = "tests/scanner.rs"
[[test]]
name = "stealth_ua"
path = "tests/stealth_ua.rs"
[dependencies.chromiumoxide]
version = "0.9"
default-features = false
[dependencies.fd-lock]
version = "4"
[dependencies.futures]
version = "0.3"
[dependencies.infer]
version = "0.16"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"rustls-no-provider",
"json",
]
default-features = false
[dependencies.rustls]
version = "0.23"
features = [
"ring",
"std",
"tls12",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.yara-x]
version = "1.7"
default-features = false
[lints.clippy]
absolute_paths = "deny"
cognitive_complexity = "warn"
doc_lazy_continuation = "allow"
doc_markdown = "allow"
expect_used = "deny"
items_after_statements = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_raw_string_hashes = "allow"
panic = "deny"
return_self_not_must_use = "allow"
similar_names = "allow"
todo = "warn"
too_many_lines = "allow"
unimplemented = "warn"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
static_mut_refs = "deny"
unsafe_op_in_unsafe_fn = "deny"