-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (60 loc) · 2.3 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
# The MIT License (MIT)
#
# Copyright (c) 2024 Aliaksei Bialiauski
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
[package]
name = "ghiqc"
version = "0.0.0"
edition = "2021"
license = "MIT"
description = "Command-line tool for checking quality of bug reports in GitHub Issues"
authors = ["Aliaksei Bialiauski <[email protected]>"]
[[bin]]
name = "ghiqc"
path = "src/main.rs"
[lints.rust]
missing_docs = "deny"
[lints.clippy]
unwrap_used = "deny"
question_mark_used = "deny"
[dependencies]
anyhow = "1.0.86"
serde = { version = "1.0.203", features = ["derive"] }
tracing-subscriber = "0.3.18"
log = { version = "0.4.21", features = [] }
env_logger = "0.11.3"
clap = { version = "4.5.7", optional = true, features = ["derive", "string"] }
clap_complete = { version = "4.5.1", optional = true }
clap_mangen = { version = "0.2.20", optional = true }
clap_complete_nushell = { version = "4.5.1", optional = true }
octocrab = "0.41.0"
hamcrest = "0.1.5"
tracing = "0.1.40"
tokio = { version = "1.39.1", features = ["rt", "rt-multi-thread", "macros"] }
tokio-macros = "2.4.0"
reqwest = { version = "0.12.5", features = ["json"] }
serde_json = "1.0.120"
testing_logger = "0.1.1"
[dev-dependencies]
assert_cmd = "2.0.14"
tempdir = "0.3.7"
[features]
default = ["cli"]
cli = ["clap", "clap_complete", "clap_mangen", "clap_complete_nushell"]