tytanic_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The core library of tytanic.

pub mod config;
pub mod doc;
pub mod library;
pub mod project;
pub mod stdx;
pub mod test;
pub mod test_set;

/// The tool name, this is used in various places like config file directories,
/// manifest tool sections, , and more.
pub const TOOL_NAME: &str = "tytanic";

#[cfg(test)]
pub mod _dev;