Skip to content

Commit

Permalink
chore(dependencies): update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjani committed Jul 14, 2021
1 parent c088cd9 commit 97058ff
Show file tree
Hide file tree
Showing 4 changed files with 119 additions and 92 deletions.
199 changes: 113 additions & 86 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@ dialoguer = "0.8.0"
bat = { version = "0.18.0", default-features = false, features = ["regex-fancy"] }

# Indicator bar
indicatif = "0.15.0"
indicatif = "0.16.2"

# Templating markdown
handlebars = "3.5.4"
handlebars = "4.1.0"

# Sanitizing filenames
sanitize-filename = "0.3.0"
handlebars_misc_helpers = "0.11.2"
handlebars_misc_helpers = "0.12.1"

[dev-dependencies]
assert_cmd = "1.0.3"
predicates = "1.0.7"
predicates = "2.0.0"
tempfile = "3.2.0"
dotenv = "0.15.0"
futures = "0.3.14"
Expand Down
2 changes: 1 addition & 1 deletion src/gooseberry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ impl Gooseberry {
})
})
.collect();
pb.finish_with_message(&format!("Fetched {} annotations", annotations.len()));
pb.finish_with_message(format!("Fetched {} annotations", annotations.len()));
Ok(annotations)
}

Expand Down
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub fn get_spinner(message: &str) -> indicatif::ProgressBar {
.tick_chars("/|\\- ")
.template("{spinner:.dim.bold.blue} {wide_msg}"),
);
spinner.set_message(message);
spinner.set_message(message.to_owned());
spinner
}

Expand Down

0 comments on commit 97058ff

Please sign in to comment.