[package]
name = "plit"
version = "0.3.8"
edition = "2024"
description = "Pipelit ecosystem CLI and gateway — install, start, and chat with AI agents"
license = "Apache-2.0"
repository = "https://github.com/theuselessai/plit"
readme = "README.md"
keywords = ["ai", "agent", "gateway", "pipelit", "cli"]
categories = ["command-line-utilities", "network-programming"]
[[bin]]
name = "plit"
path = "src/main.rs"
[[bin]]
name = "plit-gw"
path = "src/gw_main.rs"
[dependencies]
plit-gw = "0.3.2"
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-webpki-roots"] }
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
url = "2"
dialoguer = "0.11"
uuid = { version = "1", features = ["v4"] }
dirs = "6"
genai = "0.6.0-beta.5"
[target.'cfg(unix)'.dependencies]
libc = "0.2"