utpm 0.3.0

UTPM is a package manager for local and remote Typst packages. Quickly create and manage projects and templates on your system, and publish them directly to Typst Universe.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Library exports for UTPM
// This file exposes internal modules for testing and external use

// Re-export shadow_rs build info
use shadow_rs::shadow;
shadow!(build);

pub mod args;
pub mod commands;
pub mod utils;

// Re-export commonly used items for external use
pub use utils::{copy_dir_all, regex_import, regex_package};

// Re-export for macro usage (internal)
pub use utils::output::OutputFormat;