[package]
edition = "2021"
rust-version = "1.80"
name = "pi-coding-agent"
version = "1.0.0"
authors = ["Pi Rust Port Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive coding agent CLI (Rust port of @earendil-works/pi-coding-agent). Streaming REPL, session persistence, AGENTS.md loader, slash commands, per-tool permissions. Install with `cargo install pi-coding-agent`; the binary is `pi`."
readme = "README.md"
keywords = [
"llm",
"ai",
"coding-agent",
"cli",
"agent",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/earendil-works/pi"
[[bin]]
name = "pi"
path = "src/main.rs"
[[test]]
name = "session_smoke"
path = "tests/session_smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dirs]
version = "5"
[dependencies.futures]
version = "0.3"
[dependencies.pi-agent]
version = "1.0.0"
[dependencies.pi-ai]
version = "1.0.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]