Skip to content

Commit

Permalink
Update google-clis-common
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Oct 2, 2024
1 parent 926ad7b commit b70df88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions google-clis-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ edition = "2021"
doctest = false

[dependencies]
mime = "^ 0.3"
yup-oauth2 = "9"
clap = "2"
mime = "0.3"
serde = "1"
serde_json = "1"
strsim = "0.11"
clap = "2"
yup-oauth2 = "11"
5 changes: 2 additions & 3 deletions google-clis-common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use clap::arg_enum;
use mime::Mime;
use yup_oauth2::{ApplicationSecret, ConsoleApplicationSecret};
use serde_json as json;
use serde_json::value::Value;
use clap::arg_enum;
use yup_oauth2::{ApplicationSecret, ConsoleApplicationSecret};

use std::env;
use std::fmt;
Expand Down Expand Up @@ -750,7 +750,6 @@ pub fn application_secret_from_directory(
unreachable!();
}


#[cfg(test)]
mod test_cli {
use super::*;
Expand Down

0 comments on commit b70df88

Please sign in to comment.