- README: a build quick-start for macOS and Windows, the honest Linux
story, what CUDA is for and how to install the separation model.
- AGENTS.md: the `--remote` control surface protocol, so the harness it
documents is usable without reading platform/src/remote.rs.
- Cargo.toml: workspace membership for the crates this series adds and
removes.
- tools/: the Windows box scripts (wincmd, winps and friends, winrun) and
remote_smoke.sh — how a build gets driven on a remote machine.
- apps/asset-server: the standalone server binary and its README.
- Small follow-ups in libs/{windows,apple_sys,makepad_test,mbtile_reader,
converse} and apps/route, plus .gitignore and makepad.splash.
11 lines
322 B
TOML
11 lines
322 B
TOML
[package]
|
|
name = "makepad-mbtile-reader"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
description = "Minimal pure-Rust SQLite reader and streaming writer for MBTiles files"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
brotli = "8.0"
|
|
makepad-fast-inflate = { path = "../fast_inflate" }
|
|
makepad-sqlite = { path = "../sqlite_query" }
|