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:
parent
b6eed900ed
commit
88d0c91254
2 changed files with 15 additions and 0 deletions
3
src/simulator/Cargo.lock
generated
3
src/simulator/Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue