[package]
edition = "2024"
rust-version = "1.88"
name = "zeuxis"
version = "0.1.0"
build = false
exclude = [
".DS_Store",
"specs/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local read-only MCP screenshot server for screen/window/region capture"
homepage = "https://github.com/bnomei/zeuxis"
documentation = "https://docs.rs/zeuxis"
readme = "README.md"
keywords = [
"mcp",
"screenshot",
"agent",
"automation",
"desktop",
]
categories = [
"command-line-utilities",
"multimedia::images",
]
license = "MIT"
repository = "https://github.com/bnomei/zeuxis"
[lib]
name = "zeuxis"
path = "src/lib.rs"
[[bin]]
name = "zeuxis"
path = "src/main.rs"
[[test]]
name = "linux_smoke"
path = "tests/linux_smoke.rs"
[[test]]
name = "main_binary"
path = "tests/main_binary.rs"
[[test]]
name = "mcp_tools_validation"
path = "tests/mcp_tools_validation.rs"
[[test]]
name = "result_payload"
path = "tests/result_payload.rs"
[[test]]
name = "tool_calls"
path = "tests/tool_calls.rs"
[dependencies.clap]
version = "4.5.0"
features = [
"derive",
"env",
]
[dependencies.device_query]
version = "4.0.1"
[dependencies.hmac]
version = "0.12.1"
[dependencies.image]
version = "0.25.9"
features = [
"png",
"jpeg",
"webp",
]
default-features = false
[dependencies.libc]
version = "0.2.177"
[dependencies.rmcp]
version = "1.1.0"
features = ["transport-io"]
[dependencies.schemars]
version = "1.2.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sha2]
version = "0.10.9"
[dependencies.tempfile]
version = "3.26.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.time]
version = "0.3.47"
features = ["formatting"]
[dependencies.tokio]
version = "1.50.0"
features = [
"io-std",
"io-util",
"macros",
"process",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"env-filter",
"fmt",
]
[dependencies.url]
version = "2.5.8"
[dependencies.xcap]
version = "0.8.3"
[dev-dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt",
]