Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
slyshykO authored and rigwild committed Aug 15, 2023
1 parent 33c1047 commit b5cec36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ path = "src/main.rs"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
thiserror = "1.0"
directories = "5.0.0"
directories = "5.0.1"
rand = "0.8.5"
orion = "0.17.4"
anyhow = "1.0.70"
whoami = "1.4.0"
spinoff = "0.7.0"
regex = "1.7.3"
orion = "0.17.5"
anyhow = "1.0.72"
whoami = "1.4.1"
spinoff = "0.8.0"
regex = "1.9.3"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const LOADING_MESSAGES: [&'static str; 7] = [

pub fn run(cli_args: &CliArgs, config: &Config) -> anyhow::Result<String> {
if !cli_args.raw {
let spinner = Spinner::new(spinners::Dots, get_loading_message(), Color::Blue);
let mut spinner = Spinner::new(spinners::Dots, get_loading_message(), Color::Blue);
let response = openai::ask_chatgpt(
cli_args.input.as_str(),
cli_args.pre_prompt,
Expand Down

0 comments on commit b5cec36

Please sign in to comment.