-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
67 lines (59 loc) · 1.61 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
60
61
62
63
64
65
66
67
[package]
name = "arch-repro-status"
version = "1.3.5"
description = "Check the reproducibility status of your Arch Linux packages"
authors = ["Orhun Parmaksız <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
documentation = "https://gitlab.archlinux.org/archlinux/arch-repro-status"
homepage = "https://gitlab.archlinux.org/archlinux/arch-repro-status"
repository = "https://gitlab.archlinux.org/archlinux/arch-repro-status"
keywords = ["archlinux", "reproducibility", "build"]
categories = ["command-line-utilities"]
publish = false
default-run = "arch-repro-status"
[[bin]]
name = "arch-repro-status-completions"
path = "src/bin/completions.rs"
[features]
dumb_terminal = ["colored/no-color"]
[dependencies]
reqwest = { version = "0.11.15", features = ["json"] }
tokio = { version = "1.26.0", features = ["full"] }
futures = { version = "0.3.27", features = ["executor"] }
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
thiserror = "1.0.40"
anyhow = "1.0.70"
log = "0.4.17"
pretty_env_logger = "0.4.0"
rebuilderd-common = "0.19.0"
colored = "2.0.0"
dialoguer = "0.10.3"
ctrlc = { version = "3.2.5", features = ["termination"] }
console = "0.15.5"
dirs-next = "2.0.0"
bytesize = "1.2.0"
alpm = "2.2.1"
chrono = "0.4.24"
clap_complete = "4.1.5"
vecrem = "0.1"
[dependencies.clap]
version = "4.1.13"
features = ["derive", "env", "wrap_help"]
[dev-dependencies]
pretty_assertions = "1.3.0"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.release]
opt-level = 3
debug = false
panic = "abort"
lto = true
codegen-units = 1
[profile.test]
opt-level = 0
debug = true