2023-06-18 22:26:50 +00:00
|
|
|
[package]
|
2023-12-29 13:44:32 +00:00
|
|
|
authors = ["Neshura"]
|
2023-12-29 13:43:55 +00:00
|
|
|
name = "aob-lemmy-bot"
|
2024-05-06 19:53:14 +00:00
|
|
|
version = "2.2.4"
|
2023-06-18 22:26:50 +00:00
|
|
|
edition = "2021"
|
2023-12-29 13:44:32 +00:00
|
|
|
description = "Bot for automatically posting new chapters of 'Ascendance of a Bookworm' released by J-Novel Club"
|
|
|
|
license = "GPL-3.0-or-later"
|
2023-06-18 22:26:50 +00:00
|
|
|
|
2023-12-29 13:45:05 +00:00
|
|
|
[package.metadata.deb]
|
|
|
|
extended-description = "Bot for automatically posting new chapters of 'Ascendance of a Bookworm' released by J-Novel Club"
|
2023-12-30 00:30:53 +00:00
|
|
|
maintainer-scripts = "debian/"
|
2023-12-29 13:45:05 +00:00
|
|
|
revision = "1"
|
2023-12-29 13:56:16 +00:00
|
|
|
depends = ["libc6", "libssl3", "systemd"]
|
2023-12-30 00:30:53 +00:00
|
|
|
systemd-units = { enable = false }
|
2023-12-29 13:45:24 +00:00
|
|
|
|
2023-06-18 22:26:50 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-06 19:53:02 +00:00
|
|
|
chrono = "^0.4"
|
2024-05-06 18:55:48 +00:00
|
|
|
lemmy_api_common = "0.19.3"
|
|
|
|
lemmy_db_schema = "0.19.3"
|
2024-05-06 19:53:02 +00:00
|
|
|
once_cell = "^1.19"
|
|
|
|
reqwest = { version = "^0.12", features = ["blocking", "json"] }
|
|
|
|
serde = "^1.0"
|
|
|
|
serde_derive = "^1.0"
|
|
|
|
serde_json = "^1.0"
|
|
|
|
strum_macros = "^0.26"
|
|
|
|
tokio = { version = "^1.37", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
url = "^2.5"
|
|
|
|
confy = "^0.6"
|
|
|
|
toml = "^0.8"
|
2023-12-29 23:41:40 +00:00
|
|
|
systemd-journal-logger = "^2.1.1"
|
2024-05-06 19:53:02 +00:00
|
|
|
log = "^0.4"
|
|
|
|
async-trait = "^0.1"
|