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
use shadow_rs::{self, BuildPattern, ShadowBuilder};

fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    ShadowBuilder::builder()
        .build_pattern(BuildPattern::Lazy)
        .build()
        .unwrap();
}