tail-fin-cli 0.4.0

Multi-site browser automation CLI — attaches to Chrome or auto-launches a stealth browser to drive 14+ sites
[package]
name = "tail-fin-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Multi-site browser automation CLI — attaches to Chrome or auto-launches a stealth browser to drive 14+ sites"
repository.workspace = true
homepage.workspace = true
readme = "README.md"
keywords = ["browser-automation", "cli", "scraping", "cdp"]
categories = ["command-line-utilities", "web-programming"]

[[bin]]
name = "tail-fin"
path = "src/main.rs"

[features]
default = ["all"]
all = ["twitter", "reddit", "bloomberg", "coupang", "instagram", "xhs", "youtube", "grok", "sa", "s591", "gen", "pcc", "nansen", "spotify"]
twitter = ["dep:tail-fin-twitter"]
reddit = ["dep:tail-fin-reddit"]
bloomberg = ["dep:tail-fin-bloomberg"]
coupang = ["dep:tail-fin-coupang"]
instagram = ["dep:tail-fin-instagram"]
xhs = ["dep:tail-fin-xhs"]
youtube = ["dep:tail-fin-youtube"]
grok = ["dep:tail-fin-grok"]
sa = ["dep:tail-fin-sa"]
s591 = ["dep:tail-fin-591"]
gen = ["dep:tail-fin-gen"]
pcc = ["dep:tail-fin-pcc"]
nansen = ["dep:tail-fin-nansen"]
spotify = ["dep:tail-fin-spotify"]

[dependencies]
tail-fin-cli-core = { workspace = true }
tail-fin-common = { workspace = true }
tail-fin-twitter = { workspace = true, features = ["http"], optional = true }
tail-fin-grok = { workspace = true, optional = true }
tail-fin-xhs = { workspace = true, optional = true }
tail-fin-instagram = { workspace = true, optional = true }
tail-fin-reddit = { workspace = true, optional = true }
tail-fin-bloomberg = { workspace = true, optional = true }
tail-fin-coupang = { workspace = true, optional = true }
tail-fin-youtube = { workspace = true, optional = true }
tail-fin-591 = { workspace = true, optional = true }
tail-fin-sa = { workspace = true, features = ["http"], optional = true }
tail-fin-gen = { workspace = true, optional = true }
tail-fin-pcc = { workspace = true, optional = true }
tail-fin-nansen = { workspace = true, optional = true }
tail-fin-spotify = { workspace = true, optional = true }
night-fury-cli-core = { workspace = true }
night-fury-core = { workspace = true }
clap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
url = { workspace = true }

[dev-dependencies]
assert_cmd = "2"
predicates = "3"