- 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.
25 lines
1.3 KiB
TOML
25 lines
1.3 KiB
TOML
[package]
|
|
name = "makepad-app-route"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "AI-driven voice route/trip planner on MapView (see route.md)"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets", version = "2.0.0", features = ["maps", "voice"] }
|
|
makepad-map-nav = { path = "../../libs/map_nav" } # M1: route.* tools (search + A* graph)
|
|
makepad-ai-speech = { path = "../../libs/ai/models/speech" } # kokoro voice output (🔊)
|
|
makepad-geodata = { path = "../../libs/geodata" } # M1: geo.* corridor queries, rain radar
|
|
makepad-mbtile-reader = { path = "../../libs/mbtile_reader" } # terrain drape landcover source
|
|
makepad-ai = { path = "../../libs/makepad_ai" } # M1: cloud agent + tool definitions
|
|
serde_json = "1" # geodata FeatureHit attrs
|
|
|
|
makepad-ai-llm = { path = "../../libs/ai/llm" } # M2: local dispatcher LLM (pure-Rust ggml)
|
|
|
|
makepad-converse = { path = "../../libs/converse", features = ["local-llm"] } # M3: attention-gate filter
|
|
|
|
# Planned wiring (see route.md milestones) — enable as each phase lands:
|
|
# makepad-tesla = { path = "../../libs/tesla" } # M5: vehicle SoC / charge state
|
|
|
|
[dev-dependencies]
|
|
makepad-test = { path = "../../libs/makepad_test", version = "0.1.0" }
|