-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 855 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 855 Bytes
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
[package]
name = "docker-git-browser-connection"
version = "0.3.0"
edition = "2021"
description = "Rust module for noVNC + browser connection (single browser for docker-git, MCP and Hermes tools) — per issue #347"
license = "MIT"
keywords = ["docker-git", "browser", "novnc", "cdp", "playwright", "rust"]
repository = "https://github.com/ProverCoderAI/rust-browser-connection"
[lib]
name = "docker_git_browser_connection"
path = "src/lib.rs"
[[bin]]
name = "docker-git-browser-connection"
path = "src/main.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "=4.4.18", features = ["derive"] }
anyhow = "1.0"
log = "0.4"
env_logger = "0.11"
tungstenite = "0.24"
[[bin]]
name = "browser-connection"
path = "src/bin/browser-connection.rs"
[dev-dependencies]
tempfile = "=3.10.1"
proptest = "=1.4.0"