[package]
name = "browser-commander"
version = "0.10.9"
edition = "2021"
authors = ["Link Foundation"]
description = "Universal browser automation library that supports multiple browser engines with a unified API"
license = "Unlicense"
repository = "https://github.com/link-foundation/browser-commander"
keywords = ["browser", "automation", "testing", "e2e", "web"]
categories = ["development-tools::testing", "web-programming"]
[dependencies]
tokio = { version = "1.0", features = ["full"] }
chromiumoxide = { version = "0.7", features = ["tokio-runtime"] }
fantoccini = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = "0.22"
aes = "0.8"
aes-gcm = "0.10"
cbc = { version = "0.1", features = ["alloc", "block-padding"] }
pbkdf2 = "0.12"
rusqlite = { version = "0.32", features = ["bundled"] }
sha1 = "0.10"
sha2 = "0.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1.0"
anyhow = "1.0"
regex = "1.0"
url = "2.0"
futures = "0.3"
async-trait = "0.1"
tokio-util = "0.7"
dirs = "5.0"
[dev-dependencies]
tokio-test = "0.4"
pretty_assertions = "1.0"
[[bin]]
name = "browser-commander"
path = "src/main.rs"
[lib]
name = "browser_commander"
path = "src/lib.rs"