-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
43 lines (39 loc) · 1.25 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
[package]
name = "hydra-check"
version = "2.0.3"
description = "Check hydra for the build status of a package"
authors = ["Felix Richter <[email protected]>", "Bryan Lai <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/nix-community/hydra-check"
keywords = ["cli"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.89"
clap = { version = "4.5.20", features = ["derive"] }
clap_complete = "4.5.37"
colored = "2.1.0"
comfy-table = { version = "7.1.1", features = ["custom_styling"] }
flexi_logger = "0.29.3"
indexmap = { version = "2.6.0", features = ["serde"] }
log = "0.4.22"
regex = "1.11.0"
reqwest = { version = "0.12.8", features = ["blocking", "cookies", "gzip"] }
scraper = "0.20.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.132"
serde_with = { version = "3.11.0", default-features = false, features = ["macros"] }
[dev-dependencies]
insta = "1.41.1"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
manual_string_new = "allow"
match_bool = "allow"
single_match = "allow"
single_match_else = "allow"
missing_errors_doc = "allow"
multiple_crate_versions = "allow"