29 lines
1.2 KiB
TOML
29 lines
1.2 KiB
TOML
[package]
|
|
name = "teachertracker-rs"
|
|
version = "0.1.3"
|
|
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]
|
|
chrono = "0.4.41"
|
|
futures = "0.3.31"
|
|
# mwbot = { git = "https://gitlab.wikimedia.org/repos/mwbot-rs/mwbot.git", rev = "05cbb12188f18e2da710de158d89a9a4f1b42689", default-features = false, features = ["generators", "mwbot_derive"] }
|
|
mwbot = { version = "0.7.0", default-features = false, features = ["generators", "mwbot_derive"] }
|
|
rand = "0.9.2"
|
|
reqwest = "0.12.22"
|
|
scraper = "0.24.0"
|
|
sentry = { version = "0.45.0", features = ["tracing"] }
|
|
sentry-tracing = { version = "0.45.0", features = ["backtrace", "logs"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_plain = "1.0.2"
|
|
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"
|