[package]
edition = "2021"
rust-version = "1.85"
name = "runtime-foxdriver"
version = "0.1.2"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Firefox browser automation via WebDriver BiDi (rustenium)"
readme = false
keywords = [
"firefox",
"browser",
"bidi",
"webdriver",
"automation",
]
categories = [
"web-programming",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhreal/santh"
[lib]
name = "runtime_foxdriver"
path = "src/lib.rs"
[[test]]
name = "adversarial_hostile_capture"
path = "tests/adversarial_hostile_capture.rs"
[[test]]
name = "cross_origin_click"
path = "tests/cross_origin_click.rs"
[[test]]
name = "cross_origin_grid_click"
path = "tests/cross_origin_grid_click.rs"
[[test]]
name = "webrtc_proxy_leak"
path = "tests/webrtc_proxy_leak.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.regex]
version = "1"
[dependencies.rustenium]
version = "1.1"
[dependencies.rustenium-bidi-definitions]
version = "0.1"
[dependencies.rustenium-core]
version = "1.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
"rt",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = ["signal"]
[lints.rust]
unsafe_code = "forbid"