Skip to main content

tectonic/engines/
tex.rs

1// src/engines/tex.rs -- Rustic interface to the core TeX engine.
2// Copyright 2017-2021 the Tectonic Project
3// Licensed under the MIT License.
4
5//! Engine for invoking `XeTeX`.
6
7use crate::errors::DefinitelySame;
8
9pub use tectonic_engine_xetex::{TexEngine, TexOutcome};
10
11// Sigh, have to do this manually because of the Result/PartialEq conflict in errors.rs
12impl DefinitelySame for TexOutcome {
13    fn definitely_same(&self, other: &Self) -> bool {
14        self == other
15    }
16}