create workspace & update deps

This commit is contained in:
OMGeeky
2024-05-12 19:18:18 +02:00
parent 01fcab8e48
commit 61c6c1c76b
12 changed files with 4705 additions and 7 deletions

16
.cargo/config.toml Normal file
View File

@@ -0,0 +1,16 @@
[net]
git-fetch-with-cli = true
#[patch."https://github.com/OMGeeky/backup_config.git"]
#backup-config = { path = "../backup_config" }
#
#[patch."https://github.com/OMGeeky/twitch_backup.local_db.git"]
#twba-local-db = { path = "../twitch_backup.local_db" }
#
#[patch."https://github.com/OMGeeky/twba_reqwest_backoff.git"]
#reqwest-backoff = { path = "../reqwest_backoff" }
[patch.crates-io]
yup-oauth2 = { git = "https://github.com/dermesser/yup-oauth2.git", rev = "06d3b7e9d2553dc3ef836b559a84aab29edb86c3" }
google-youtube3 = { version = "5.0.3", git = "https://github.com/OMGeeky/google-apis-rs.git", branch = "scope-derives" }
google-apis-common = { version = "6.0.0", git = "https://github.com/OMGeeky/google-apis-rs.git", branch = "scope-derives" }

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
.idea

4661
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "twba"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
"twba.common",
"twba.downloader",
"twba-code-receiver",
"twba.fetcher",
"twba.local_db",
"twba.notifier",
"twba.reqwest_backoff",
"twba.uploader",
"twba.splitter",
]
[dependencies]
twba-common = { version = "0.2", git = "https://github.com/OMGeeky/twba.common.git" }

0
src/lib.rs Normal file
View File