Skip to main content

tectonic/engines/
mod.rs

1// Copyright 2016-2021 the Tectonic Project
2// Licensed under the MIT License.
3
4//! Access to Tectonic’s processing backends.
5//!
6//! These backends subsume the functionality of programs such as `bibtex`,
7//! `xetex`, and `xdvipdfmx`. This module is historical — the API for each of
8//! these is defined in crates with names like `tectonic_engine_xetex`.
9
10// Public sub-modules and reexports.
11
12pub mod bibtex;
13pub mod spx2html;
14pub mod tex;
15pub mod xdvipdfmx;
16
17pub use self::{
18    bibtex::BibtexEngine, spx2html::Spx2HtmlEngine, tex::TexEngine, xdvipdfmx::XdvipdfmxEngine,
19};