makepad/libs/asset/creator/Cargo.toml
Admin 88048aa784 assets: extend authoring pipelines and typed asset search
Add sandbox authoring effects and character/composite creation, improve creator submission handling, and extend publishing/search metadata. Update importer conversions and the asset UI integration.

Validation: 31 store search tests, ten composite tests and two author-policy tests passed in release mode.
2026-09-05 01:42:39 +02:00

26 lines
1,015 B
TOML

[package]
name = "makepad-asset-creator"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
# The pipeline library drives compute through the hub…
makepad-ai-hub = { path = "../../ai/hub", default-features = false }
# …speaks strict JSON on every wire…
makepad-strict-json = { path = "../../strict_json" }
# …and publishes finished assets through the client. The hub itself never
# sees this dependency: creation is the app's side of the boundary.
makepad-asset-chat = { path = "../chat" }
makepad-asset-client = { path = "../client" }
makepad-asset-data = { path = "../data" }
makepad-gltf = { path = "../../gltf" }
makepad-render = { path = "../../render" }
makepad-draw = { path = "../../../draw" }
# The worker's own product builder + kind table, until P7 retires the rest.
makepad-asset-importer = { path = "../importer", default-features = false }
# The detached client: a long run is a client that does not close.
[[bin]]
name = "makepad-creator-run"
path = "src/bin/creator_run.rs"