[package]
name = "wordpress-audit"
version = "1.0.0"
authors = ["Robert F. Ecker <robert@robdotec.com>"]
edition = "2024"
rust-version = "1.91.1"
description = "WordPress audit tool - detects outdated core, plugins, and themes"
documentation = "https://docs.rs/wordpress-audit"
repository = "https://github.com/robdotec/wordpress-audit"
license = "MIT"
keywords = ["wordpress", "security", "audit", "scanner", "cli"]
categories = ["command-line-utilities", "web-programming"]
[features]
default = []
[dependencies]
clap = { version = "4.5", features = ["derive", "color"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "gzip", "json", "cookies"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
scraper = "0.22"
url = "2.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
comfy-table = "7"
regex = "1"
[dev-dependencies]
wiremock = "0.6"
tokio-test = "0.4"
[package.metadata.docs.rs]
all-features = true