[package]
edition = "2024"
name = "earl-protocol-browser"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Browser automation protocol for earl (chromiumoxide)"
homepage = "https://github.com/brwse/earl"
documentation = "https://brwse.github.io/earl"
readme = false
license = "MIT"
repository = "https://github.com/brwse/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.22"
[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.5.1"
[dependencies.fs4]
version = "0.12"
features = ["tokio"]
[dependencies.futures]
version = "0.3"
[dependencies.rkyv]
version = "0.8"
features = [
"std",
"bytecheck",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.19"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"time",
"sync",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.which]
version = "7.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"time",
"sync",
"io-util",
"net",
"macros",
"test-util",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"