[package]
edition = "2024"
rust-version = "1.96"
name = "earl-protocol-browser"
version = "0.6.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Browser automation protocol for earl (chromiumoxide)"
homepage = "https://github.com/mathematic-inc/earl"
documentation = "https://mathematic-inc.github.io/earl"
readme = false
keywords = [
"agent",
"automation",
"browser",
"chromium",
]
categories = ["web-programming"]
license = "Apache-2.0"
repository = "https://github.com/mathematic-inc/earl"
[lib]
name = "earl_protocol_browser"
path = "src/lib.rs"
[[test]]
name = "assertions"
path = "tests/assertions.rs"
[[test]]
name = "cookies"
path = "tests/cookies.rs"
[[test]]
name = "dialogs"
path = "tests/dialogs.rs"
[[test]]
name = "forms"
path = "tests/forms.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "javascript"
path = "tests/javascript.rs"
[[test]]
name = "keyboard_mouse"
path = "tests/keyboard_mouse.rs"
[[test]]
name = "pdf"
path = "tests/pdf.rs"
[[test]]
name = "scraping"
path = "tests/scraping.rs"
[[test]]
name = "screenshot"
path = "tests/screenshot.rs"
[[test]]
name = "session_mode"
path = "tests/session_mode.rs"
[[test]]
name = "storage"
path = "tests/storage.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.23"
[dependencies.chromiumoxide]
version = "0.9"
features = ["bytes"]
default-features = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.directories]
version = "6.0"
[dependencies.earl-core]
version = "0.6.4"
[dependencies.fs4]
version = "1.1"
features = ["tokio"]
[dependencies.futures]
version = "0.3"
[dependencies.rkyv]
version = "0.8"
features = [
"bytecheck",
"std",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.27"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.which]
version = "8.0"
[dev-dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"test-util",
"time",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"