-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
36 lines (30 loc) · 862 Bytes
/
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
[package]
name = "bugreport"
description = "Collect system and environment information for bug reports"
categories = ["command-line-interface"]
homepage = "https://github.com/sharkdp/bugreport"
repository = "https://github.com/sharkdp/bugreport"
keywords = [
"bugreport",
"diagnostics",
"cross-platform",
"cli",
"terminal"
]
license = "MIT/Apache-2.0"
authors = ["David Peter <[email protected]>"]
edition = "2018"
version = "0.5.0"
[features]
default = ["collector_operating_system", "git_hash", "format_markdown"]
collector_operating_system = ["dep:sysinfo"]
git_hash = ["git-version"]
format_markdown = []
format_plaintext = []
[dependencies]
sysinfo = { version = "0.33.1", optional = true }
git-version = { version = "0.3", optional = true }
shell-escape = "0.1"
[dev-dependencies]
pretty_assertions = "1.1.0"
tempfile = "3.3.0"