lune-utils 0.3.4

Utilities library for Lune
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::cargo_common_metadata)]

mod table_builder;
mod version_string;

pub mod fmt;
pub mod path;
pub mod process;

pub use self::table_builder::TableBuilder;
pub use self::version_string::get_version_string;

// TODO: Remove this in the next major semver
pub mod jit {
    pub use super::process::ProcessJitEnablement as JitEnablement;
}