Neshura
7a6ebd6381
All checks were successful
Build and Release Binary File / test (push) Successful in 44s
Build and Release Binary File / build (push) Successful in 40s
Build and Release Binary File / upload-generic-package (push) Successful in 2s
Build and Release Binary File / upload-debian-package (push) Successful in 1s
Build and Release Binary File / upload-release (push) Successful in 8s
Run Tests on Code / run-tests (push) Successful in 9s
Build binary file and bundle packages / test (pull_request) Successful in 14s
Build binary file and bundle packages / build (pull_request) Successful in 37s
33 lines
1 KiB
TOML
33 lines
1 KiB
TOML
[package]
|
|
authors = ["Neshura"]
|
|
name = "aob-lemmy-bot"
|
|
version = "2.2.0-rc.3"
|
|
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"
|
|
|
|
[package.metadata.deb]
|
|
extended-description = "Bot for automatically posting new chapters of 'Ascendance of a Bookworm' released by J-Novel Club"
|
|
maintainer-scripts = "debian/"
|
|
revision = "1"
|
|
depends = ["libc6", "libssl3", "systemd"]
|
|
systemd-units = { enable = false }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "^0.4.26"
|
|
lemmy_api_common = "0.19.1"
|
|
lemmy_db_schema = "0.19.1"
|
|
once_cell = "^1.18.0"
|
|
reqwest = { version = "^0.11.18", features = ["blocking", "json"] }
|
|
serde = "^1.0.164"
|
|
serde_derive = "^1.0.164"
|
|
serde_json = "^1.0.97"
|
|
strum_macros = "^0.25.0"
|
|
tokio = { version = "^1.32.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
url = "^2.4.0"
|
|
confy = "^0.5.1"
|
|
toml = "^0.8.8"
|
|
systemd-journal-logger = "^2.1.1"
|
|
log = "^0.4.20" |