catgirl_engine_utils/
lib.rs1#![warn(missing_docs)]
3#![doc(
4    html_favicon_url = "https://engine.catgirl.land/resources/assets/vanilla/texture/logo/logo.svg",
5    html_logo_url = "https://engine.catgirl.land/resources/assets/vanilla/texture/logo/logo.svg",
6    html_playground_url = "https://play.rust-lang.org"
7)]
8
9#[allow(unused_imports)]
10#[macro_use]
11extern crate tracing;
12
13#[macro_use]
15mod macros;
16
17pub mod i18n;
19
20pub mod args;
22
23pub mod resources;
25
26pub mod build;
28
29pub mod environment;
31
32pub mod exit;
34
35pub mod string;