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: 39 additions & 36 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 crates/vectorizer-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ vectorizer = { path = "../vectorizer", default-features = false }
# HTTP / WebSocket server
axum = { version = "0.8.7", features = ["ws", "json", "multipart"], default-features = false }
tower = { version = "0.5", default-features = false }
tower-http = { version = "0.6.7", features = ["cors", "trace", "fs", "set-header"], default-features = false }
tower-http = { version = "0.6.11", features = ["cors", "trace", "fs", "set-header"], default-features = false }
hyper = { version = "1.8.1", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1.20", features = ["tokio", "server", "server-auto"] }

Expand All @@ -47,7 +47,7 @@ async-graphql = { version = "7.0", features = ["chrono", "uuid"] }
async-graphql-axum = "7.0"

# Auth + security primitives
jsonwebtoken = { version = "10.1", features = ["rust_crypto"] }
jsonwebtoken = { version = "10.4", features = ["rust_crypto"] }
hmac = "0.13"
base64 = "0.22"
bcrypt = "0.19"
Expand Down Expand Up @@ -85,7 +85,7 @@ serde_yaml = { version = "0.9", default-features = false }
chrono = { version = "0.4", features = ["serde"], default-features = false }
uuid = { version = "1.22", features = ["v4", "v5", "serde"] }
parking_lot = "0.12"
dashmap = "6.1"
dashmap = "6.2"
once_cell = "1.20"
arc-swap = "1.7"
lazy_static = "1.4"
Expand All @@ -112,7 +112,7 @@ reqwest = { version = "0.13", features = ["json", "rustls"], default-features =

# Misc
glob = { version = "0.3", default-features = false }
sysinfo = "0.38"
sysinfo = "0.39"
sha2 = "0.11"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
rand = "0.9"
Expand All @@ -135,7 +135,7 @@ tantivy = "0.26"

# Openraft (replication)
openraft = { version = "=0.10.0-alpha.20", features = ["serde", "type-alias"] }
openraft-memstore = "=0.10.0-alpha.18"
openraft-memstore = "=0.10.0-alpha.20"

# Prometheus / OTel
prometheus = "0.14"
Expand Down
10 changes: 5 additions & 5 deletions crates/vectorizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ categories = ["database", "science"]
# 0.10 or 0.11 ships, bump both pins together and retest the HA path
# (tests/integration/cluster_ha.rs). Risk note published in CHANGELOG.
openraft = { version = "=0.10.0-alpha.20", features = ["serde", "type-alias"] }
openraft-memstore = "=0.10.0-alpha.18"
openraft-memstore = "=0.10.0-alpha.20"
futures = "0.3"
ctrlc = { version = "3.5", optional = true }
dirs = "6.0"
Expand All @@ -26,7 +26,7 @@ dirs = "6.0"
tokio = { version = "1.52", features = ["rt-multi-thread", "net", "io-util", "time", "signal", "sync", "macros"], default-features = false }
axum = { version = "0.8.7", features = ["ws", "json", "multipart"], default-features = false }
tower = { version = "0.5", default-features = false }
tower-http = { version = "0.6.7", features = ["cors", "trace", "fs", "set-header"], default-features = false }
tower-http = { version = "0.6.11", features = ["cors", "trace", "fs", "set-header"], default-features = false }
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = { version = "1.0", default-features = false }
serde_yaml = { version = "0.9", default-features = false }
Expand All @@ -39,7 +39,7 @@ sha2 = "0.11"
walkdir = "2.5"
notify = "8.2"
fastrand = "2.3"
sysinfo = "0.38"
sysinfo = "0.39"

# Index and vector operations
hnsw_rs = "0.3"
Expand All @@ -65,7 +65,7 @@ num_cpus = "1.16"
memory-stats = "1.0"

# Data structures
dashmap = "6.1"
dashmap = "6.2"
parking_lot = "0.12"
once_cell = "1.20"
arc-swap = "1.7"
Expand Down Expand Up @@ -114,7 +114,7 @@ regex = { version = "1.10", default-features = false, features = ["std", "unicod
openssl = { version = "0.10", features = ["vendored"], optional = true }

# Authentication and security
jsonwebtoken = { version = "10.1", features = ["rust_crypto"] }
jsonwebtoken = { version = "10.4", features = ["rust_crypto"] }
uuid = { version = "1.22", features = ["v4", "v5", "serde"] }
rand = "0.9"
hmac = "0.13" # HMAC for request signing
Expand Down
Loading