Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
50
crates/codegen/xai-grok-memory/Cargo.toml
Normal file
50
crates/codegen/xai-grok-memory/Cargo.toml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-grok-memory"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
|
||||
[features]
|
||||
|
||||
[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
|
||||
Loading…
Reference in a new issue