ytx-cli 0.1.0

Extract YouTube transcripts from the terminal. Pipe-friendly, no API key needed.
[package]
name = "ytx-cli"
version = "0.1.0"
edition = "2024"
description = "Extract YouTube transcripts from the terminal. Pipe-friendly, no API key needed."
license = "MIT"
repository = "https://github.com/koguchic/ytx"
keywords = ["youtube", "transcript", "captions", "cli", "llm"]
categories = ["command-line-utilities", "multimedia", "text-processing"]
readme = "README.md"

[[bin]]
name = "ytx"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "cookies"] }
regex = "1"
serde_json = "1"
roxmltree = "0.20"
html-escape = "0.2"