Squashed from work: - rtsmap: one seeded generator for tiled strategy maps - map: bake a runnable Amsterdam test map from inside the route app - route: the first-run test map starts itself, and its buttons are guarded - map: the test map bakes its road faces too, from the same shared pass - map_tiles: mkmap-extract — the weave is reversible, world-cells reconstructible from world.mkmap - route: the local dispatcher rides the hub — its copied engine is deleted, limits preserved (aicore P1) - route + converse: off makepad_ai — the Agent seam moves to converse, route's cloud dispatcher rides the hub's Claude p - ai-hub: chats run the machine election — route to a serving holder, wait on a loading one, claim and publish when open - libs: the zero-warning sweep — stitch casts say what they mean, xatlas keeps upstream's surface quietly
18 lines
680 B
TOML
18 lines
680 B
TOML
[package]
|
|
name = "makepad-map-tiles"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Build, audit, and probe disk-streamable OpenStreetMap tile archives"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
brotli = "8.0"
|
|
makepad-fast-inflate = { path = "../../libs/fast_inflate" }
|
|
makepad-geodata = { path = "../../libs/geodata" }
|
|
makepad-map-build = { path = "../../libs/map_build", features = ["faces"] }
|
|
makepad-map-nav = { path = "../../libs/map_nav" }
|
|
makepad-mbtile-reader = { path = "../../libs/mbtile_reader" }
|
|
makepad-network = { path = "../../platform/network" } # testmap: fetch the extract
|
|
osmpbf = "0.3.8"
|
|
serde_json = "1.0"
|
|
smallvec = { path = "../../libs/smallvec" }
|