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:
rUv 2025-12-26 23:42:05 +00:00
parent 45dd426798
commit fa97d24a8a

View file

@ -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"