aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-core/src/lib.rs
blob: adf24a308ce1ae486556f4232cf1b66e7a1a1d55 (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
27
28
29
30
31
32
extern crate self as mozart_core;

pub mod advisory;
pub mod autoload;
pub mod composer;
pub mod config;
pub mod config_source;
pub mod config_validator;
pub mod console;
pub mod dependency_resolver;
pub mod downloader;
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;
pub mod repository_utils;
pub mod script_events;
pub mod suggest;
pub mod validation;
pub mod vcs;
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");