changeset 143:5d54636d2bee

Prepare crate for integration tests
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 27 Oct 2020 10:40:51 +0100
parents eb9e69e75e94
children 0467dfe39f46
files test_integration/Cargo.toml test_integration/src/main.rs
diffstat 2 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test_integration/Cargo.toml	Tue Oct 27 10:40:51 2020 +0100
@@ -0,0 +1,18 @@
+[package]
+name = "test_integration"
+version = "0.1.0"
+authors = ["Lewin Bormann <lewin@lewin-bormann.info>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+async-google-apis-common = "~0.1"
+
+anyhow = "~1.0"
+serde = "~1.0"
+env_logger = "~0.8"
+hyper-rustls = "~0.20"
+hyper = "~0.13"
+mockito = "~0.27"
+tokio = { version = "~0.2", features = ["full"] }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test_integration/src/main.rs	Tue Oct 27 10:40:51 2020 +0100
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}