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
75 changes: 6 additions & 69 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 52 additions & 58 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,7 @@ categories = ["command-line-utilities", "science"]

[workspace.dependencies]
age = { version = "0.11.2", default-features = false }
agent-client-protocol = { version = "0.10", features = [
"unstable_session_list",
"unstable_session_fork",
"unstable_session_resume",
"unstable_session_usage",
"unstable_session_model",
"unstable_session_info_update",
] }
agent-client-protocol = "0.10"
anyhow = "1.0"
async-stream = "0.3"
async-trait = "0.1"
Expand All @@ -34,34 +27,34 @@ bytemuck = "1.25"
candle-core = { version = "0.9", default-features = false }
candle-nn = { version = "0.9", default-features = false }
candle-transformers = { version = "0.9", default-features = false }
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
dashmap = "6.1"
clap = { version = "4.6", features = ["derive", "env"] }
chrono = { version = "0.4", default-features = false }
clap = "4.6"
criterion = "0.8"
cron = "0.15"
crossterm = "0.29"
dashmap = "6.1"
dialoguer = "0.12"
dirs = "6.0"
eventsource-stream = "0.2"
futures = "0.3"
futures-core = "0.3"
glob = "0.3.3"
hf-hub = { version = "0.5", default-features = false, features = ["tokio", "rustls-tls", "ureq"] }
hf-hub = { version = "0.5", default-features = false }
http = "1.4"
http-body-util = "0.1"
ignore = "0.4"
indoc = "2"
insta = { version = "1.46.3", features = ["toml", "filters"] }
insta = "1.46.3"
notify = "8"
notify-debouncer-mini = "0.7"
nucleo-matcher = "0.3.1"
ordered-float = { version = "5.1", features = ["serde"] }
ollama-rs = { version = "0.3", default-features = false, features = ["rustls", "stream"] }
ollama-rs = { version = "0.3", default-features = false }
opentelemetry = "0.31"
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic"] }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.31", default-features = false }
opentelemetry_sdk = { version = "0.31", default-features = false }
ordered-float = "5.1"
pdf-extract = "0.10"
petgraph = { version = "0.8", default-features = false }
petgraph = "0.8"
proptest = "1.10"
pulldown-cmark = "0.13"
qdrant-client = { version = "1.17", default-features = false }
Expand All @@ -80,15 +73,15 @@ serde_json = "1.0"
serde_norway = "0.9.42"
serial_test = "3.4"
similar = "2.7"
sqlx = { version = "0.8", default-features = false, features = ["macros", "runtime-tokio-rustls", "sqlite"] }
sqlx = { version = "0.8", default-features = false }
subtle = "2.6"
symphonia = { version = "0.5.5", default-features = false, features = ["mp3", "ogg", "wav", "flac", "pcm"] }
teloxide = { version = "0.17", default-features = false, features = ["rustls", "ctrlc_handler", "macros"] }
symphonia = { version = "0.5.5", default-features = false }
teloxide = { version = "0.17", default-features = false }
tempfile = "3.27"
tiktoken-rs = "0.9"
testcontainers = "0.27"
thiserror = "2.0"
tokenizers = { version = "0.22", default-features = false, features = ["fancy-regex"] }
tiktoken-rs = "0.9"
tokenizers = { version = "0.22", default-features = false }
tokio = "1"
tokio-stream = "0.1"
tokio-tungstenite = { version = "0.29", default-features = false }
Expand All @@ -100,7 +93,7 @@ tower-http = { version = "0.6", default-features = false }
tracing = "0.1"
tracing-appender = "0.2"
tracing-opentelemetry = "0.32"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-subscriber = { version = "0.3", default-features = false }
tracing-test = "0.2"
tree-sitter = "0.26"
tree-sitter-bash = "0.25"
Expand All @@ -118,20 +111,20 @@ unicode-width = "0.2"
url = "2.5"
uuid = "1.21"
wiremock = "0.6.5"
zeroize = { version = "1", features = ["derive", "serde"] }
zeph-a2a = { path = "crates/zeph-a2a", version = "0.15.2" }
zeph-acp = { path = "crates/zeph-acp", version = "0.15.2" }
zeph-channels = { path = "crates/zeph-channels", version = "0.15.2" }
zeph-core = { path = "crates/zeph-core", version = "0.15.2" }
zeph-gateway = { path = "crates/zeph-gateway", version = "0.15.2" }
zeph-index = { path = "crates/zeph-index", version = "0.15.2" }
zeph-llm = { path = "crates/zeph-llm", version = "0.15.2" }
zeph-mcp = { path = "crates/zeph-mcp", version = "0.15.2" }
zeph-memory = { path = "crates/zeph-memory", version = "0.15.2" }
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.15.2" }
zeph-skills = { path = "crates/zeph-skills", version = "0.15.2" }
zeph-tools = { path = "crates/zeph-tools", version = "0.15.2" }
zeph-tui = { path = "crates/zeph-tui", version = "0.15.2" }
zeroize = { version = "1", default-features = false }
zeph-a2a = { path = "crates/zeph-a2a" }
zeph-acp = { path = "crates/zeph-acp" }
zeph-channels = { path = "crates/zeph-channels" }
zeph-core = { path = "crates/zeph-core" }
zeph-gateway = { path = "crates/zeph-gateway" }
zeph-index = { path = "crates/zeph-index" }
zeph-llm = { path = "crates/zeph-llm" }
zeph-mcp = { path = "crates/zeph-mcp" }
zeph-memory = { path = "crates/zeph-memory" }
zeph-scheduler = { path = "crates/zeph-scheduler" }
zeph-skills = { path = "crates/zeph-skills" }
zeph-tools = { path = "crates/zeph-tools" }
zeph-tui = { path = "crates/zeph-tui" }

[workspace.lints.rust]
unsafe_code = "deny"
Expand Down Expand Up @@ -191,45 +184,45 @@ context-compression = ["zeph-core/context-compression"]
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
clap.workspace = true
axum = { workspace = true, optional = true }
chrono = { workspace = true, optional = true }
clap = { workspace = true, features = ["derive", "env"] }
cron = { workspace = true, optional = true }
dialoguer.workspace = true
futures.workspace = true
glob.workspace = true
opentelemetry = { workspace = true, optional = true }
opentelemetry-otlp = { workspace = true, optional = true }
opentelemetry_sdk = { workspace = true, optional = true }
reqwest = { workspace = true, optional = true }
rmcp.workspace = true
schemars = { workspace = true, optional = true }
serde.workspace = true
serde_json.workspace = true
similar.workspace = true
sqlx.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal", "sync", "time"] }
toml.workspace = true
toml_edit.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal", "sync", "time"] }
tracing.workspace = true
tracing-appender.workspace = true
tracing-subscriber.workspace = true
opentelemetry = { workspace = true, optional = true }
opentelemetry_sdk = { workspace = true, optional = true }
opentelemetry-otlp = { workspace = true, optional = true }
tracing-opentelemetry = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
url.workspace = true
zeph-a2a = { workspace = true, optional = true }
zeph-acp = { workspace = true, optional = true }
axum = { workspace = true, optional = true }
zeph-channels.workspace = true
zeph-index.workspace = true
sqlx.workspace = true
zeph-mcp.workspace = true
zeph-core.workspace = true
zeph-gateway = { workspace = true, optional = true }
zeph-index.workspace = true
zeph-llm.workspace = true
zeph-memory.workspace = true
zeph-mcp.workspace = true
zeph-scheduler = { workspace = true, optional = true }
zeph-skills.workspace = true
zeph-tools.workspace = true
zeph-gateway = { workspace = true, optional = true }
zeph-scheduler = { workspace = true, optional = true }
zeph-tui = { workspace = true, optional = true }
reqwest = { workspace = true, optional = true, features = ["rustls"] }
serde_json.workspace = true
cron = { workspace = true, optional = true }
schemars = { workspace = true, optional = true }
chrono = { workspace = true, optional = true }
serde.workspace = true
tempfile.workspace = true
url.workspace = true

[dev-dependencies]
serial_test.workspace = true
Expand All @@ -238,6 +231,7 @@ zeph-core.workspace = true
zeph-llm.workspace = true
zeph-memory.workspace = true
zeph-skills.workspace = true
# Features are declared by the crates that use them, see workspace dependencies

[lints]
workspace = true
Expand Down
Loading
Loading