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
89 changes: 42 additions & 47 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ required-features = ["vdreamteam"]
# Python Bindings (optional)
# Note: pyo3 0.23+ deprecated Python::with_gil and allow_threads (use attach/detach instead)
# Pinned to 0.22.x until code is updated to use new API
pyo3 = { version = "0.22", features = ["extension-module"], optional = true }
pyo3 = { version = "0.27", features = ["extension-module"], optional = true }

# Serialization
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -113,7 +113,7 @@ serde_bytes = "0.11"

# Binary serialization (faster than JSON for embeddings)
# Note: bincode 2.0+ has completely new API, code uses 1.x serialize()/deserialize()
bincode = "1.3"
bincode = "3.0"

# MessagePack serialization (compact binary format)
rmp-serde = "1.3"
Expand Down Expand Up @@ -177,7 +177,7 @@ dirs = "6"
ort = { version = "2.0.0-rc.11", optional = true }

# HuggingFace tokenizers
tokenizers = { version = "0.21", optional = true }
tokenizers = { version = "0.22", optional = true }

# NDArray for tensor operations (must match ort's ndarray version)
ndarray = { version = "0.17", optional = true }
Expand Down
Loading