[package]
name = "cortex-agent"
version = "0.3.1"
description = "Self-learning AI agent with persistent memory, tools, plugins, and a beautiful terminal UI"
authors = ["Shafiqul Islam"]
license = "MIT"
edition = "2024"
homepage = "https://github.com/shafiqul/cortex"
repository = "https://github.com/shafiqul/cortex"
keywords = ["ai", "agent", "cli", "terminal", "llm"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "blocking", "rustls-tls"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
rusqlite = { version = "0.31", features = ["bundled"] }
chrono = { version = "0.4", features = ["serde"] }
console = "0.15"
rustyline = "14"
indicatif = "0.17"
anyhow = "1"
thiserror = "1"
async-trait = "0.1"
async-stream = "0.3"
futures = "0.3"
dialoguer = "0.11"
rand = "0.8"
bytes = "1"
futures-util = "0.3"
lazy_static = "1"
shellexpand = "3"
terminal_size = "0.3"
dirs = "5"
[[bin]]
name = "cortex"
path = "src/main.rs"