[package]
edition = "2024"
rust-version = "1.88.0"
name = "tauri-hasgard-cli"
version = "0.1.0"
authors = ["Nyssance"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI and MCP server for Tauri Hasgard automation"
homepage = "https://github.com/nyssance/tauri-hasgard"
readme = "README.md"
keywords = [
"tauri",
"cli",
"testing",
"automation",
"accessibility",
]
categories = [
"command-line-utilities",
"development-tools::testing",
]
license = "Apache-2.0"
repository = "https://github.com/nyssance/tauri-hasgard"
resolver = "2"
[[bin]]
name = "tauri-hasgard"
path = "src/main.rs"
[[test]]
name = "snapshot_save_json"
path = "tests/snapshot_save_json.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22.1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.indicatif]
version = "0.18"
[dependencies.owo-colors]
version = "4.3.0"
features = ["supports-colors"]
[dependencies.quick-xml]
version = "0.41"
[dependencies.rmcp]
version = "3.0.1"
features = [
"server",
"transport-io",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"net",
"rt-multi-thread",
"macros",
"io-util",
"time",
]
[dependencies.toml]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.serial_test]
version = "4.0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["test-util"]
[target."cfg(unix)".dependencies.libc]
version = "0.2.184"
[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_System_Threading",
]
[lints.clippy]
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1