Skip to content
Closed
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
932 changes: 455 additions & 477 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
rand = "0.9"
hex = "0.4"
jsonschema = "0.18" # Keeping it conservative
jsonschema = "0.40" # Keeping it conservative

# Security - Secure secret memory handling
zeroize = { version = "1.8", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/vex-adversarial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ thiserror = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }
sha2 = "0.10"
metrics = "0.22"
metrics = "0.24"
serde_json = "1.0"
6 changes: 3 additions & 3 deletions crates/vex-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tracing = { workspace = true }
tracing-subscriber = { workspace = true }

# Security
jsonwebtoken = "9"
jsonwebtoken = "10"
argon2 = "0.5"
base64 = "0.22"
zeroize = { workspace = true }
Expand All @@ -56,8 +56,8 @@ rand = { workspace = true }
http-body-util = "0.1"

# Rate limiting (GCRA via governor)
governor = "0.8"
tower_governor = "0.5"
governor = "0.10"
tower_governor = "0.8"

# OpenAPI documentation
utoipa = { version = "5", features = ["axum_extras", "chrono", "uuid"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/vex-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ anyhow = { workspace = true }
serde_json = { workspace = true }

# Terminal output
colored = "2"
colored = "3"
comfy-table = "7"

# Utilities
Expand Down
4 changes: 2 additions & 2 deletions crates/vex-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ uuid = { workspace = true }
chrono = { workspace = true }
rand = { workspace = true }
tracing = { workspace = true }
metrics = "0.22"
metrics = "0.24"
hex = { workspace = true }
rayon = "1.10"

[dev-dependencies]
criterion = "0.5"
criterion = "0.8"
proptest = "1.4"

[[bench]]
Expand Down
4 changes: 2 additions & 2 deletions crates/vex-llm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
reqwest = { version = "0.12", features = ["json"] }
reqwest = { version = "0.13", features = ["json"] }
chrono = { workspace = true }
uuid = { version = "1", features = ["v4"] }
meval = "0.2"
Expand All @@ -41,5 +41,5 @@ default = []
openai = ["dep:async-openai"]

[dependencies.async-openai]
version = "0.24"
version = "0.32"
optional = true
2 changes: 1 addition & 1 deletion crates/vex-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ proc-macro = true
syn = { version = "2.0", features = ["full", "extra-traits"] }
quote = "1.0"
proc-macro2 = "1.0"
darling = "0.20" # For easy attribute parsing
darling = "0.23" # For easy attribute parsing
2 changes: 1 addition & 1 deletion crates/vex-persist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ chrono = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
sha2 = "0.10"
rand = "0.8"
rand = "0.9"
hex = "0.4"
argon2 = "0.5"
subtle = "2.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/vex-temporal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tracing = { workspace = true }
async-trait = { workspace = true }

[dev-dependencies]
criterion = "0.5"
criterion = "0.8"

[[bench]]
name = "memory_benchmark"
Expand Down
Loading