[package]
edition = "2024"
name = "singleshot"
version = "0.2.0"
authors = ["Vincent <vincentzhangz@outlook.com>"]
build = false
exclude = [
"tests/*",
"*.md",
"!README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for testing AI models with a single prompt"
homepage = "https://github.com/vincentzhangz/singleshot"
documentation = "https://github.com/vincentzhangz/singleshot#readme"
readme = "README.md"
keywords = [
"ai",
"cli",
"llm",
"openai",
"anthropic",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/vincentzhangz/singleshot"
[[bin]]
name = "singleshot"
path = "src/main.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5.57"
features = ["derive"]
[dependencies.reqwest]
version = "0.13.1"
features = ["json"]
[dependencies.rig-core]
version = "0.30.0"
features = ["rmcp"]
[dependencies.rmcp]
version = "0.14.0"
features = [
"client",
"transport-streamable-http-client-reqwest",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dev-dependencies.tempfile]
version = "3.24.0"