-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (55 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
62 lines (55 loc) · 1.4 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
[package]
name = "rust-mcp-filesystem"
version = "0.4.1"
edition = "2024"
repository = "https://github.com/rust-mcp-stack/rust-mcp-filesystem"
authors = ["Ali Hashemi"]
categories = ["command-line-interface", "command-line-utilities"]
description = "Blazing-fast, asynchronous MCP server for seamless filesystem operations."
homepage = "https://github.com/rust-mcp-stack/rust-mcp-filesystem"
keywords = [
"rust-mcp-filesystem",
"rust-mcp-stack",
"mcp-filesystem",
"mcp-server-in-rust",
]
license = "MIT"
exclude = ["tests/**/*"]
[package.metadata.wix]
upgrade-guid = "944FE3C9-C8C2-4114-8C8F-5330720E781F"
path-guid = "0BBAC013-2FD2-42B6-9815-D992FAD3F88E"
license = false
eula = false
[dependencies]
rust-mcp-sdk = {version="0.8", default-features = false, features = [
"server",
"macros",
"stdio"
] }
thiserror = { version = "2.0" }
dirs = "6.0"
walkdir = "2.5"
similar = "=2.7"
chrono = "0.4"
clap = { version = "4.5", features = ["derive","env"] }
tokio = "1.4"
serde = "1.0"
serde_json = "1.0"
async-trait = "0.1"
futures = "0.3"
tokio-util = "0.7"
async_zip = { version = "0.0", features = ["full"] }
grep = "0.3"
base64 = "0.22"
infer = "0.19.0"
rayon = "1.11.0"
sha2 = "0.10.9"
glob-match = "0.2"
[dev-dependencies]
tempfile = "3.2"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[package.metadata.typos]
default.extend-ignore-re = ["4ded5ca"]