[package]
edition = "2021"
rust-version = "1.74"
name = "oratos"
version = "0.3.1"
authors = ["latentmeta"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Website visibility intelligence for SEO, accessibility, structured metadata, and AI readiness."
homepage = "https://github.com/latentmeta/oratos"
documentation = "https://docs.rs/oratos"
readme = "README.md"
keywords = [
"seo",
"accessibility",
"audit",
"html",
"llm",
]
categories = [
"command-line-utilities",
"development-tools",
"web-programming",
]
license = "MIT"
repository = "https://github.com/latentmeta/oratos"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "oratos"
path = "src/lib.rs"
[[bin]]
name = "oratos"
path = "src/main.rs"
[[test]]
name = "audit_fixtures"
path = "tests/audit_fixtures.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "http_load"
path = "tests/http_load.rs"
[[test]]
name = "rule_cases"
path = "tests/rule_cases.rs"
[[test]]
name = "url_audit"
path = "tests/url_audit.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.quick-xml]
version = "0.41"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.scraper]
version = "0.27"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2"
[dependencies.walkdir]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"