[package]
edition = "2024"
name = "rustenium"
version = "1.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern, robust, high-performance WebDriver BiDi automation library for Rust"
homepage = "https://github.com/dashn9/rustenium"
documentation = "https://docs.rs/rustenium"
readme = "README.md"
keywords = [
"webdriver",
"automation",
"bidi",
"browser",
"stealth",
]
categories = [
"web-programming",
"development-tools::testing",
"api-bindings",
"simulation",
]
license = "MIT"
repository = "https://github.com/dashn9/rustenium"
resolver = "2"
[features]
default = []
macros = ["rustenium-macros"]
[lib]
name = "rustenium"
path = "src/lib.rs"
[[test]]
name = "capabilities"
path = "tests/capabilities.rs"
[[test]]
name = "chrome"
path = "tests/chrome.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "firefox"
path = "tests/firefox.rs"
[[test]]
name = "human_mouse"
path = "tests/human_mouse.rs"
[[test]]
name = "human_touchscreen"
path = "tests/human_touchscreen.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "mouse"
path = "tests/mouse.rs"
[[bench]]
name = "browser_benchmarks"
path = "benches/browser_benchmarks.rs"
harness = false
[dependencies.base64]
version = "0.22"
[dependencies.rand]
version = "0.9.1"
[dependencies.rustenium-bidi-definitions]
version = "0.1.1"
[dependencies.rustenium-cdp-definitions]
version = "0.1.1"
[dependencies.rustenium-core]
version = "1.1.0"
[dependencies.rustenium-macros]
version = "1.0.0"
optional = true
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.rand]
version = "0.9.1"
[dev-dependencies.rustenium-bidi-definitions]
version = "0.1.0"
[dev-dependencies.rustenium-macros]
version = "1.0.0"
[dev-dependencies.serde_json]
version = "1.0.145"
[dev-dependencies.tokio]
version = "1"
features = ["full"]