rustmate/
lib.rs

1// Only run this as a WASM if the export-abi feature is not set.
2#![cfg_attr(not(feature = "export-abi"), no_main)]
3extern crate alloc;
4
5/// Initializes a custom, global allocator for Rust programs compiled to WASM.
6#[global_allocator]
7static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
8
9pub mod auth;
10pub mod mixins;
11pub mod tokens;
12pub mod utils;