-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 924 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 924 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
[package]
name = "iris-screenshot"
version = "0.4.1"
edition = "2024"
rust-version = "1.88"
description = "Minimal, powerful screenshots of live websites"
license = "MIT"
repository = "https://github.com/brijr/iris"
readme = "README.md"
keywords = ["screenshot", "cli", "chrome", "headless", "web"]
categories = ["command-line-utilities"]
[[bin]]
name = "iris"
path = "src/main.rs"
[dependencies]
anyhow = "1"
base64 = "0.23"
clap = { version = "4", features = ["derive", "env"] }
chromiumoxide = { version = "0.8", default-features = false, features = ["tokio-runtime"] }
futures = "0.3"
rmcp = { version = "3.1.2", default-features = false, features = ["macros", "server", "transport-io"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "fs", "io-std", "signal", "sync"] }
url = "2"
[profile.release]
strip = true
lto = true