-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (57 loc) · 1.43 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "peckish"
version = "0.0.8"
description = "Create, manipulate, and transform Linux package formats!"
license = "Apache-2.0"
edition = "2021"
readme = "README.md"
categories = ["command-line-utilities", "development-tools", "filesystem"]
keywords = ["packages", "linux", "deb", "tarball", "docker"]
repository = "https://github.com/queer/peckish"
homepage = "https://github.com/queer/peckish"
[dependencies]
anyhow = "1.0.81"
async-recursion = "1.1.0"
async-trait = "0.1.81"
bollard = "0.16.1"
clap = { version = "4.5.11", features = ["derive"] }
color-eyre = { version = "0.6.3", features = ["issue-url"] }
ctor = "0.2.7"
disk-drive = "0.1.10"
eyre = "0.6.12"
flail = "0.3.0"
flop = "0.2.7"
floppy-disk = "0.2.6"
futures-util = "0.3.30"
hyper = { version = "0.14.27", features = ["stream"] }
indoc = "2.0.5"
itertools = "0.12.1"
md5 = "0.7.0"
nyoom = "0.3.5"
oci-spec = "0.6.8"
rand = "0.8.5"
regex = "1.10.3"
rpm = "0.14.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.118"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
smoosh = "0.2.1"
thiserror = "1.0.63"
tokio = { version = "1.39.1", features = ["full"] }
tokio-stream = "0.1.15"
tokio-util = { version = "0.7.9", features = ["codec"] }
tracing = "0.1.37"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"serde",
"serde_json",
"tracing",
"env-filter",
"fmt",
"std",
] }
[profile.release]
# debug = true
opt-level = 3
lto = true