Skip to content
Open
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
81 changes: 43 additions & 38 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }

# Cryptographic hashing for caching
sha2 = "0.10"
sha2 = "0.11"

# Hex encoding for hash output
hex = "0.4"
Expand All @@ -174,7 +174,7 @@ crossbeam-utils = "0.8"
dirs = "6"

# ONNX Runtime for local embeddings (BGE-M3)
ort = { version = "2.0.0-rc.11", optional = true }
ort = { version = "2.0.0-rc.12", optional = true }

# HuggingFace tokenizers
tokenizers = { version = "0.22", optional = true }
Expand All @@ -183,7 +183,7 @@ tokenizers = { version = "0.22", optional = true }
ndarray = { version = "0.17", optional = true }

# LZ4 compression (optional, for dual-layer memory)
lz4_flex = { version = "0.12", optional = true }
lz4_flex = { version = "0.13", optional = true }

# YAML serialization (optional, for vDreamTeam memory system)
serde_yaml = { version = "0.9", optional = true }
Expand All @@ -194,10 +194,10 @@ serde_yaml = { version = "0.9", optional = true }

[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.26"
tempfile = "3.27"
pretty_assertions = "1.4"
criterion = { version = "0.8", features = ["async_tokio"] }
proptest = "1.10"
proptest = "1.11"

# ============================================================================
# FEATURES
Expand Down
Loading