This commit is contained in:
OMGeeky
2023-03-04 20:15:44 +01:00
commit 2d1ed89afc
3 changed files with 24 additions and 0 deletions

5
.dockerignore Normal file
View File

@@ -0,0 +1,5 @@
target/
.idea/
auth/
tests/
!/target/release/

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
/target
/auth/
/temp/

16
Cargo.toml Normal file
View File

@@ -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"