Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ version = "0.11.3"
authors = ["bug-ops"]
license = "MIT"
repository = "https://github.com/bug-ops/zeph"
homepage = "https://github.com/bug-ops/zeph"
documentation = "https://docs.rs/zeph"
keywords = ["ai", "agent", "llm", "inference", "skills"]
categories = ["command-line-utilities", "science"]

[workspace.dependencies]
age = { version = "0.11.2", default-features = false }
Expand Down Expand Up @@ -113,6 +117,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
keywords.workspace = true
categories.workspace = true
description = "Lightweight AI agent with hybrid inference, skills-first architecture, and multi-channel I/O"
readme = "README.md"

[features]
default = []
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-a2a/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-a2a"
keywords.workspace = true
categories.workspace = true
description = "A2A protocol client and server with agent discovery for Zeph"
readme = "README.md"

[features]
server = ["dep:axum", "dep:subtle", "dep:tower", "dep:tower-http"]
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-channels/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-channels"
keywords.workspace = true
categories.workspace = true
description = "Multi-channel I/O adapters (CLI, Telegram, Discord, Slack) for Zeph"
readme = "README.md"

[features]
discord = ["dep:tokio-tungstenite", "dep:futures"]
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-core"
keywords.workspace = true
categories.workspace = true
description = "Core agent loop, configuration, context builder, metrics, and vault for Zeph"
readme = "README.md"

[features]
default = []
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-gateway"
keywords.workspace = true
categories.workspace = true
description = "HTTP gateway for webhook ingestion with bearer auth for Zeph"
readme = "README.md"

[dependencies]
axum.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-index"
keywords.workspace = true
categories.workspace = true
description = "AST-based code indexing and semantic retrieval for Zeph"
readme = "README.md"

[features]
default = ["lang-rust", "lang-python", "lang-js", "lang-go", "lang-config"]
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-llm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-llm"
keywords.workspace = true
categories.workspace = true
description = "LLM provider abstraction with Ollama, Claude, OpenAI, and Candle backends"
readme = "README.md"

[features]
default = []
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-mcp"
keywords.workspace = true
categories.workspace = true
description = "MCP client with multi-server lifecycle and Qdrant tool registry for Zeph"
readme = "README.md"

[features]
default = []
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-memory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-memory"
keywords.workspace = true
categories.workspace = true
description = "Semantic memory with SQLite and Qdrant for Zeph agent"
readme = "README.md"

[dependencies]
pdf-extract = { workspace = true, optional = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-scheduler"
keywords.workspace = true
categories.workspace = true
description = "Cron-based periodic task scheduler with SQLite persistence for Zeph"
readme = "README.md"

[dependencies]
chrono.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-skills/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-skills"
keywords.workspace = true
categories.workspace = true
description = "SKILL.md parser, registry, embedding matcher, and hot-reload for Zeph"
readme = "README.md"

[features]
default = []
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-tools"
keywords.workspace = true
categories.workspace = true
description = "Tool executor trait with shell, web scrape, and composite executors for Zeph"
readme = "README.md"

[dependencies]
dirs = "6.0"
Expand Down
6 changes: 6 additions & 0 deletions crates/zeph-tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/zeph-tui"
keywords.workspace = true
categories.workspace = true
description = "Ratatui-based TUI dashboard with real-time metrics for Zeph"
readme = "README.md"

[dependencies]
ignore.workspace = true
Expand Down
Loading