ordinary-assets 0.8.0

Built static assets for Ordinary
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![warn(clippy::all, clippy::pedantic)]

// Copyright (C) 2026 Ordinary Labs, LLC.
//
// SPDX-License-Identifier: AGPL-3.0-only

pub const APP_V1_JS: &str = include_str!(concat!(
    env!("CARGO_MANIFEST_DIR"),
    "/generated/v1/js/index.js"
));

pub const APP_V1_JS_PX: &str = "import { px } from '/.ordinary/v1/js'; px();";

// generated with https://singlecolorimage.com where generated results are
// licenced under https://creativecommons.org/publicdomain/zero/1.0/
pub const APP_V1_IMG_PX: &[u8] =
    include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/static/v1/img/px.png"));

pub const APP_V1_WASM: &[u8] = include_bytes!(concat!(
    env!("CARGO_MANIFEST_DIR"),
    "/generated/v1/wasm/client.wasm"
));