stygian-plugin 0.14.1

Visual data extraction fallback subsystem with CSS/XPath selectors, idempotent request handling, and composable transformation pipelines.
Documentation
[package]
name = "stygian-plugin"
description = "Visual data extraction fallback subsystem with CSS/XPath selectors, idempotent request handling, and composable transformation pipelines."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
keywords = ["extraction", "scraping", "selector", "dom", "template"]
categories = ["web-programming", "text-processing"]

[dependencies]
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.49", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
ulid = { version = "1.1", features = ["serde"] }
regex = "1.10"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }

# HTTP transport (feature-gated)
axum = { version = "0.8", features = ["macros"], optional = true }
tower-http = { version = "0.7", features = ["cors", "trace"], optional = true }
tower = { version = "0.5", optional = true }

# Stygian crates
stygian-graph = { path = "../stygian-graph", version = "0.14.0", optional = true }

# Parsing
scraper = "0.27"

[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.8"
reqwest = { version = "0.13", features = ["json"] }

[features]
default = []
javascript = []
graph-integration = ["stygian-graph"]
http = ["axum", "tower-http", "tower"]

[[bin]]
name = "stygian-plugin-mcp"
path = "src/bin/mcp_server.rs"
required-features = []

[[example]]
name = "basic_extraction"
path = "examples/basic_extraction.rs"

[lints]
workspace = true