-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (44 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
53 lines (44 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "fgp-browser"
version = "0.1.0"
edition = "2021"
description = "FGP daemon for browser automation via Chrome DevTools Protocol - 292x faster than Playwright MCP"
license = "MIT"
repository = "https://github.com/fast-gateway-protocol/browser"
homepage = "https://github.com/fast-gateway-protocol"
documentation = "https://docs.rs/fgp-browser"
authors = ["Wolfgang Schoenberger"]
keywords = ["browser", "automation", "chrome", "cdp", "fgp"]
categories = ["development-tools", "web-programming"]
[[bin]]
name = "browser-gateway"
path = "src/main.rs"
[dependencies]
# FGP daemon SDK
fgp-daemon = { git = "https://github.com/fast-gateway-protocol/daemon" }
# Chrome DevTools Protocol
chromiumoxide = { version = "0.7", default-features = false, features = ["tokio-runtime"] }
# Async runtime
tokio = { version = "1", features = ["rt-multi-thread", "net", "time", "sync", "fs", "process"] }
futures = "0.3"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# CLI
clap = { version = "4", features = ["derive"] }
# WebSocket for extension bridge
tokio-tungstenite = "0.24"
# Utilities
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
shellexpand = "3"
daemonize = "0.5"
base64 = "0.22"
uuid = { version = "1", features = ["v4"] }
dirs = "5"
libc = "0.2"
chrono = "0.4"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"