Files
ReactionSystemsGUI/reaction_systems_gui/src/lib.rs
2025-10-17 21:42:41 +02:00

19 lines
357 B
Rust

#![forbid(unsafe_code)]
#![warn(clippy::all, rust_2018_idioms)]
// Forbid warnings in release builds
#![cfg_attr(not(debug_assertions), deny(warnings))]
mod app;
mod app_logic;
mod helper;
pub use app::AppHandle;
// If compiling for web
#[cfg(target_arch = "wasm32")]
mod web;
// Export endpoints for wasm
#[cfg(target_arch = "wasm32")]
pub use web::*;