Compare commits

..

1 commit

Author SHA1 Message Date
47c5c2cc97
Release 2.2.1 2024-05-06 20:57:41 +02:00
4 changed files with 4 additions and 2 deletions

2
Cargo.lock generated
View file

@ -43,7 +43,7 @@ dependencies = [
[[package]]
name = "aob-lemmy-bot"
version = "2.2.0"
version = "2.2.1"
dependencies = [
"async-trait",
"chrono",

View file

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

View file

@ -1,6 +1,7 @@
use async_trait::async_trait;
pub mod jnovel;
mod tobooks;
#[async_trait]
pub(crate) trait Fetcher {

View file

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