-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (82 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
94 lines (82 loc) · 1.92 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "tool-cli"
description = "`tool-cli` implements a CLI tool for managing MCP tools."
version = "0.2.0"
edition = "2024"
authors = ["Steve Akinyemi"]
license = "MIT"
[[bin]]
name = "tool"
path = "bin/tool.rs"
[lib]
name = "tool_cli"
path = "lib/lib.rs"
[dependencies]
# CLI
clap = { version = "4.5", features = ["derive"] }
cliclack = "0.3"
ctrlc = "3.4"
# Async
tokio = { version = "1.0", features = ["full"] }
tokio-util = "0.7"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
toml = "0.8"
toml_edit = "0.22"
# File handling
walkdir = "2.5"
ignore = "0.4"
grep-regex = "0.1"
grep-searcher = "0.1"
grep-matcher = "0.1"
glob = "0.3"
zip = { version = "4.0", default-features = false, features = ["deflate"] }
flate2 = "1.1"
tar = "0.4"
# Utilities
libc = "0.2"
regex = "1.11"
semver = { version = "1.0", features = ["serde"] }
uuid = { version = "1.11", features = ["v4"] }
dirs = "6.0"
base64 = "0.22"
colored = "3.0"
console = "0.15"
urlencoding = "2.1"
sha2 = "0.10"
strsim = "0.11"
# Logging (to suppress rmcp tracing output by default)
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# MCP Protocol
rmcp = { git = "https://github.com/zerocore-ai/rust-sdk", branch = "develop", features = [
"client",
"server",
"reqwest",
"transport-child-process",
"transport-streamable-http-client",
"transport-streamable-http-client-reqwest",
"transport-streamable-http-server",
"transport-io",
"auth",
] }
reqwest = { version = "0.12", features = ["json", "stream"] }
http-body = "1.0"
indicatif = "0.18"
futures-util = "0.3"
bytes = "1.0"
# OAuth
axum = "0.8"
open = "5.3"
chrono = { version = "0.4", features = ["serde"] }
oauth2 = "5.0"
aes-gcm = "0.10"
rand = "0.8"
zeroize = "1.8"
async-trait = "0.1"
[dev-dependencies]
tempfile = "3.10"