stygian-browser 0.1.10

Anti-detection browser automation library for Rust with CDP stealth features
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93.1"
name = "stygian-browser"
version = "0.1.10"
authors = ["Nick Campbell <s0ma@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Anti-detection browser automation library for Rust with CDP stealth features"
documentation = "https://greysquirr3l.github.io/stygian"
readme = "README.md"
keywords = [
    "browser",
    "automation",
    "scraping",
    "anti-detection",
    "cdp",
]
categories = [
    "web-programming",
    "development-tools",
]
license = "AGPL-3.0-only"
repository = "https://github.com/greysquirr3l/stygian"
resolver = "2"

[features]
default = ["stealth"]
full = [
    "stealth",
    "mcp",
    "metrics",
]
mcp = ["dep:base64"]
metrics = ["dep:prometheus-client"]
stealth = []

[lib]
name = "stygian_browser"
path = "src/lib.rs"

[[example]]
name = "basic_navigation"
path = "examples/basic_navigation.rs"

[[example]]
name = "browser_pool"
path = "examples/browser_pool.rs"

[[example]]
name = "form_filling"
path = "examples/form_filling.rs"

[[example]]
name = "mcp_server"
path = "examples/mcp_server.rs"

[[example]]
name = "proxy_integration"
path = "examples/proxy_integration.rs"

[[example]]
name = "screenshot"
path = "examples/screenshot.rs"

[[example]]
name = "stealth_bypass"
path = "examples/stealth_bypass.rs"

[[test]]
name = "detection"
path = "tests/detection.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.chromiumoxide]
version = "=0.9.1"

[dependencies.futures]
version = "0.3"

[dependencies.parking_lot]
version = "0.12"

[dependencies.prometheus-client]
version = "0.22"
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "derive",
]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.49"
features = [
    "full",
    "full",
]

[dependencies.tracing]
version = "0.1"

[dependencies.ulid]
version = "1.2"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]