update crate name

This commit is contained in:
OMGeeky
2024-04-20 13:33:45 +02:00
parent f5d80a8163
commit 5004c83a13
3 changed files with 7 additions and 7 deletions

View File

@@ -1,12 +1,12 @@
[package]
name = "twitch_data"
name = "twba-twitch-data"
version = "0.2.10"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
downloader_config = { git = "https://github.com/OMGeeky/downloader_config" }
twba-downloader-config = { git = "https://github.com/OMGeeky/downloader_config" }
exponential_backoff = { git = "https://github.com/OMGeeky/exponential_backoff" }

View File

@@ -9,7 +9,7 @@ use std::{
};
use chrono::{DateTime, Utc};
use downloader_config::load_config;
use twba_downloader_config::load_config;
use exponential_backoff::twitch::{
check_backoff_twitch_get, check_backoff_twitch_get_with_client,
check_backoff_twitch_with_client,

View File

@@ -3,10 +3,10 @@ use std::error::Error;
use std::path::Path;
use std::path::PathBuf;
use tracing::info;
use twitch_data::combine_parts_into_single_ts;
use twitch_data::convert_ts_to_mp4;
use twitch_data::get_client;
use twitch_data::sort_video_part_filenames;
use twba_twitch_data::combine_parts_into_single_ts;
use twba_twitch_data::convert_ts_to_mp4;
use twba_twitch_data::get_client;
use twba_twitch_data::sort_video_part_filenames;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {