llm-cmd 0.11.0

A CLI tool for interacting with LLMs (OpenAI, Anthropic) via a unified interface
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "llm-cmd"
version = "0.11.0"
authors = ["tlkahn <joshgy@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for interacting with LLMs (OpenAI, Anthropic) via a unified interface"
readme = "README.md"
keywords = [
    "llm",
    "cli",
    "openai",
    "anthropic",
    "ai",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/tlkahn/llm-rs"
resolver = "2"

[features]
anthropic = ["dep:llm-anthropic"]
default = [
    "openai",
    "anthropic",
]
openai = ["dep:llm-openai"]

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

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.async-stream]
version = "0.3"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

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

[dependencies.futures]
version = "0.3"

[dependencies.llm-anthropic]
version = "0.11.0"
optional = true

[dependencies.llm-core]
version = "0.11.0"

[dependencies.llm-openai]
version = "0.11.0"
optional = true

[dependencies.llm-store]
version = "0.11.0"

[dependencies.rpassword]
version = "7"

[dependencies.rustyline]
version = "15"

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

[dependencies.serde_json]
version = "1"

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

[dependencies.tokio-stream]
version = "0.1"

[dependencies.toml]
version = "0.8"

[dependencies.ulid]
version = "1"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.temp-env]
version = "0.3"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.wiremock]
version = "0.6"