changeset 169:7c91963678f0

Merge pull request #7 from mike-kfed/example_fixes fix path for async-google-apis-common in cargo.toml
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 10 Dec 2020 12:21:46 +0100
parents 5d0dc03d4a90 (current diff) 8e1cc803f3cc (diff)
children 714165191d0d
files
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:21:46 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:21:46 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"