This repository was archived by the owner on May 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) 路 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (52 loc) 路 1.69 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
[package]
name = "vmexec"
version = "0.1.4"
description = "Run a single command in a speedy virtual machine with zero-setup"
authors = ["Sven-Hendrik Haase <sven@svenstaro.org>"]
repository = "https://github.com/svenstaro/vmexec"
license = "MIT"
readme = "README.md"
keywords = ["vm", "virtual-machine"]
categories = ["command-line-utilities", "virtualization"]
edition = "2024"
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.dev.package.sha2]
opt-level = 3
[dependencies]
async-walkdir = "2.1.0"
base64ct = { version = "1.6.0", features = ["std", "alloc"] }
bytesize = "2.0.1"
clap = { version = "4.5", features = ["wrap_help", "derive", "cargo"] }
clap_complete = "4.5.48"
clap_mangen = "0.2.24"
color-eyre = "0.6.3"
dir-lock = "0.4.1"
directories = "6.0.0"
futures = { version = "0.3.31", default-features = false }
hex = "0.4.3"
indicatif = "0.17.11"
libc = { version = "0.2.172", default-features = false }
rattler_digest = { version = "1.1.1", features = ["tokio"] }
reqwest = "0.12.12"
russh = "0.52"
shell-escape = "0.1.5"
sysinfo = { version = "0.34", default-features = false, features = ["system"] }
tempfile = "3.17.0"
termion = "4.0.5"
tokio = { version = "1.42.0", features = ["fs", "io-std", "io-util", "macros", "process", "rt-multi-thread"] }
tokio-fd = "0.3.0"
tokio-util = "0.7.15"
tokio-vsock = "0.7.1"
tracing = { version = "0.1.41", features = ["log"] }
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "local-time"] }
url = "2.5.4"
vhost = { version = "0.13.0", features = ["vhost-user-frontend"] }
which = "7.0.2"
whoami = { version = "1.5.2", default-features = false }
[dev-dependencies]
pretty_assertions = "1.4.1"
rstest = "0.25"