Pin google_api_auth to known working version.

This commit is contained in:
Bill Thiede 2020-06-23 21:14:38 -07:00
parent 7cc0af4f07
commit 625af91c20
2 changed files with 8 additions and 3 deletions

9
Cargo.lock generated
View File

@ -895,7 +895,7 @@ version = "0.1.0-20200203"
source = "git+https://git.z.xinu.tv/wathiede/google-api-photoslibrary#7480a9c0a0e432169d6c300adb50276f21a54eb7" source = "git+https://git.z.xinu.tv/wathiede/google-api-photoslibrary#7480a9c0a0e432169d6c300adb50276f21a54eb7"
dependencies = [ dependencies = [
"chrono", "chrono",
"google_api_auth", "google_api_auth 0.1.0 (git+https://github.com/google-apis-rs/generator)",
"google_field_selector", "google_field_selector",
"mime 0.3.16", "mime 0.3.16",
"percent-encoding 2.1.0", "percent-encoding 2.1.0",
@ -909,6 +909,11 @@ dependencies = [
name = "google_api_auth" name = "google_api_auth"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/google-apis-rs/generator#a848301466556f16d48df64ef16b92a8327a8406" source = "git+https://github.com/google-apis-rs/generator#a848301466556f16d48df64ef16b92a8327a8406"
[[package]]
name = "google_api_auth"
version = "0.1.0"
source = "git+https://github.com/google-apis-rs/generator?rev=7504e31#7504e310e8c4c361aca998ea14c309d5c46967cc"
dependencies = [ dependencies = [
"tokio 0.1.22", "tokio 0.1.22",
"yup-oauth2", "yup-oauth2",
@ -1980,7 +1985,7 @@ dependencies = [
"cacher", "cacher",
"criterion", "criterion",
"google-photoslibrary1", "google-photoslibrary1",
"google_api_auth", "google_api_auth 0.1.0 (git+https://github.com/google-apis-rs/generator?rev=7504e31)",
"hexihasher", "hexihasher",
"image", "image",
"imageutils", "imageutils",

View File

@ -9,7 +9,7 @@ edition = "2018"
[dependencies] [dependencies]
# TODO, use https://git.z.xinu.tv/wathiede/google-api-photoslibrary and figure out auth story. # TODO, use https://git.z.xinu.tv/wathiede/google-api-photoslibrary and figure out auth story.
google-photoslibrary1 = { git = "https://git.z.xinu.tv/wathiede/google-api-photoslibrary" } google-photoslibrary1 = { git = "https://git.z.xinu.tv/wathiede/google-api-photoslibrary" }
google_api_auth = { git = "https://github.com/google-apis-rs/generator", features = ["with-yup-oauth2"] } google_api_auth = { git = "https://github.com/google-apis-rs/generator", rev="7504e31", features = ["with-yup-oauth2"] }
hexihasher = { git = "https://git.z.xinu.tv/wathiede/hexihasher" } hexihasher = { git = "https://git.z.xinu.tv/wathiede/hexihasher" }
lazy_static = "1.4.0" lazy_static = "1.4.0"
log = "0.4.8" log = "0.4.8"