[package]
name = "ralphloop"
version = "0.1.0"
edition = "2024"
description = "A CLI tool for creating and running Ralphloops with LLM integration"
authors = ["Ying Kit WONG"]
license = "Apache-2.0"
categories = ["command-line-utilities"]
keywords = ["cli", "llm", "ai", "automation"]
repository = "https://github.com/yingkitw/ralphloop"
documentation = "https://docs.rs/ralphloop"
homepage = "https://github.com/yingkitw/ralphloop"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tokio-stream = "0.1"
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json", "stream"] }
anyhow = "1.0"
colored = "2.0"
dialoguer = "0.11"
directories = "5.0"
uuid = { version = "1.6", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1.0"
backoff = { version = "0.4", features = ["tokio"] }
keyring = "2.3"
indicatif = "0.17"
futures = "0.3"
async-stream = "0.3"
rustyline = "14.0"
toml = "0.8"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3.26"
[[bench]]
name = "performance_bench"
harness = false