browsercli 1.0.0

A browser visual workspace for AI agents
[package]
name = "browsercli"
version = "1.0.0"
edition = "2021"
rust-version = "1.75"
description = "A browser visual workspace for AI agents"
license = "MIT"
homepage = "https://github.com/justinhuangcode/browsercli"
repository = "https://github.com/justinhuangcode/browsercli"
readme = "README.md"
keywords = ["browser", "agent", "automation", "chrome", "devtools"]
categories = ["command-line-utilities", "web-programming"]
exclude = ["examples/", "clients/", "tests/", ".github/", "*.png", "*.jpg"]

[[bin]]
name = "browsercli"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
rand = "0.8"
hex = "0.4"
base64 = "0.22"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["tokio", "http1", "server"] }
http-body-util = "0.1"
bytes = "1"
tokio-util = { version = "0.7", features = ["io"] }
notify = "7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "6"
mime_guess = "2"
tokio-tungstenite = "0.24"
futures-util = "0.3"

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_Threading", "Win32_Foundation"] }

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"