diff --git a/Cargo.lock b/Cargo.lock index c691268..ebc0f89 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "aob-lemmy-bot" -version = "2.2.0" +version = "2.2.1" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 2001f73..439f50f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Neshura"] name = "aob-lemmy-bot" -version = "2.2.0" +version = "2.2.1" edition = "2021" description = "Bot for automatically posting new chapters of 'Ascendance of a Bookworm' released by J-Novel Club" license = "GPL-3.0-or-later" diff --git a/src/fetchers/mod.rs b/src/fetchers/mod.rs index 126aeb2..fd143fb 100644 --- a/src/fetchers/mod.rs +++ b/src/fetchers/mod.rs @@ -1,6 +1,7 @@ use async_trait::async_trait; pub mod jnovel; +mod tobooks; #[async_trait] pub(crate) trait Fetcher { diff --git a/src/main.rs b/src/main.rs index fc93d6a..880e658 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ use chrono::{Duration}; use log::{LevelFilter}; use once_cell::sync::Lazy; use reqwest::Client; +use std::fmt::Debug; use systemd_journal_logger::{JournalLog}; mod bot;