Apply the makepad_test workstream onto the fork's portallist pin:
- makepad_test: runtime support for terminal (standalone) + Android (adb) runners,
dropping the Studio-hub-only requirement for headless UI tests
- platform: native_activity Android path (looper_wrapper.c, android_native.rs,
android_jni_native.rs), standalone terminal app_main path
- cargo-makepad: native_activity + profile-dependent prefer-dynamic in android
build; keystore-create/build-aab packaging inputs
- studio hub: standalone hub_server binary for headless run
- examples/counter: terminal UI test entry (wait_text/click via Selector) ready
for Android + desktop parity
Base: fork portallist_flow_adaptive_view d82756a (keeps map work + re-exports).
22 lines
992 B
TOML
22 lines
992 B
TOML
[package]
|
|
name = "makepad-studio-hub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Studio2 hub (protocol + gateway + virtual fs)"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "hub-server"
|
|
path = "src/bin/hub_server.rs"
|
|
|
|
[dependencies]
|
|
makepad-script-std = { path = "../../platform/script/std", version = "1.0.0" }
|
|
makepad-studio-protocol = { path = "../../platform/studio", version = "0.1.0" }
|
|
makepad-micro-serde = { path = "../../libs/micro_serde", version = "1.0.0" }
|
|
makepad-network = { path = "../../platform/network", version = "1.0.0" }
|
|
makepad-git = { path = "../../libs/git", version = "0.1.0" }
|
|
makepad-live-id = { path = "../../libs/live_id", version = "1.0.0" }
|
|
makepad-terminal-core = { path = "../../libs/terminal_core", version = "1.0.0" }
|
|
makepad-filesystem-watcher = { path = "../../libs/filesystem_watcher", version = "0.1.0" }
|
|
makepad-rabin-karp = { path = "../../libs/rabin-karp", version = "1.0.0" }
|
|
makepad-regex = { path = "../../libs/regex", version = "0.1.0" }
|