[package]
name = "ralph-coder"
version = "0.2.1"
edition = "2021"
description = "An agentic code generation CLI powered by multiple LLM backends"
license = "MIT"
repository = "https://github.com/akkeshavan/ralph"
homepage = "https://github.com/akkeshavan/ralph"
documentation = "https://github.com/akkeshavan/ralph#readme"
keywords = ["ai", "agent", "codegen", "llm", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "ralph"
path = "src/main.rs"
[lib]
name = "ralph"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
async-trait = "0.1"
ctrlc = "3"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
anyhow = "1"
thiserror = "2"
colored = "2"
indicatif = "0.17"
ignore = "0.4"
similar = { version = "2", features = ["text"] }
regex = "1"
uuid = { version = "1", features = ["v4"] }
dirs = "5"
chrono = { version = "0.4", features = ["serde"] }
tiktoken-rs = "0.5"
rustyline = "14"
[dev-dependencies]
tempfile = "3"
mockito = "1"
tokio = { version = "1", features = ["full"] }
[package.metadata.binstall]
pkg-url = "https://github.com/akkeshavan/ralph-releases/releases/download/v{ version }/ralph-v{ version }-{ target }.tar.gz"
bin-dir = "ralph-v{ version }-{ target }/ralph"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "https://github.com/akkeshavan/ralph-releases/releases/download/v{ version }/ralph-v{ version }-{ target }.zip"
bin-dir = "ralph-v{ version }-{ target }/ralph.exe"
pkg-fmt = "zip"
[profile.release]
strip = true
opt-level = 3