Implemented watchdog

This commit is contained in:
Lukas Wölfer
2025-07-22 01:39:41 +02:00
parent 8bae1fdfbb
commit 618a6c1d02
6 changed files with 373 additions and 211 deletions

View File

@@ -2,9 +2,19 @@
name = "dancing-bot-teachers"
version = "0.1.0"
edition = "2024"
authors = ["Lukas Wölfer <coding@thasky.one>"]
description = "A MediaWiki bot that updates score information of teachers"
license = "MIT"
repository = "https://gitea.thasky.one/lukas/mediawiki-bot"
readme = "README.md"
keywords = ["mediawiki", "bot", "teacher", "score", "automation"]
categories = ["web-programming", "api-bindings", "automation"]
[dependencies]
mwbot = { git = "https://gitlab.wikimedia.org/repos/mwbot-rs/mwbot.git", rev = "05cbb12188f18e2da710de158d89a9a4f1b42689" }
mwbot = { git = "https://gitlab.wikimedia.org/repos/mwbot-rs/mwbot.git", rev = "05cbb12188f18e2da710de158d89a9a4f1b42689", default-features = false, features = ["generators", "mwbot_derive"] }
reqwest = "0.12.22"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.46.1", features = ["rt", "rt-multi-thread", "macros"] }
thiserror = "2.0.12"
tokio = { version = "1.46.1", features = ["rt"] }
tracing = { version = "0.1.41", default-features = false, features = ["std"] }
tracing-subscriber = "0.3.19"