-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (25 loc) · 760 Bytes
/
Cargo.toml
File metadata and controls
33 lines (25 loc) · 760 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
[package]
name = "contree"
version = "0.1.0"
edition = "2021"
authors = ["blark"]
description = "Visualize the merged filesystem tree of Docker image archives"
license = "MIT"
[dependencies]
# Tar archive parsing with full metadata support (uid/gid, hard links, etc.)
tar = "0.4"
# JSON parsing for manifest.json
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Terminal colors and styling
owo-colors = { version = "4.1", features = ["supports-colors"] }
# CLI argument parsing
clap = { version = "4.5", features = ["derive"] }
# Gzip decompression for layer.tar.gz files
flate2 = "1.0"
# Error handling
anyhow = "1.0"
# Temporary file/directory management
tempfile = "3.14"
# Terminal detection for color auto mode
atty = "0.2"