aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-core
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-core')
-rw-r--r--crates/mozart-core/Cargo.toml1
-rw-r--r--crates/mozart-core/src/lib.rs3
2 files changed, 4 insertions, 0 deletions
diff --git a/crates/mozart-core/Cargo.toml b/crates/mozart-core/Cargo.toml
index afdde29..716a2d5 100644
--- a/crates/mozart-core/Cargo.toml
+++ b/crates/mozart-core/Cargo.toml
@@ -9,6 +9,7 @@ mozart-spdx-licenses.workspace = true
anyhow.workspace = true
colored.workspace = true
dialoguer.workspace = true
+indexmap.workspace = true
regex.workspace = true
reqwest.workspace = true
serde.workspace = true
diff --git a/crates/mozart-core/src/lib.rs b/crates/mozart-core/src/lib.rs
index 0aefbb6..7b78280 100644
--- a/crates/mozart-core/src/lib.rs
+++ b/crates/mozart-core/src/lib.rs
@@ -1,3 +1,5 @@
+extern crate self as mozart_core;
+
pub mod composer;
pub mod config;
pub mod config_validator;
@@ -5,6 +7,7 @@ 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;