[package]
name = "flq"
version = "1.0.0"
edition = "2021"
description = "fetch the web as lean, token-efficient text"
license = "MIT"
repository = "https://github.com/rxxuzi/flq"
readme = "README.md"
keywords = ["html-to-text", "agent", "web-scraping", "llm", "mcp"]
categories = ["command-line-utilities", "web-programming", "text-processing"]
exclude = ["/*.exe", "/.github", "/.claude"]
[dependencies]
clap = { version = "4", features = ["derive"] }
scraper = "0.19"
ureq = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmcp = { version = "2", features = ["server", "transport-io", "macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std"] }
[profile.release]
lto = true
strip = true