Skip to content

Commit

Permalink
fix compilation broken by patch release 1.0.49 of anyhow
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Nov 27, 2021
1 parent 4b71ead commit 56940f4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="v1.5.4"></a>
### v1.5.4 - 2021-11-27
- fix compilation broken by patch release 1.0.49 of anyhow

<a name="v1.5.3"></a>
### v1.5.3 - 2021-07-13
- nothing new visible, small internal upgrades
Expand Down
15 changes: 8 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rhit"
version = "1.5.3"
version = "1.5.4"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/rhit"
description = "nginx log analyzer"
Expand All @@ -10,7 +10,7 @@ license = "MIT"
categories = ["command-line-utilities"]

[dependencies]
anyhow = "1.0"
anyhow = "1.0.49"
argh = "0.1.3"
bet = "0.4.0"
crossterm = "0.20.0"
Expand All @@ -28,7 +28,7 @@ termimad = { version = "0.14.0", default-features = false, features = ["special-
thiserror = "1.0"

[dev-dependencies]
glassbench = "0.3"
glassbench = "0.3.1"

[profile.release]
debug = false
Expand Down
2 changes: 1 addition & 1 deletion src/fields.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use {
anyhow::*,
anyhow::Result,
argh::FromArgValue,
};

Expand Down
2 changes: 1 addition & 1 deletion src/nginx_log/file_reader.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use {
crate::*,
anyhow::*,
anyhow::{bail, Result},
crossterm::{
self,
cursor,
Expand Down

0 comments on commit 56940f4

Please sign in to comment.