changeset 168:8e1cc803f3cc

fix path for async-google-apis-common in cargo.toml
author Michael Kefeder <m.kefeder@gmail.com>
date Thu, 10 Dec 2020 12:19:52 +0100
parents 5d0dc03d4a90
children 7c91963678f0
files example_crates/drive_example/Cargo.toml example_crates/gcs_example/Cargo.toml
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/example_crates/drive_example/Cargo.toml	Fri Nov 27 20:44:48 2020 +0100
+++ b/example_crates/drive_example/Cargo.toml	Thu Dec 10 12:19:52 2020 +0100
@@ -7,7 +7,7 @@
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-async-google-apis-common = { path = "../async-google-apis-common/" }
+async-google-apis-common = { path = "../../async-google-apis-common/" }
 
 anyhow = "~1.0"
 serde = "~1.0"
--- a/example_crates/gcs_example/Cargo.toml	Fri Nov 27 20:44:48 2020 +0100
+++ b/example_crates/gcs_example/Cargo.toml	Thu Dec 10 12:19:52 2020 +0100
@@ -7,7 +7,7 @@
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-async-google-apis-common = { path = "../async-google-apis-common" }
+async-google-apis-common = { path = "../../async-google-apis-common" }
 
 anyhow = "~1.0"
 chrono = "~0.4"