-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (47 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
50 lines (47 loc) · 1.13 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
[workspace]
resolver = "3"
members = [
"crates/common",
"crates/control",
"crates/interceptor",
"crates/mcp",
"crates/stdio",
"crates/test-support",
"crates/e2e-tests",
"crates/sandbox",
"crates/shim",
"crates/virtiofs-backend",
"crates/vmm-sys-util-fork",
"crates/p9",
"crates/p9proxy",
]
exclude = ["fuzz", "crates/virtiofsd-fork", "desktop/src-tauri"]
[workspace.package]
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
blake3 = "1"
filetime = "0.2"
ignore = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3"
thiserror = "2"
xattr = "1"
zstd = "0.13"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt", "macros", "sync", "time", "io-util"] }
proptest = "1"
criterion = { version = "0.5", features = ["html_reports"] }
which = "7"
glob = "0.3"
regex = "1"
walkdir = "2"
toml = "0.8"
dirs = "6"
notify = "8"
[patch.crates-io]
vmm-sys-util = { path = "crates/vmm-sys-util-fork" }
virtiofsd = { path = "crates/virtiofsd-fork" }