-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (56 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
70 lines (56 loc) · 1.67 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "terminator-cli"
version.workspace = true
edition.workspace = true
description = "CLI for AI-native desktop automation - control any app with MCP"
authors = ["Mediar AI"]
repository = "https://github.com/mediar-ai/terminator"
homepage = "https://mediar.ai"
documentation = "https://github.com/mediar-ai/terminator"
readme = "../../README.md"
keywords = ["automation", "gui", "desktop", "mcp", "cli"]
categories = ["command-line-utilities", "development-tools"]
license-file.workspace = true
[[bin]]
name = "terminator"
path = "src/main.rs"
[[bin]]
name = "cargo-terminator"
path = "src/bin/cargo-terminator.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.140"
clap = { version = "4.4", features = ["derive", "env"] }
tokio = { version = "1", features = [
"rt",
"macros",
"rt-multi-thread",
"process",
"full",
] }
anyhow = "1.0"
rmcp = { version = "0.9", features = [
"transport-child-process",
"client",
"transport-streamable-http-client-reqwest",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time", "local-time"] }
tracing-appender = "0.2"
dotenvy = "0.15.7"
reqwest = { version = "0.12.22", features = ["json", "rustls-tls"] }
anthropic-sdk = "0.1.5"
# Cron scheduling support
tokio-cron-scheduler = "0.14"
chrono = { version = "0.4", features = ["serde"] }
# Display formatting
colored = "3.0.0"
# System directories
dirs = "5.0"
# Regex for stripping ANSI codes
regex = "1.10"
# For snippet generation
terminator-mcp-agent = { path = "../terminator-mcp-agent" }
# Simple HTTP server for receiving telemetry
bytes = "1.5"
# Protobuf support for parsing OTLP data