makepad/apps/fab/Cargo.toml
Admin debd8c1075 rename: the mp prefix goes — apps/wm, files, terminal, browser, task, sheets, image, video, pdf; libs/wm_api and wm_theme
Packages are makepad-<name> with the short name as the binary. Env vars
follow (MAKEPAD_WM_*, MAKEPAD_FILES_*, MAKEPAD_TERMINAL_*), config moves
under ~/.makepad/<app>/, the theme namespaces are mod.wm_theme and
mod.browser_theme, the hosted AI envelope key is wm_ai. platform/video
becomes makepad-platform-video so the video app can be makepad-video.
Carries the Score entries that were pending in the WM's curated table.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-02 11:17:12 +02:00

38 lines
1.4 KiB
TOML

[package]
name = "makepad-fab"
version = "0.1.0"
authors = ["Makepad <info@makepad.nl>"]
edition = "2021"
description = "Fab digital-fabrication and architecture application"
license = "MIT OR Apache-2.0"
# src/bin/frames_to_mp4.rs makes this a two-binary package; without this,
# `cargo run -p makepad-fab` (the headless test harness) refuses to
# guess and demands --bin.
default-run = "makepad-fab"
[features]
default = ["gltf"]
gltf = ["dep:makepad-fab-loader-gltf"]
[dependencies]
makepad-widgets = { path = "../../widgets", version = "2.0.0" }
makepad-fab-shell = { path = "../../libs/fab", version = "0.1.0" }
makepad-fab-loader-gltf = { path = "loaders/gltf", version = "0.1.0", optional = true }
makepad-video = { package = "makepad-platform-video", path = "../../platform/video", version = "1.0.0" }
makepad-zune-png = { path = "../../libs/zune/zune-png", version = "0.5.2" }
[dev-dependencies]
makepad-test = { path = "../../libs/makepad_test", version = "0.1.0" }
makepad-micro-serde = { path = "../../libs/micro_serde", version = "1.0.0" }
makepad-raytrace = { path = "../../libs/raytrace", version = "0.1.0" }
# The headless harness (`MAKEPAD=headless`) execs one `target/release/<bin>`
# chosen from this manifest: a lone `[[bin]]` is treated as the whole package,
# so the UI binary has to be named here or `frames_to_mp4` is launched instead.
[[bin]]
name = "makepad-fab"
path = "src/main.rs"
[[bin]]
name = "frames_to_mp4"
path = "src/bin/frames_to_mp4.rs"