-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (38 loc) · 965 Bytes
/
Cargo.toml
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
[package]
name = "ocipack"
version = "0.7.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dependencies]
chrono = "0.4"
reqwest = { version = "0.12", features = ["gzip", "blocking", "json", "deflate", "socks", "rustls-tls"], default-features = false }
anyhow = { version = "1.0", features = ["backtrace"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
log = "0.4"
env_logger = "0.11.5"
bytes = "1.8"
sha2 = "0.10"
hex-literal = "0.4"
hex = "0.4"
regex = "1.11"
tar = "0.4"
flate2 = "1.0"
rand = "0.8"
url = "2.5"
home = "0.5"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
dockerfile-parser = "0.9.0-alpha2"
derive_builder = "0.20"
zstd = "0.13"
fantasy-util = "0.1.8"
ubyte = "0.10"
colored = "2"
tempfile = "3"