mwbot 0.5.0-alpha.2

A MediaWiki bot framework
Documentation
[package]
name = "mwbot"
version = "0.5.0-alpha.2"
edition = "2021"
rust-version = "1.60"
description = "A MediaWiki bot framework"
license = "GPL-3.0-or-later"
homepage = "https://www.mediawiki.org/wiki/mwbot-rs"
repository = "https://gitlab.wikimedia.org/repos/mwbot-rs/mwbot/"
keywords = ["mediawiki", "api", "bot", "robot", "framework"]
categories = ["web-programming"]

[dependencies]
dirs = "4"
mwapi = {path = "../mwapi", version = "^0.5.0-alpha.1", features = ["upload"]}
mwapi_errors = {path = "../mwapi_errors", version = "^0.3.0-alpha.1", features = ["from-mwtitle"]}
mwapi_responses = {path = "../mwapi_responses", version = "^0.3.0"}
mwtitle = {path = "../mwtitle", version = "^0.2.0"}
parsoid = {path = "../parsoid", version = "^0.8.0-alpha.1"}
once_cell = "1.8.0"
serde = {version = "1", features = ["derive"]}
serde_json = "1.0"
thiserror = "1.0"
tokio = {version = "1.8", features = ["rt", "sync", "time"]}
toml = "0.5"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[dev-dependencies]
tokio = {version = "1.0", features = ["macros"]}

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs"]