Point the workspace at libs/asset and libs/render. Drop Arcade frontend, gamemaker, rig, pack registry, physics, and the old libs/game gameplay crates. Those live in the private sandbox repo.
20 lines
482 B
TOML
20 lines
482 B
TOML
[package]
|
|
name = "makepad-geodata"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Bulk open-geodata fetcher and per-layer overlay database builder"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
name = "makepad_geodata"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "geodata"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
makepad-fast-inflate = { path = "../fast_inflate", version = "0.1.0" }
|
|
makepad-mbtile-reader = { path = "../mbtile_reader" }
|
|
makepad-map-nav = { path = "../map_nav" }
|
|
serde_json = "1.0"
|