aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-core/src/lib.rs
blob: 7403d46666aaf997e5b0a6df87d8067f4a2e0dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
extern crate self as mozart_core;

pub mod composer;
pub mod config;
pub mod config_source;
pub mod config_validator;
pub mod console;
pub mod exit_code;
pub mod factory;
pub mod http;
pub mod installer;
pub mod package;
pub mod package_info;
pub mod package_sorter;
pub mod platform;
pub mod repository_utils;
pub mod script_events;
pub mod suggest;
pub mod validation;
pub mod version_bumper;
pub mod wildcard;

pub use mozart_console_macros::console_format;
pub use wildcard::matches_wildcard;

pub const MOZART_VERSION: &str = env!("CARGO_PKG_VERSION");