makepad/libs/image_tiles/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

26 lines
1.1 KiB
TOML

[package]
name = "makepad-image-tiles"
version = "0.1.0"
edition = "2021"
description = "Pannable, zoomable wall of image tiles: a small baker CLI downloads pictures into hardware-HEVC tape atlases, and the TileGrid widget draws them as instanced NV12 textures with continuous LOD"
license = "MIT OR Apache-2.0"
[lib]
name = "makepad_image_tiles"
path = "src/lib.rs"
# The baker: reads a manifest of image URLs, downloads and decodes them in
# RAM, and bakes the tile library a TileGrid widget opens. No window.
[[bin]]
name = "image-tiles-bake"
path = "src/bin/bake.rs"
[dependencies]
makepad-widgets = { path = "../../widgets" }
# The library index: items and shard bookkeeping in our own SQLite engine.
makepad-sqlite = { path = "../sqlite_query" }
# Hardware HEVC intra frames (VideoToolbox) for the on-disk tapes: no JPEGs
# or PNGs are ever kept, one hardware decode fills a whole atlas level.
makepad-video = { package = "makepad-platform-video", path = "../../platform/video" }
# The baker's downloader: the dependency-free blocking HTTP client.
makepad-network = { path = "../../platform/network" }