taurifest 0.1.0

A declarative engine for building Tauri applications from a single manifest file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/core/mod.rs

// Объявляем, что внутри `core` есть модули `manifest` и `connectors`
pub mod manifest;
pub mod connectors;
pub mod errors;
pub mod context;
pub mod action_engine;
pub mod renderer;
pub mod asset_loader;
pub mod sockets;