-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 962 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 962 Bytes
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
[package]
name = "mcp-execution-files"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Virtual filesystem for MCP code generation and organization"
keywords = ["mcp", "filesystem", "vfs", "codegen"]
categories = ["development-tools", "filesystem"]
[lints]
workspace = true
[dependencies]
dirs.workspace = true
dhat = { workspace = true, optional = true }
mcp-execution-codegen.workspace = true
rayon = { workspace = true, optional = true }
thiserror.workspace = true
[dev-dependencies]
criterion = { workspace = true, features = ["html_reports"] }
tempfile.workspace = true
[features]
dhat-heap = ["dhat"]
parallel = ["dep:rayon"]
[[bench]]
name = "vfs_benchmarks"
harness = false
[[bench]]
name = "filesystem_export"
harness = false
[[example]]
name = "profile_memory"
required-features = ["dhat-heap"]