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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! Phase 36/37/39: Project Module System
//!
//! Infrastructure for managing LOGOS projects.
//!
//! This module provides the foundational types for working with LOGOS projects,
//! from manifest parsing through build orchestration to registry publishing.
//!
//! # Submodules
//!
//! | Module | Purpose |
//! |--------|---------|
//! | [`manifest`] | Parse and serialize `Largo.toml` manifests |
//! | [`build`][mod@build] | Compile and run LOGOS projects |
//! | [`credentials`] | Store and retrieve API tokens |
//! | [`registry`] | Communicate with the package registry |
//!
//! # Re-exports
//!
//! This module re-exports common types for convenience:
//!
//! - **Manifest**: [`Manifest`], [`ManifestError`]
//! - **Build**: [`build()`], [`run`], [`find_project_root`], [`BuildConfig`], [`BuildResult`], [`BuildError`]
//! - **Credentials**: [`Credentials`], [`get_registry_token`]
//! - **Registry**: [`RegistryClient`], [`create_tarball`], [`is_git_dirty`]
//!
//! # Module Loading
//!
//! The [`Loader`] and [`ModuleSource`] types are re-exported from the compile
//! crate for loading LOGOS modules from various URI schemes.
// Re-export Loader from compile crate (basic file/logos: schemes)
pub use ;
// CLI-specific project modules
pub use ;
pub use ;
pub use ;
pub use ;