-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.16 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
[package]
name = "initramfs-builder"
version = "0.2.1"
edition = "2021"
authors = ["Damien MATHIEU, Axel FRACHE, Evan PAILLARD, Hugo DU-PELOUX"]
description = "Convert Docker/OCI images to bootable initramfs for microVMs"
license = "MIT"
keywords = ["initramfs", "docker", "oci", "microvm", "lambda"]
categories = ["command-line-utilities", "virtualization"]
repository = "https://github.com/DO-2K24-27/rusty-initramfs-builder"
documentation = "https://docs.rs/initramfs-builder"
readme = "README.md"
exclude = ["*.cpio.gz", "*.cpio", "vmlinux*", "test-*"]
[dependencies]
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
oci-distribution = "0.11"
tar = "0.4"
flate2 = "1.0"
zstd = "0.13"
anyhow = "1.0"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
indicatif = "0.17"
glob = "0.3"
tempfile = "3"
futures = "0.3"
walkdir = "2"
ratatui = "0.30.0"
crossterm = "0.29.0"
[dev-dependencies]
tokio-test = "0.4"
[[bin]]
name = "initramfs-builder"
path = "src/main.rs"
[lib]
name = "initramfs_builder"
path = "src/lib.rs"