-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (48 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
51 lines (48 loc) · 1.28 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
[package]
name = "buildfs"
version = "0.3.4"
edition = "2021"
description = "A CI-compatible CLI utility that can create root filesystem images (for use in virtual machines) from reproducible and readable TOML build scripts"
license = "MIT"
keywords = ["firecracker", "cli", "rootfs", "docker", "podman"]
categories = ["virtualization", "filesystem", "command-line-utilities"]
repository = "https://github.com/kanpov/buildfs"
readme = "README.md"
rust-version = "1.80.0"
[profile.dev]
panic = "abort"
debug = false
strip = "symbols"
[profile.release]
lto = "fat"
strip = "symbols"
codegen-units = 1
[dependencies]
async-trait = "0.1.83"
bollard = "0.18.1"
clap = { version = "4.5.32", features = ["derive"] }
colored = "3.0.0"
flate2 = "1.1.0"
fs_extra = "1.3.0"
futures-util = "0.3.31"
hyper = "1.6.0"
hyper-util = { version = "0.1.10", features = ["tokio"] }
libc = "0.2.171"
log = "0.4.26"
podman-rest-client = { version = "0.13.0", default-features = false, features = [
"v5",
"uds",
] }
serde = { version = "1.0.219", features = ["derive"] }
simple_logger = "5.0.0"
sys-mount = "3.0.1"
tar = "0.4.44"
tokio = { version = "1.44.1", features = [
"rt-multi-thread",
"process",
"macros",
"fs",
] }
toml = "0.8.20"
uuid = { version = "1.16.0", features = ["v4"] }
which = "7.0.2"