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

#741 in Programming languages

Download history 732/week @ 2025-10-23 338/week @ 2025-10-30 173/week @ 2025-11-06 100/week @ 2025-11-13 162/week @ 2025-11-20 106/week @ 2025-11-27 201/week @ 2025-12-04 84/week @ 2025-12-11 62/week @ 2025-12-18 45/week @ 2025-12-25 31/week @ 2026-01-01 150/week @ 2026-01-08 143/week @ 2026-01-15 93/week @ 2026-01-22 60/week @ 2026-01-29 37/week @ 2026-02-05

341 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