tectonic 0.16.8

A modernized, complete, embeddable TeX/LaTeX engine. Tectonic is forked from the XeTeX extension to the classic "Web2C" implementation of TeX and uses the TeXLive distribution of support files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// src/engines/tex.rs -- Rustic interface to the core TeX engine.
// Copyright 2017-2021 the Tectonic Project
// Licensed under the MIT License.

//! Engine for invoking `XeTeX`.

use crate::errors::DefinitelySame;

pub use tectonic_engine_xetex::{TexEngine, TexOutcome};

// Sigh, have to do this manually because of the Result/PartialEq conflict in errors.rs
impl DefinitelySame for TexOutcome {
    fn definitely_same(&self, other: &Self) -> bool {
        self == other
    }
}