2026-03-23 18:31:11 +01:00
|
|
|
[package]
|
2026-04-11 00:10:38 -04:00
|
|
|
name = "noxa-cli"
|
2026-03-23 18:31:11 +01:00
|
|
|
description = "CLI for extracting web content into LLM-optimized formats"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
2026-04-11 00:10:38 -04:00
|
|
|
name = "noxa"
|
2026-03-23 18:31:11 +01:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-04-11 00:10:38 -04:00
|
|
|
noxa-core = { workspace = true }
|
|
|
|
|
noxa-fetch = { workspace = true }
|
|
|
|
|
noxa-llm = { workspace = true }
|
|
|
|
|
noxa-pdf = { workspace = true }
|
2026-03-23 18:31:11 +01:00
|
|
|
dotenvy = { workspace = true }
|
|
|
|
|
rand = "0.8"
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
clap = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
|
|
|
regex = "1"
|
|
|
|
|
url = "2"
|