wordsmith-cli 0.1.0

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.
[[bin]]
name = "wordsmith-cli"
path = "src/main.rs"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.gen_alpha_dictionary]
version = "0.1.1"

[dependencies.reqwest]
features = ["json", "blocking"]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.shellexpand]
version = "3.1"

[dependencies.textwrap]
version = "0.16"

[dependencies.tokio]
features = ["full"]
version = "1"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
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."
edition = "2021"
exclude = ["target/", "entries.json", "screenshots/", "assets/"]
keywords = ["cli", "education", "productivity"]
license = "MIT"
name = "wordsmith-cli"
readme = "README.md"
repository = "https://github.com/fibnas/wordsmith-cli"
version = "0.1.0"