[package]
name = "openheim"
version = "0.1.0"
edition = "2024"
description = "A fast, multi-provider LLM agent runtime written in Rust"
license = "MIT"
repository = "https://github.com/weirdstuff-dev/openheim"
homepage = "https://openheim.io"
documentation = "https://docs.rs/openheim"
keywords = ["agent", "llm", "ai", "mcp", "async"]
categories = ["command-line-utilities", "asynchronous"]
rust-version = "1.85"
[lib]
name = "openheim"
path = "src/lib.rs"
[[bin]]
name = "openheim"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.54", features = ["derive"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
thiserror = "2.0"
axum = { version = "0.8", features = ["ws"] }
futures = "0.3"
async-trait = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
rustyline = "14"
colored = "2"
notify = "6.1"
walkdir = "2.5"
once_cell = "1.19"
toml = "0.8"
dirs = "6.0"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
rmcp = { version = "1.6.0", default-features = false, features = ["client", "transport-child-process", "transport-streamable-http-client-reqwest"] }
agent-client-protocol = "0.11.1"
agent-client-protocol-tokio = "0.11.1"
tokio-util = { version = "0.7", features = ["compat"] }
tower-http = { version = "0.6", features = ["cors"] }
[dev-dependencies]
tempfile = "3"