-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 877 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 877 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
34
35
[package]
name = "chrome-devtools-cli"
version = "1.5.0"
edition = "2021"
# std::fs::File::{lock, try_lock} and std::fs::TryLockError (daemon lock path)
# stabilized in 1.89
rust-version = "1.89"
description = "Chrome DevTools Protocol CLI — auto-connects to existing Chrome"
authors = ["Aero <aero.windwalker@gmail.com>"]
license = "MIT"
repository = "https://github.com/aeroxy/chrome-devtools-cli"
[[bin]]
name = "chrome-devtools"
path = "src/main.rs"
[dependencies]
anyhow = "1"
base64 = "0.22"
chrono = "0.4.44"
clap = { version = "4", features = ["derive", "env"] }
dirs = "5"
futures-util = "0.3"
libc = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
toon-format = "0.5"
tokio-tungstenite = "0.24"
htmd = "0.5.4"
dom_smoothie = "0.18.0"
html-escape = "0.2.13"
[dev-dependencies]
tempfile = "3"