30 releases

Uses new Rust 2024

0.14.6 Jan 3, 2026
0.14.6-rc3 Dec 31, 2025
0.14.0 Nov 2, 2025
0.13.16 Jul 29, 2025
0.13.12-rc1 Mar 31, 2025

#869 in Programming languages

Download history 237/week @ 2025-11-02 102/week @ 2025-11-09 106/week @ 2025-11-16 157/week @ 2025-11-23 135/week @ 2025-11-30 180/week @ 2025-12-07 59/week @ 2025-12-14 57/week @ 2025-12-21 42/week @ 2025-12-28 115/week @ 2026-01-04 147/week @ 2026-01-11 83/week @ 2026-01-18 84/week @ 2026-01-25 49/week @ 2026-02-01 49/week @ 2026-02-08 83/week @ 2026-02-15

276 downloads per month
Used in 22 crates (9 directly)

Apache-2.0

410KB
8K SLoC

tinymist-world

Typst's World implementation for tinymist.

Example: Resolves a system universe from system arguments

let args = CompileOnceArgs::parse();
let universe = args
    .resolve_system()
    .expect("failed to resolve system universe");

Example: Runs a typst compilation

let world = verse.snapshot();
// in current thread
let doc = typst_shim::compile_opt(&world)?;
// the snapshot is Send + Sync
std::thread::spawn(move || {
    let doc = typst_shim::compile_opt(&world)?;
});

Dependencies

~93MB
~1.5M SLoC