mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-06-01 06:10:31 +00:00
fix(gated-transformer): use explicit deps for standalone builds
Replace workspace dependencies with explicit versions to allow the crate to build outside of the workspace context (e.g., Docker). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
45dd426798
commit
fa97d24a8a
1 changed files with 5 additions and 5 deletions
|
|
@ -45,16 +45,16 @@ no_std_gateway = []
|
|||
|
||||
[dependencies]
|
||||
# Core types only - avoid heavy dependencies
|
||||
thiserror = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
thiserror = "2.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
# Optional WASM support
|
||||
getrandom = { version = "0.2", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = { workspace = true }
|
||||
proptest = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
criterion = { version = "0.5", features = ["html_reports"] }
|
||||
proptest = "1.5"
|
||||
rand = "0.8"
|
||||
|
||||
[[bench]]
|
||||
name = "latency"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue