-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
51 lines (48 loc) · 1.63 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
[package]
name = "repro-env"
version = "0.4.1"
description = "Dependency lockfiles for reproducible build environments 📦🔒"
authors = ["kpcyrd <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kpcyrd/repro-env"
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.deb]
section = "utils"
priority = "optional"
depends = "$auto, podman, catatonit"
[dependencies]
anyhow = "1.0.71"
ar = "0.9.0"
bytes = "1.4.0"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
clone-file = "0.1.0"
data-encoding = "2.4.0"
dirs = "5.0.1"
env_logger = "0.11"
fd-lock = "4.0.0"
flate2 = "1.0.26"
hex = "0.4.3"
indexmap = { version = "2.1.0", features = ["serde"] }
log = "0.4.19"
lz4_flex = "0.11.1"
lzma-rs = "0.3.0"
memchr = "2.5.0"
nix = { version = "0.29", default-features = false, features = ["sched"] }
peekread = "0.1.1"
reqwest = { version = "0.12", features = ["rustls-tls-native-roots", "socks", "stream"], default-features = false }
ruzstd = "0.7"
# only the cert parser is used, but sequoia-openpgp doesn't allow building with no backend
sequoia-openpgp = { version = "1.18", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha1 = "0.10.5"
sha2 = "0.10.7"
tar = "0.4.38"
tempfile = "3.6.0"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "process", "signal"] }
toml = "0.8"
urlencoding = "2.1.2"