summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/bin/bat/main.rs3
3 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b483ef2b..48f16bbd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -197,8 +197,6 @@ dependencies = [
[[package]]
name = "bugreport"
version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "824268bc0fcb3b94da597b81fa9dd52175cfde5522f4892a0cff3932802ff805"
dependencies = [
"snailquote",
"sys-info",
diff --git a/Cargo.toml b/Cargo.toml
index 9538f515..5800348d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -51,7 +51,7 @@ serde_yaml = "0.8"
semver = "0.11"
path_abs = { version = "0.5", default-features = false }
clircle = "0.2.0"
-bugreport = "0.1"
+bugreport = "0.2"
[dependencies.git2]
version = "0.13"
diff --git a/src/bin/bat/main.rs b/src/bin/bat/main.rs
index cd164aba..97690a8d 100644
--- a/src/bin/bat/main.rs
+++ b/src/bin/bat/main.rs
@@ -243,6 +243,9 @@ fn run() -> Result<bool> {
"BAT_THEME",
"BAT_TABS",
]))
+ .info(FileContent::new("Config file", config_file()))
+ .info(CompileTimeInformation::default())
+ .info(CommandOutput::new("Less version", "less", &["--version"]))
.print_markdown();
return Ok(true);