[package]
name = "wordsmith-cli"
version = "0.1.0"
edition = "2021"
description = "A Rust-based word lookup tool for the terminal. Fetches definitions from dictionaryapi.dev, slang from Urban Dictionary, synonyms/antonyms from Datamuse, and Gen Alpha meanings from gen_alpha_dictionary. Logs lookups to Markdown and JSONL with timestamps and optional glow rendering. Simple flags, no config, no cache — just fast word data in your shell."
license = "MIT"
repository = "https://github.com/fibnas/wordsmith-cli"
categories = ["command-line-utilities"]
keywords = ["cli", "education", "productivity"]
readme = "README.md"
exclude = ["target/", "entries.json", "screenshots/", "assets/"]
[dependencies]
reqwest = { version = "0.12", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
textwrap = "0.16"
chrono = "0.4"
shellexpand = "3.1"
gen_alpha_dictionary = "0.1.1"
[[bin]]
name = "wordsmith-cli"
path = "src/main.rs"