Changes: - grok-shell: request workspaces:read/write OAuth2 scopes - security: fix SSRF bypass via HTTP redirect in hook runner - fix(grok-build): enterprise STT WSS URL + API-key voice bearer - Harden identity-change purge and sync-marker invariants - sandbox + workspace-server: delete the legacy ready-file arm - Show billing URL when browser cannot open - fix(pager): show folder-trust UI in minimal mode - fix(pager): drain task_backgrounded before no-wait headless exit - grok-agent-sdk: stop SDK-spawned agents from staging self-updates they can never adopt - Split settings_modal into directory module - Delegate VS Code SSH file links - grok-shell: release the workspace session binding when a session is removed - keep skills reachable when their name collides with a client builtin - Preserve semantic link targets
53 lines
1.6 KiB
TOML
53 lines
1.6 KiB
TOML
[package]
|
|
license = "Apache-2.0"
|
|
name = "xai-grok-memory"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
# Exposes `#[cfg(test)]`-only helpers (`MemoryStorage::with_paths`,
|
|
# `MockEmbeddingProvider`) to downstream crates' test targets.
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
arc-swap = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
blake3 = { workspace = true }
|
|
chrono = { workspace = true }
|
|
dunce = { workspace = true }
|
|
flate2 = { workspace = true }
|
|
git2 = { version = "0.20", default-features = false, features = [
|
|
"vendored-libgit2",
|
|
] }
|
|
notify = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
reqwest-middleware = { workspace = true }
|
|
# rusqlite 0.37 + bundled = self-contained SQLite (>= 3.50.2) with FTS5.
|
|
rusqlite = { version = "0.37", features = ["bundled"] }
|
|
serde_json = { workspace = true }
|
|
# sqlite-vec: vec0 virtual table for KNN vector search.
|
|
sqlite-vec = "=0.1.7-alpha.2"
|
|
tar = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread", "time"] }
|
|
tracing = { workspace = true }
|
|
xai-grok-auth = { workspace = true }
|
|
xai-grok-config-types = { workspace = true }
|
|
xai-grok-http = { workspace = true }
|
|
xai-grok-telemetry = { workspace = true }
|
|
xai-grok-tools = { workspace = true }
|
|
xai-grok-version = { workspace = true }
|
|
xai-sqlite-journal = { workspace = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
filetime = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|