From 2d1ed89afc1b190e0c95cca058b717b6cb1b84f2 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Sat, 4 Mar 2023 20:15:44 +0100 Subject: [PATCH] ignores --- .dockerignore | 5 +++++ .gitignore | 3 +++ Cargo.toml | 16 ++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .dockerignore create mode 100644 .gitignore create mode 100644 Cargo.toml diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..1898874 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +target/ +.idea/ +auth/ +tests/ +!/target/release/ \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..48e050e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target +/auth/ +/temp/ diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..2115c45 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "downloader" +version = "0.1.2" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +google_bigquery = { path = "../../../google_bigquery" } +google_youtube = { path = "../../../google_youtube" } +twitch_data = { path = "../../../twitch_data" } +downloader_config = { path = "../../../downloader_config" } +tokio = "1.23" +google-bigquery2 = "4.0.1" +chrono = "0.4.23" +nameof = "1.2.2" \ No newline at end of file