rexis 0.1.0

Rexis - Agentic AI Framework for Rust with memory-first agents, RAG, and graph orchestration
[dependencies.rexis-graph]
optional = true
version = "0.1.0"

[dependencies.rexis-llm]
optional = true
version = "0.1.0"

[dependencies.rexis-rag]
optional = true
version = "0.1.0"

[dev-dependencies.tokio]
features = ["full"]
version = "1.0"

[features]
default = ["llm", "rag", "graph"]
full = ["llm", "rag", "graph", "rexis-rag/rexis-llm-client", "rexis-rag/vector-search", "rexis-rag/observability"]
graph = ["dep:rexis-graph"]
llm = ["dep:rexis-llm"]
rag = ["dep:rexis-rag"]

[lib]
name = "rexis"
path = "src/lib.rs"

[package]
authors = ["vasanth <vasanth@0xteam.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "web-programming", "science"]
description = "Rexis - Agentic AI Framework for Rust with memory-first agents, RAG, and graph orchestration"
documentation = "https://docs.rs/rexis"
edition = "2021"
homepage = "https://github.com/0xteamhq/rexis"
keywords = ["ai", "llm", "agents", "rag", "memory"]
license = "MIT"
name = "rexis"
readme = "README.md"
repository = "https://github.com/0xteamhq/rexis"
version = "0.1.0"