deps-upgrade(mc-vision): ⬆️ Update dependencies in Cargo.toml and regenerate Cargo.lock for mc-vision compatibility

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-05-18 20:10:30 -07:00
parent b6eed900ed
commit 88d0c91254
2 changed files with 15 additions and 0 deletions

View file

@ -1830,7 +1830,10 @@ dependencies = [
name = "mc-vision"
version = "0.1.0"
dependencies = [
"criterion",
"mc-city",
"mc-core",
"mc-replay",
"mc-turn",
"serde",
"serde_json",

View file

@ -6,8 +6,20 @@ edition = "2021"
[dependencies]
mc-core = { path = "../mc-core" }
mc-turn = { path = "../mc-turn" }
mc-replay = { path = "../mc-replay" }
serde.workspace = true
serde_json.workspace = true
# p1-60 workstream F — criterion bench for `compute_vision` throughput
# (small_map 60×60, large_map 200×200). Pinned to v0.5 to match `mc-ai` /
# `mc-mapgen` so the workspace resolves to a single criterion copy.
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
mc-city = { path = "../mc-city" }
[[bench]]
name = "compute_vision"
harness = false
[lints]
workspace = true