tytanic 0.3.4

A test runner for typst projects.
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::io::Write;

use color_eyre::eyre;

use super::Context;

pub fn run(ctx: &mut Context) -> eyre::Result<()> {
    let mut w = ctx.ui.stderr();
    writeln!(w, "Version: {}", env!("CARGO_PKG_VERSION"))?;
    writeln!(w, "Typst Version: 0.14.2")?;

    Ok(())
}