ordinary-assets 0.7.0

Built static assets for Ordinary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![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_WASM: &[u8] = include_bytes!(concat!(
    env!("CARGO_MANIFEST_DIR"),
    "/generated/v1/wasm/client.wasm"
));